@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --logo-blue: #2563eb;
    --logo-blue-hover: #1d4ed8;
    --logo-green: #10b981;
    --logo-green-hover: #059669;
    
    --primary-gradient: linear-gradient(135deg, var(--logo-blue) 0%, var(--logo-green) 100%);
    --primary-gradient-hover: linear-gradient(135deg, var(--logo-blue-hover) 0%, var(--logo-green-hover) 100%);
    
    --accent-green: var(--logo-green);
    --accent-green-hover: var(--logo-green-hover);
    --accent-green-glow: rgba(16, 185, 129, 0.15);
    
    /* Global Light Theme Colors */
    --light-bg: #f8fafc;
    --light-card-bg: #ffffff;
    --light-border: #e2e8f0;
    --light-text-dark: #0f172a;
    --light-text-muted: #475569;
    --text-gray: #64748b;
    
    /* Dark Section Colors */
    --primary-navy: #0f172a;
    --secondary-navy: #1e293b;
    --light-navy: #334155;
    --border-color: rgba(255, 255, 255, 0.08);
    --text-white: #ffffff;
    --text-light-gray: #cbd5e1;
}

body {
    background-color: var(--light-bg);
    color: var(--light-text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .brand-font {
    font-family: 'Outfit', sans-serif;
    color: var(--light-text-dark);
}

/* Selection */
::selection {
    background-color: var(--logo-blue);
    color: var(--text-white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light-bg);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Light Sections Styling */
.section-light {
    background-color: var(--light-bg) !important;
    color: var(--light-text-muted) !important;
}
.section-light h2, .section-light h3, .section-light h4, .section-light h5, .section-light h6 {
    color: var(--light-text-dark) !important;
}
.section-light .text-white {
    color: var(--light-text-dark) !important;
}

/* Top Bar Header Styling */
.top-bar {
    background-color: var(--primary-navy);
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0;
}
.top-social {
    font-size: 1rem;
    opacity: 0.75;
    transition: opacity .18s, transform .18s;
    line-height: 1;
}
.top-social:hover {
    opacity: 1;
    transform: translateY(-1px);
    color: var(--logo-green) !important;
}
/* Split nav: chevron button sits flush next to nav link text */
.nav-chevron-btn {
    background: none;
    border: none;
    padding: 0 0 0 2px;
    margin: 0;
    line-height: 1;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}
.nav-chevron-btn:focus { outline: none; box-shadow: none; }
.status-dot {
    width: 8.5px;
    height: 8.5px;
    background-color: var(--logo-green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--logo-green);
    animation: statusPulse 2s infinite;
}
@keyframes statusPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Header Spacer offset for fixed header */
body {
    padding-top: 130px; /* Offset for top-bar + navbar */
}
@media (max-width: 768px) {
    body {
        padding-top: 72px; /* Mobile navbar offset (top-bar is hidden) */
    }
}

/* Sticky Navbar - Light Theme */
.navbar-custom {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--light-border);
    transition: all 0.3s ease;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
	height: 110px;
}
/* Ensure logo + toggler always stay on one line on mobile */
.navbar-custom .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
/* Brand and toggler share the first row; collapse gets full second row */
.navbar-custom .navbar-brand { flex-shrink: 0; }
.navbar-custom .navbar-toggler { flex-shrink: 0; }
@media (max-width: 991.98px) {
    .navbar-custom #navbarContent {
        flex-basis: 100%;
        width: 100%;
    }
}
/* Shrink logo on mobile so logo + toggler fit in one row */
@media (max-width: 575.98px) {
    #brand-logo img { height: 100px !important; max-width: 180px !important; }
    .navbar-custom { padding-top: 0.35rem; padding-bottom: 0.35rem; }
}
.navbar-custom.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    border-bottom-color: var(--light-border);
}

.nav-link-custom {
    color: var(--light-text-muted) !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.2s ease;
}
.nav-link-custom::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--logo-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-link-custom:hover, 
.nav-link-custom:focus {
    color: var(--logo-blue) !important;
}
.nav-link-custom:hover::after {
    width: 80%;
}

/* ── Hover Dropdowns ─────────────────────────────────── */
@media (min-width: 992px) {
    /* Show dropdown on hover */
    .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .navbar-nav .nav-item.dropdown > .dropdown-menu {
        display: block;
        opacity: 0;
        pointer-events: none;
        transform: translateY(8px);
        transition: opacity 0.2s ease, transform 0.2s ease;
        margin-top: 0 !important;
    }
    /* Mega menu positioning */
    .navbar-nav .nav-item.dropdown {
        position: relative;
    }
    .dropdown-menu-custom {
        background: #ffffff !important;
        border: 1px solid var(--light-border) !important;
        border-radius: 12px !important;
        box-shadow: 0 12px 40px rgba(15,23,42,0.12) !important;
        padding: 1rem !important;
        top: 100% !important;
        left: 0 !important;
    }
    /* Domain mega menu: wider and centered */
    .mega-menu {
        min-width: 540px !important;
        left: 50% !important;
        transform: translateX(-50%) translateY(8px) !important;
    }
    .navbar-nav .nav-item.dropdown:hover > .mega-menu {
        transform: translateX(-50%) translateY(0) !important;
    }
}

