:root {
    --font-size: 14px;
    --background: #ffffff;
    --foreground: #1a1a1a;
    --card: #ffffff;
    --card-foreground: #1a1a1a;
    --primary: #030213;
    --primary-foreground: #ffffff;
    --secondary: #f1f5f9;
    --secondary-foreground: #030213;
    --muted: #ececf0;
    --muted-foreground: #717182;
    --accent: #e9ebef;
    --accent-foreground: #030213;
    --destructive: #d4183d;
    --destructive-foreground: #ffffff;
    --border: rgba(0, 0, 0, 0.1);
    --input: transparent;
    --input-background: #f3f3f5;
    --switch-background: #cbced4;
    --font-weight-medium: 500;
    --font-weight-normal: 400;
    --ring: #6b7280;
    --radius: 0.625rem;
}

html {
    font-size: var(--font-size);
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.5;
}

/* Typography */
h1 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
}

h2 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
}

h3 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
}

h4 {
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
}

p {
    font-size: 10.5px;
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
}

label {
    font-size: .875rem;
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
}

button {
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
}

.form-label {
    margin-bottom: 0;
}

.form-control {
    background: #f3f3f5 !important;
}

input,
select,
textarea {
    font-size: 1rem;
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    background: #f3f3f5 !important;
}

/* Custom Styles */
.bg-teal-600 {
    background-color: #0d9488 !important;
}

.text-teal-600 {
    color: #0d9488 !important;
}

.text-teal-400 {
    color: #2dd4bf !important;
}

.border-teal-600 {
    border-color: #0d9488 !important;
}

.hover-teal-600:hover {
    color: #0d9488 !important;
}

.hover-teal-700:hover {
    background-color: #0f766e !important;
}

.bg-teal-700 {
    background-color: #0f766e !important;
}

.bg-gray-50 {
    background-color: #f9fafb !important;
}

.bg-gray-900 {
    background-color: #111827 !important;
}

.bg-gray-800 {
    background-color: #1f2937 !important;
}

.text-gray-400 {
    color: #9ca3af !important;
}

.text-gray-500 {
    color: #6b7280 !important;
}

.text-gray-600 {
    color: #4b5563 !important;
}

.text-gray-700 {
    color: #374151 !important;
}

.text-gray-800 {
    color: #1f2937 !important;
}

.text-gray-900 {
    color: #111827 !important;
}

.border-gray-100 {
    border-color: #f3f4f6 !important;
}

.border-gray-200 {
    border-color: #e5e7eb !important;
}

.border-gray-300 {
    border-color: #d1d5db !important;
}

.bg-green-50 {
    background-color: #f0fdf4 !important;
}

.bg-green-100 {
    background-color: #dcfce7 !important;
}

.border-green-200 {
    border-color: #bbf7d0 !important;
}

.text-green-600 {
    color: #16a34a !important;
}

.text-green-700 {
    color: #15803d !important;
}

.text-green-800 {
    color: #166534 !important;
}

.bg-blue-50 {
    background-color: #eff6ff !important;
}

.bg-blue-100 {
    background-color: #dbeafe !important;
}

.border-blue-200 {
    border-color: #bfdbfe !important;
}

.border-blue-500 {
    border-color: #3b82f6 !important;
}

.text-blue-600 {
    color: #2563eb !important;
}

.text-blue-700 {
    color: #1d4ed8 !important;
}

.text-blue-800 {
    color: #1e40af !important;
}

/* Custom form controls */
.form-control:focus {
    border-color: var(--border);
    box-shadow: 0 0 0 0.2rem rgba(13, 148, 136, 0.25);
}

.form-select:focus {
    border-color: var(--border);
    box-shadow: 0 0 0 0.2rem rgba(13, 148, 136, 0.25);
}

/* Card styles */
.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.card-header {
    background-color: var(--muted);
    border-bottom: 1px solid var(--border);
}

/* Trust section cards */
.trust-card {
    transition: all 0.2s ease;
}

.trust-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.trust-card.security {
    background: linear-gradient(135deg, #f0fdf4 0%, rgba(220, 252, 231, 0.5) 100%);
    border-color: #bbf7d0;
}

.trust-card.company:hover {
    transform: scale(1.02);
}

.trust-item {
    transition: all 0.2s ease;
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.trust-item:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.trust-item.security:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.trust-item.company:hover {
    background-color: rgba(239, 246, 255, 0.5);
}

.trust-item.company:hover i {
    transform: scale(1.1);
}

/* Payment form styles */
.payment-card {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.hosting-plan {
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
}

.hosting-plan:hover {
    border-color: #d1d5db;
}

.hosting-plan.selected {
    border-color: #3b82f6;
    background-color: #eff6ff;
}

.hosting-plan.selected.starter {
    border-color: #3b82f6;
    background-color: #eff6ff;
}

.hosting-plan.selected.economy {
    border-color: #16a34a;
    background-color: #f0fdf4;
}

.hosting-plan.selected.deluxe {
    border-color: #9333ea;
    background-color: #faf5ff;
}

.hosting-plan.selected.business {
    border-color: #ea580c;
    background-color: #fff7ed;
}

.hosting-duration {
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
}

.hosting-duration:hover {
    border-color: #d1d5db;
}

.hosting-duration.selected {
    border-color: #3b82f6;
    background-color: #eff6ff;
}

/* Button styles */
.btn-teal {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-teal:hover {
    background: linear-gradient(135deg, #0f766e 0%, #134e4a 100%);
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    color: white;
}

.btn-teal:active {
    transform: scale(0.98);
}

.btn-teal:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Navigation styles */
.navbar-nav .nav-link {
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: #0d9488 !important;
}

/* Footer styles */
.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #2dd4bf;
}

/* Mobile menu animation */
.mobile-menu {
    transition: all 0.2s ease;
}

.mobile-menu.show {
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hosting-plan {
        padding: 0.75rem;
    }

    .hosting-duration {
        padding: 0.5rem;
    }

    .trust-item {
        padding: 0.5rem;
    }
}

/* Additional utility classes */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.ring-2 {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.ring-green-200 {
    box-shadow: 0 0 0 2px rgba(187, 247, 208, 0.5);
}

.ring-blue-200 {
    box-shadow: 0 0 0 2px rgba(191, 219, 254, 0.5);
}

/* Badge styles */
.badge-entry {
    background-color: #dbeafe;
    color: #1e40af;
}

.badge-popular {
    background-color: #dcfce7;
    color: #166534;
}

.badge-best-value {
    background-color: #f3e8ff;
    color: #7c3aed;
}

.badge-professional {
    background-color: #fed7aa;
    color: #c2410c;
}

/* Icon rotation animation */
.icon-scale {
    transition: transform 0.2s ease;
}

.icon-scale:hover {
    transform: scale(1.1);
}




/* new my css code */

/* Bigger and modern checkbox */
.custom-checkbox {
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    accent-color: black;
    /* Modern browsers */
}

/* Fallback for browsers not supporting accent-color */
.custom-checkbox:checked {
    background-color: black;
    border-color: black;
}

.custom-checkbox:checked::after {
    content: "✔";
    color: white;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Position nested dropdowns to the right; stack on mobile */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: .1rem;
    margin-right: .1rem;
}

@media (max-width: 1199.98px) {
    .dropdown-submenu>.dropdown-menu {
        position: static;
        float: none;
    }
}