/* Dropdown item styles for light menu */
.dropdown-menu-custom .dropdown-item-custom {
    color: var(--light-text-muted) !important;
    font-size: 0.9rem;
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
    background: transparent;
}
.dropdown-menu-custom .dropdown-item-custom:hover {
    background: #f0f9ff !important;
    color: var(--logo-blue) !important;
}
.dropdown-menu-custom .mega-section-title {
    color: var(--logo-blue);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 0 0.75rem 0.5rem;
}
.dropdown-menu-custom .inner-link {
    color: var(--text-gray) !important;
    font-size: 0.83rem;
    padding: 0.3rem 0.75rem 0.3rem 1.75rem;
}
.dropdown-menu-custom .inner-link:hover {
    background: #f0f9ff !important;
    color: var(--logo-blue) !important;
}
.dropdown-divider { border-color: var(--light-border) !important; }

.btn-login {
    color: var(--logo-blue) !important;
    border: 1px solid var(--logo-blue) !important;
    background: transparent;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}
.btn-login:hover {
    border-color: var(--logo-green) !important;
    color: var(--logo-green) !important;
    background-color: rgba(16, 185, 129, 0.05);
}

.btn-accent {
    background-color: var(--logo-green);
    color: var(--text-white) !important;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    border: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px 0 var(--accent-green-glow);
}
.btn-accent:hover {
    background-color: var(--logo-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(16, 185, 129, 0.4);
}
.btn-accent:active {
    transform: translateY(0);
}

/* Cart Icon Badge */
.cart-badge {
    background-color: var(--logo-green);
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.75rem;
    position: absolute;
    top: -4px;
    right: -4px;
    border-radius: 50%;
    padding: 0.25em 0.5em;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Megamenu/Dropdown */
.dropdown-menu-custom {
    background-color: var(--light-card-bg) !important;
    border: 1px solid var(--light-border) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.15) !important;
    margin-top: 10px !important;
    padding: 1rem !important;
}
.dropdown-item-custom {
    color: var(--light-text-muted) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 6px !important;
    transition: all 0.2s ease;
    font-weight: 500;
}
.dropdown-item-custom:hover {
    background-color: rgba(37, 99, 235, 0.06) !important;
    color: var(--logo-blue) !important;
    padding-left: 1.25rem !important;
}

/* ====================================================
   HERO SECTION — Light Premium
   ==================================================== */
.hero-section {
    position: relative;
    padding: 5.5rem 0 5rem 0;
    background: #f0f5ff;
    border-bottom: 1px solid #dbeafe;
    overflow: hidden;
}

/* Layer 1 — soft colour washes */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 95% -20%, rgba(37,99,235,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at -10% 110%, rgba(16,185,129,0.08) 0%, transparent 55%),
        linear-gradient(160deg, #ffffff 0%, #eef4ff 50%, #f0fdf8 100%);
    z-index: 1;
    pointer-events: none;
}

/* Layer 2 — subtle dot grid */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(37,99,235,0.10) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 3;
    pointer-events: none;
}

/* Layer 3 — fine diagonal line structure */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0 80 L80 0' stroke='rgba(37,99,235,0.05)' stroke-width='1' fill='none'/%3E%3Cpath d='M-40 80 L40 0' stroke='rgba(37,99,235,0.05)' stroke-width='1' fill='none'/%3E%3Cpath d='M40 80 L120 0' stroke='rgba(37,99,235,0.05)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    z-index: 2;
    pointer-events: none;
}

/* Decorative blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 2;
}
.hero-blob-1 {
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
    top: -200px; right: -140px;
}
.hero-blob-2 {
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(16,185,129,0.10) 0%, transparent 70%);
    bottom: -100px; left: -80px;
}

.hero-content {
    position: relative;
    z-index: 5;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* ── Offer Badge ── */
.hero-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    color: #065f46;
    border: 1.5px solid #6ee7b7;
    border-radius: 50px;
    padding: 0.45rem 1.1rem;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 1.75rem;
    box-shadow: 0 2px 12px rgba(16,185,129,0.15);
}
.badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--logo-green);
    box-shadow: 0 0 8px var(--logo-green);
    animation: statusPulse 2s infinite;
    flex-shrink: 0;
}

/* ── H1 ── */
.hero-h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.85rem, 4.8vw, 3.2rem);
    font-weight: 800;
    color: var(--light-text-dark);
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

/* ── Description ── */
.hero-desc {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: var(--light-text-muted);
    line-height: 1.75;
    margin-bottom: 2.25rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Phone link ── */
.hero-phone-link {
    color: var(--logo-blue);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}
.hero-phone-link:hover { color: var(--logo-blue-hover); text-decoration: underline; }

/* ── Search wrap (outer) ── */
.hero-search-wrap {
    margin-bottom: 2.5rem;
}

/* ── Search bar ── */
.search-wrapper {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(15,23,42,0.08), 0 1px 4px rgba(15,23,42,0.04);
    transition: border-color 0.25s, box-shadow 0.25s;
    overflow: hidden;
}
.search-wrapper:focus-within {
    border-color: var(--logo-blue);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.10), 0 4px 24px rgba(15,23,42,0.08);
}

/* Search icon inside bar */
.search-icon {
    color: #94a3b8;
    font-size: 1.15rem;
    padding: 0 0 0 1.1rem;
    flex-shrink: 0;
}

/* Text input */
.search-input {
    flex: 1;
    background: transparent !important;
    border: none !important;
    color: var(--light-text-dark) !important;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    padding: 1rem 0.75rem !important;
    font-family: 'Inter', sans-serif;
    min-width: 0;
    box-shadow: none !important;
}
.search-input::placeholder { color: #94a3b8; }
.search-input:focus { outline: none; box-shadow: none !important; }

/* Divider between input and select */
.search-divider {
    width: 1px;
    height: 26px;
    background: #e2e8f0;
    flex-shrink: 0;
}

/* TLD select */
.search-tld-select {
    background: transparent !important;
    color: var(--light-text-dark) !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 1rem 0.75rem 1rem 0.85rem !important;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    width: auto;
    min-width: 80px;
    box-shadow: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23475569' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.5rem center !important;
    background-size: 12px 12px !important;
    padding-right: 1.75rem !important;
}
.search-tld-select:focus { box-shadow: none !important; outline: none; }

/* Search button */
.btn-search-submit {
    background: linear-gradient(135deg, var(--logo-blue) 0%, #1d4ed8 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 0.75rem 1.75rem !important;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    margin: 0.35rem;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.btn-search-submit:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.4);
}
.btn-search-submit:active { transform: translateY(0); }

/* ── Trust strip below search ── */
.hero-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-top: 0.9rem;
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 500;
}
.hero-trust-strip i { color: var(--logo-green); }
.trust-sep { color: #cbd5e1; }

/* Mobile adjustments for search bar */
@media (max-width: 575.98px) {
    /* Search bar stays single row on mobile */
    .search-icon { display: none; }
    .search-wrapper {
        flex-wrap: nowrap;
        border-radius: 50px;
        padding: 4px;
        gap: 0;
    }
    .search-input {
        padding: 0.7rem 0.6rem !important;
        font-size: 0.88rem;
        min-width: 0;
    }
    .search-divider { width: 1px; height: 22px; }
    .search-tld-select {
        font-size: 0.82rem !important;
        padding: 0.5rem 1.4rem 0.5rem 0.5rem !important;
        min-width: 72px;
        max-width: 90px;
        background-size: 10px 10px !important;
    }
    .btn-search-submit {
        padding: 0.65rem 1rem !important;
        border-radius: 50px !important;
        font-size: 0.88rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* TLD Badges */
.tld-badge-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 0.9rem 0.75rem 0.8rem;
    text-align: center;
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(15,23,42,0.05);
}
.tld-badge-card:hover {
    transform: translateY(-4px);
    border-color: var(--logo-blue);
    box-shadow: 0 8px 24px rgba(37,99,235,0.12);
}
.tld-badge-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--light-text-dark);
}
.tld-badge-price {
    color: var(--logo-blue);
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 0.2rem;
}
.tld-badge-promo {
    display: inline-block;
    font-size: 0.62rem;
    color: var(--logo-green);
    background: rgba(16,185,129,0.08);
    border-radius: 4px;
    padding: 0.1rem 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
    margin-top: 0.3rem;
}

/* Services Grid & Cards - Light Theme */
.glass-card {
    background: var(--light-card-bg);
    border: 1px solid var(--light-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
}
.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.05), 0 0 20px rgba(37, 99, 235, 0.05);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(37, 99, 235, 0.08);
    color: var(--logo-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.glass-card:hover .feature-icon-wrapper {
    background-color: var(--logo-blue);
    color: var(--text-white);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
}

/* Domain Search Results Panel - Light Theme */
.search-results-panel {
    display: none;
    margin-top: 3rem;
}
.result-box {
    border: 1px solid var(--light-border);
    border-radius: 16px;
    background: var(--light-card-bg);
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
}
.result-main {
    border-bottom: 1px solid var(--light-border);
    padding: 2rem;
}
.result-main h2 {
    color: var(--light-text-dark) !important;
}
.result-main p {
    color: var(--light-text-muted) !important;
}
.result-suggestions {
    padding: 2rem;
}
.result-suggestions h4 {
    color: var(--light-text-dark) !important;
}
.suggested-item {
    border-bottom: 1px solid var(--light-border);
    padding: 1rem 0;
    transition: all 0.2s ease;
}
.suggested-item:last-child {
    border-bottom: none;
}
.suggested-item:hover {
    padding-left: 0.5rem;
}
.suggested-item span.fs-5 {
    color: var(--light-text-dark) !important;
}

/* Offcanvas Cart - Light Theme */
.offcanvas-cart {
    background-color: var(--light-bg) !important;
    border-left: 1px solid var(--light-border) !important;
    color: var(--light-text-muted);
    width: 400px !important;
}
.offcanvas-header {
    border-bottom: 1px solid var(--light-border);
    background-color: var(--light-card-bg) !important;
}
.offcanvas-header .offcanvas-title {
    color: var(--light-text-dark) !important;
}
.offcanvas-header .btn-close {
    filter: none !important;
}
.offcanvas-body {
    padding: 1.5rem;
}
.cart-item {
    background: var(--light-card-bg);
    border: 1px solid var(--light-border);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.cart-item .fw-bold {
    color: var(--light-text-dark) !important;
}
.btn-remove-item {
    background: transparent;
    border: none;
    color: var(--text-gray);
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.2s ease;
}
.btn-remove-item:hover {
    color: #ff4a5a;
}
.cart-summary {
    border-top: 1px solid var(--light-border);
    padding-top: 1.5rem;
    margin-top: auto;
}
.cart-summary .text-white {
    color: var(--light-text-dark) !important;
}

/* Statistics Section */
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--logo-blue) 30%, var(--logo-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

/* Accordion Custom Styling - Light Background */
.accordion-custom .accordion-item {
    background-color: var(--light-card-bg) !important;
    border: 1px solid var(--light-border) !important;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
}
.accordion-custom .accordion-button {
    background-color: var(--light-card-bg) !important;
    color: var(--light-text-dark) !important;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none !important;
    box-shadow: none !important;
}
.accordion-custom .accordion-button:not(.collapsed) {
    color: var(--logo-blue) !important;
    border-bottom: 1px solid var(--light-border) !important;
    background-color: rgba(37, 99, 235, 0.03) !important;
}
.accordion-custom .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23475569' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}
.accordion-custom .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%232563eb' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}
.accordion-custom .accordion-body {
    color: var(--light-text-muted);
    padding: 1.5rem;
    line-height: 1.6;
}

/* CTA Promo Banner (Rich Dark Navy Highlight Section) */
.cta-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid var(--light-navy);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent-green-glow);
    filter: blur(120px);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    pointer-events: none;
}
.cta-banner h2 {
    color: var(--text-white) !important;
}
.cta-banner p {
    color: var(--text-light-gray) !important;
}
.cta-banner .text-white {
    color: var(--text-white) !important;
}

/* Footer Section (Dark Anchor) */
.footer-section {
    background-color: #0b0f19;
    border-top: 1px solid var(--light-border);
    padding: 5rem 0 2rem 0;
}
.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--text-white) !important;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.75rem;
}
.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.2s ease;
}
.footer-links a:hover {
    color: var(--logo-blue);
    padding-left: 4px;
}
.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary-navy);
    border: 1px solid var(--light-navy);
    color: var(--text-light-gray);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    transition: all 0.2s ease;
    text-decoration: none;
}
.social-icon-btn:hover {
    color: var(--text-white);
    background: var(--logo-blue);
    border-color: var(--logo-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.25);
}

.newsletter-input {
    background: var(--secondary-navy) !important;
    border: 1px solid var(--light-navy) !important;
    color: var(--text-white) !important;
    padding: 0.6rem 1rem !important;
    border-radius: 8px 0 0 8px !important;
}
.newsletter-input:focus {
    border-color: var(--logo-blue) !important;
    box-shadow: none !important;
}
.newsletter-btn {
    border-radius: 0 8px 8px 0 !important;
}

/* Custom badges */
.badge-hot {
    background-color: #ff3366;
    color: var(--text-white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    margin-left: 0.5rem;
    vertical-align: middle;
}
.badge-promo-green {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--logo-green);
    border: 1px solid var(--logo-green);
}

/* Testimonial card overrides - Light Theme */
.testimonial-card {
    background: var(--light-card-bg);
    border: 1px solid var(--light-border);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}
.stars-wrapper {
    color: #ffb800;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Utility Animations */
.animation-delay-1 {
    animation-delay: 0.2s;
}
.animation-delay-2 {
    animation-delay: 0.4s;
}
.animation-delay-3 {
    animation-delay: 0.6s;
}

/* Mobile responsive menu button */
.navbar-toggler-custom {
    border: 1px solid var(--light-border) !important;
    background: var(--light-bg) !important;
    padding: 0.4rem 0.6rem !important;
    border-radius: 6px !important;
}
.navbar-toggler-custom:focus {
    box-shadow: 0 0 0 2px var(--logo-blue) !important;
}
.navbar-toggler-icon-custom {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23475569' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ====================================================
   MOBILE NAV — expanded menu panel
   ==================================================== */
@media (max-width: 991.98px) {
    /* Full-width white panel below navbar */
    #navbarContent {
        background: #ffffff;
        border-top: 1px solid var(--light-border);
        padding: 0.5rem 0 1rem;
        box-shadow: 0 8px 24px rgba(15,23,42,0.10);
        max-height: 80vh;
        overflow-y: auto;
    }

    /* Each top-level link */
    .navbar-custom .nav-link-custom {
        padding: 0.65rem 1.25rem !important;
        font-size: 0.97rem;
        color: var(--light-text-dark) !important;
        border-bottom: 1px solid #f1f5f9;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .navbar-custom .nav-link-custom:last-child { border-bottom: none; }
    .navbar-custom .nav-link-custom:hover,
    .navbar-custom .nav-link-custom:focus {
        background: #f0f7ff !important;
        color: var(--logo-blue) !important;
    }


    /* Dropdown panel inside collapsed menu */
    .navbar-custom .dropdown-menu {
        position: static !important;
        float: none !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        background: #f8fafc !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    /* Section headers inside dropdown */
    .mega-section-title {
        padding: 0.6rem 1.5rem 0.3rem !important;
        font-size: 0.72rem !important;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--logo-blue);
        background: #eef4ff;
        border-top: 1px solid #dbeafe;
        border-bottom: 1px solid #dbeafe;
    }

    /* Dropdown items */
    .navbar-custom .dropdown-item-custom {
        padding: 0.55rem 1.5rem !important;
        font-size: 0.88rem;
        color: var(--light-text-dark) !important;
        border-bottom: 1px solid #f1f5f9;
    }
    .navbar-custom .dropdown-item-custom:hover { background: #eff6ff !important; color: var(--logo-blue) !important; }

    /* Indented sub-links */
    .navbar-custom .inner-link {
        padding: 0.4rem 1.5rem 0.4rem 2.5rem !important;
        font-size: 0.82rem;
        color: var(--light-text-muted) !important;
        border-bottom: 1px solid #f1f5f9;
    }
    .navbar-custom .inner-link:hover { background: #eff6ff !important; color: var(--logo-blue) !important; }

    /* Second mega-column — top border on mobile instead of left border */
    .mega-sub-col {
        border-left: none !important;
        border-top: 1px solid var(--light-border);
        margin-top: 0.25rem;
        padding-top: 0.25rem;
    }

    /* Mega menu row: stack to single column on mobile */
    .mega-menu .row { flex-direction: column; }
    .mega-menu .col-12 { padding-left: 0 !important; padding-right: 0 !important; }
}

.text-accent {
    color: var(--logo-green) !important;
}
.text-logo-blue {
    color: var(--logo-blue) !important;
}

/* Hide Bootstrap's default ::after caret entirely */
.navbar-custom .dropdown-toggle::after { display: none !important; }

/* Inline chevron icon inside nav link */
.navbar-custom .nav-chevron {
    font-size: 0.72rem;
    margin-left: 3px;
    vertical-align: middle;
    color: #94a3b8;
    transition: transform 0.2s ease, color 0.2s ease;
    display: inline-block;
}
.navbar-custom .nav-dropdown-link:hover .nav-chevron,
.navbar-custom .nav-dropdown-link:focus .nav-chevron {
    color: var(--logo-blue);
}
.navbar-custom .nav-dropdown-link[aria-expanded="true"] .nav-chevron {
    transform: rotate(180deg);
    color: var(--logo-blue);
}
/* Mobile: push chevron to right edge */
@media (max-width: 991.98px) {
    .navbar-custom .nav-dropdown-link {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }
    .navbar-custom .nav-chevron { margin-left: auto; font-size: 0.8rem; }
}

/* Select Option Text Visibility Fix inside Hero search */
.search-tld-select option {
    background-color: #1e293b !important;
    color: #ffffff !important;
}

/* ====================================================
     PRICING SECTION STYLING
     ==================================================== */
.billing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}
.toggle-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-text-muted);
    transition: color 0.2s ease;
}
.toggle-label.active {
    color: var(--logo-blue);
}

.switch-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}
.switch-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider-toggle {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
    border-radius: 34px;
}
.slider-toggle:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.1);
}
input:checked + .slider-toggle {
    background-color: var(--logo-blue);
}
input:checked + .slider-toggle:before {
    transform: translateX(28px);
}

.badge-save {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--logo-green);
    border: 1px solid var(--logo-green);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    text-transform: uppercase;
}

/* Pricing Cards Grid */
.pricing-card {
    background: var(--light-card-bg);
    border: 1px solid var(--light-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.08);
}
.pricing-card-featured {
    border-color: var(--logo-blue) !important;
    border-width: 2px !important;
    box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.15) !important;
}
.pricing-card-featured:hover {
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.25) !important;
}

.badge-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--logo-blue);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 1.25rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--light-text-dark);
}
.pricing-desc {
    font-size: 0.9rem;
    color: var(--light-text-muted);
    margin-bottom: 1.5rem;
}

.pricing-price-box {
    margin-bottom: 2rem;
}
.price-wrapper {
    display: flex;
    align-items: baseline;
}
.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-text-dark);
    line-height: 1;
    transition: all 0.2s ease;
}
.price-period {
    font-size: 1rem;
    color: var(--text-gray);
    margin-left: 0.25rem;
}
.price-billing-text {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
    display: block;
    height: 18px;
    font-weight: 500;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    flex-grow: 1;
}
.pricing-features-list li {
    font-size: 0.95rem;
    color: var(--light-text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}
.pricing-features-list i {
    color: var(--logo-green);
    font-size: 1.1rem;
    margin-right: 0.75rem;
}

.btn-pricing-action {
    width: 100%;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
}
.btn-pricing-action-outline {
    background: transparent;
    border: 1px solid var(--logo-blue);
    color: var(--logo-blue) !important;
}
.btn-pricing-action-outline:hover {
    background: rgba(37, 99, 235, 0.05);
    border-color: var(--logo-blue);
}
.btn-pricing-action-solid {
    background: var(--logo-blue);
    border: 1px solid var(--logo-blue);
    color: var(--text-white) !important;
}
.btn-pricing-action-solid:hover {
    background: var(--logo-blue-hover);
    border-color: var(--logo-blue-hover);
    transform: translateY(-1px);
}

/* ====================================================
   SHARED SECTION TYPOGRAPHY
   ==================================================== */
.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--logo-green);
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 50px;
    padding: 0.3rem 0.9rem;
    margin-bottom: 0.75rem;
}
.section-eyebrow-light {
    color: #6ee7b7;
    background: rgba(110,231,183,0.1);
    border-color: rgba(110,231,183,0.25);
}
.section-h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--light-text-dark);
    line-height: 1.22;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.section-lead {
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    color: var(--light-text-muted);
    line-height: 1.75;
    margin-bottom: 0;
}

/* ====================================================
   SERVICES SECTION
   ==================================================== */
.section-services {
    position: relative;
    padding: 5rem 0;
    background: #f8fafc;
    overflow: hidden;
}
.services-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(37,99,235,0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(16,185,129,0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Service Cards */
.svc-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 2rem 1.75rem 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}
.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15,23,42,0.09);
    border-color: #bfdbfe;
}
.svc-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}
.svc-blue  { background: rgba(37,99,235,0.09);  color: var(--logo-blue); }
.svc-green { background: rgba(16,185,129,0.09); color: var(--logo-green); }
.svc-purple{ background: rgba(124,58,237,0.09); color: #7c3aed; }
.svc-orange{ background: rgba(249,115,22,0.09); color: #f97316; }
.svc-teal  { background: rgba(20,184,166,0.09); color: #14b8a6; }
.svc-card:hover .svc-icon-wrap { filter: brightness(1.1); }

.svc-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light-text-dark);
    margin-bottom: 0.65rem;
}
.svc-desc {
    font-size: 0.92rem;
    color: var(--light-text-muted);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1.25rem;
}
.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--logo-blue);
    text-decoration: none;
    transition: gap 0.2s;
}
.svc-link:hover { gap: 0.65rem; color: var(--logo-blue-hover); }

/* ====================================================
   PRICING SECTION (Light)
   ==================================================== */
.section-pricing {
    position: relative;
    padding: 5rem 0;
    background: #f8fafc;
    overflow: hidden;
}
.pricing-bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(37,99,235,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

/* Light pricing card */
.pricing-card-dark {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}
.pricing-card-dark:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15,23,42,0.09);
    border-color: #bfdbfe;
}
.pricing-card-dark.pricing-card-featured {
    background: #ffffff;
    border-color: var(--logo-blue);
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(37,99,235,0.06), 0 8px 32px rgba(37,99,235,0.12);
}
.pricing-card-dark .pricing-title { color: var(--light-text-dark); }
.pricing-card-dark .pricing-desc  { color: var(--light-text-muted); }
.pricing-card-dark .price-amount  { color: var(--light-text-dark); }
.pricing-card-dark .price-period  { color: var(--text-gray); }
.pricing-card-dark .price-billing-text { color: var(--text-gray); }
.pricing-card-dark .pricing-features-list li { color: var(--light-text-muted); }
.pricing-card-dark .pricing-features-list i { color: var(--logo-green); }

.pricing-plan-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255,255,255,0.08);
    color: #94a3b8;
    border-radius: 6px;
    padding: 0.25rem 0.6rem;
    margin-bottom: 0.75rem;
}
.pricing-plan-badge-blue  { background: rgba(37,99,235,0.10); color: var(--logo-blue); }
.pricing-plan-badge-green { background: rgba(16,185,129,0.10); color: var(--logo-green); }

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    align-self: flex-start;
    margin-top: 0.4rem;
    margin-right: 0.1rem;
}

/* ====================================================
   WEB DESIGN CTA SECTION
   ==================================================== */
.section-webdesign {
    position: relative;
    padding: 5.5rem 0;
    background: #0f172a;
    overflow: hidden;
}
.webdesign-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(16,185,129,0.08) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.webdesign-feature {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 500;
}
.webdesign-feature i {
    font-size: 1.1rem;
    color: var(--logo-green);
    flex-shrink: 0;
}

.btn-webdesign-cta {
    display: inline-flex;
    align-items: center;
    background: var(--logo-green);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(16,185,129,0.35);
}
.btn-webdesign-cta:hover {
    background: var(--logo-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16,185,129,0.45);
}

/* Browser mockup */
.webdesign-mockup {
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.mockup-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #0f172a;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green  { background: #28ca41; }
.mockup-url {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 0.3rem 0.75rem;
    font-size: 0.75rem;
    color: #64748b;
    text-align: center;
    font-family: monospace;
}
.mockup-screen { padding: 1.5rem; }
.mockup-hero-block { margin-bottom: 1.25rem; }
.sk-line { background: rgba(255,255,255,0.08); border-radius: 6px; }
.sk-w60 { width: 60%; } .sk-w70 { width: 70%; } .sk-w80 { width: 80%; }
.sk-h16 { height: 16px; } .sk-h10 { height: 10px; }
.mb-1 { margin-bottom: 0.35rem !important; }
.mb-2 { margin-bottom: 0.6rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.sk-btn {
    display: inline-block;
    width: 100px; height: 32px;
    background: rgba(37,99,235,0.3);
    border-radius: 8px;
    border: 1px solid rgba(37,99,235,0.5);
}
.mockup-cards { display: flex; gap: 0.75rem; }
.sk-card {
    flex: 1;
    height: 70px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
}

/* ====================================================
   STATS SECTION
   ==================================================== */
.section-stats {
    padding: 3rem 0;
    background: #f8fafc;
}
.stats-inner {
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
}
.stat-item {
    text-align: center;
    padding: 3rem 1.5rem;
}
.stat-item-bordered {
    border-right: 1px solid #e2e8f0;
}
.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--logo-blue) 30%, var(--logo-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--light-text-dark);
    margin-bottom: 0.25rem;
}
.stat-sub {
    font-size: 0.8rem;
    color: var(--text-gray);
}
@media (max-width: 767.98px) {
    .stat-item-bordered { border-right: none; border-bottom: 1px solid #e2e8f0; }
    .stat-item { padding: 2rem 1rem; }
    .stats-inner .col-6:nth-child(odd) .stat-item { border-right: 1px solid #e2e8f0; }
}

/* ====================================================
   TESTIMONIALS SECTION — Carousel
   ==================================================== */
.section-testimonials {
    padding: 5rem 0;
    background: #f8fafc;
    overflow: hidden;
}

/* Prev / Next nav buttons */
.review-nav-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    color: var(--light-text-muted);
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}
.review-nav-btn:hover,
.review-nav-btn-active {
    background: var(--logo-blue);
    border-color: var(--logo-blue);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}


/* Carousel transition — smooth slide */
#reviewCarousel .carousel-inner { overflow: visible; }
#reviewCarousel .carousel-item {
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    display: block !important;
    position: absolute;
    width: 100%;
    pointer-events: none;
}
#reviewCarousel .carousel-item.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

/* Testimonial card — flex column so footer sticks to bottom */
.testimonial-card {
    background: #ffffff;
    border: 1.5px solid #e8edf3;
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}
.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(15,23,42,0.08);
    border-color: #bfdbfe;
    transform: translateY(-3px);
}

.testimonial-avatar {
    width: 42px; height: 42px; min-width: 42px;
    border-radius: 50%;
    background: var(--logo-green);
    color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.82rem;
    font-family: monospace;
}
.testimonial-avatar-blue   { background: var(--logo-blue); }
.testimonial-avatar-purple { background: #7c3aed; }

/* ====================================================
   FAQ SECTION
   ==================================================== */
.section-faq {
    position: relative;
    padding: 5rem 0;
    background: #f8fafc;
    overflow: hidden;
}
.faq-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 95% 10%, rgba(37,99,235,0.04) 0%, transparent 40%),
                      radial-gradient(circle at 5%  90%, rgba(16,185,129,0.04) 0%, transparent 40%);
    pointer-events: none;
}
.faq-sidebar { position: sticky; top: 120px; }

.btn-faq-call {
    display: inline-flex;
    align-items: center;
    background: var(--logo-blue);
    color: #ffffff !important;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 14px rgba(37,99,235,0.25);
}
.btn-faq-call:hover { background: var(--logo-blue-hover); transform: translateY(-1px); }

/* ====================================================
   ENQUIRY MODAL INPUT STYLES
   ==================================================== */
.enquiry-input {
    background: #f9fafb !important;
    border: 1px solid #e5e7eb !important;
    color: #1a2332 !important;
    border-radius: 8px !important;
}
.enquiry-input:focus {
    border-color: #0ea5e9 !important;
    box-shadow: 0 0 0 3px rgba(14,165,233,0.15) !important;
    background: #ffffff !important;
}
.enquiry-input::placeholder { color: #9ca3af !important; }

/* ====================================================
   FOOTER LEGAL LINKS — RESPONSIVE WRAP
   ==================================================== */
.footer-legal-links .list-inline-item {
    margin-bottom: 0.4rem;
}

/* ====================================================
   MOBILE RESPONSIVE OVERRIDES
   ==================================================== */
@media (max-width: 575.98px) {
    /* Hero — top padding accounts for smaller fixed navbar on mobile */
    .hero-section { padding: 5rem 0 3rem 0; }
    .hero-offer-badge { font-size: 0.75rem; padding: 0.4rem 0.85rem; }

    /* TLD Badge cards — tighter on XS */
    .tld-badge-card { padding: 0.6rem 0.5rem; }
    .tld-badge-name { font-size: 0.95rem; }
    .tld-badge-price { font-size: 0.78rem; }
    .tld-badge-promo { font-size: 0.62rem; }

    /* Stat numbers */
    .stat-number { font-size: 2.5rem; }

    /* Pricing card padding */
    .pricing-card { padding: 2rem 1.25rem; }
    .price-amount { font-size: 2.25rem; }

    /* CTA banner */
    .cta-banner { padding: 2rem 1.25rem; }

    /* Glass cards */
    .glass-card { padding: 1.5rem 1.25rem; }

    /* Testimonial cards */
    .testimonial-card { padding: 1.5rem 1.25rem; }

    /* Footer legal links — stack vertically */
    .footer-legal-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1rem; }
    .footer-legal-links .list-inline-item { margin: 0; }

    /* Result box inner padding */
    .result-main { padding: 1.25rem; }
    .result-suggestions { padding: 1.25rem; }

    /* Offcanvas cart full width on mobile */
    .offcanvas-cart { width: 100vw !important; }
}

@media (max-width: 767.98px) {
    /* Accordion */
    .accordion-custom .accordion-button { padding: 1rem 1.25rem; font-size: 0.95rem; }

    /* Pricing toggle wrap */
    .billing-toggle-container { flex-wrap: wrap; gap: 0.5rem 1rem; }

    /* Section headings */
    .display-5 { font-size: 1.75rem; }
    .display-6 { font-size: 1.5rem; }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .hero-section { padding: 4rem 0 3.5rem 0; }
}

/* Mobile nav dropdown */
@media (max-width: 991.98px) {
    .split-nav-menu {
        display: none;
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0.25rem 0 0.5rem 1rem !important;
        border-radius: 0 !important;
        margin-top: 0 !important;
        background: transparent !important;
    }
    .split-nav-item.nav-open > .split-nav-menu {
        display: block !important;
    }
    .dropdown-menu-custom {
        border: none !important;
        box-shadow: none !important;
        padding: 0 0 0 1rem !important;
        border-radius: 0 !important;
        margin-top: 0 !important;
        background: transparent !important;
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
    }
    .mega-menu { min-width: unset !important; transform: none !important; left: 0 !important; }
    .dropdown-item-custom { padding: 0.4rem 0.75rem !important; }
    .mega-section-title { padding-top: 0.5rem; }
    .dropdown-menu-custom .inner-link { padding-left: 1.25rem; }
}

/* Desktop: show dropdown when li has nav-open */
@media (min-width: 992px) {
    .split-nav-item.nav-open > .split-nav-menu {
        display: block !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }
}
