 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-teal: #3eb9a7;
            --primary-navy: #2c3e7c;
            --light-teal: #e8f6f4;
            --accent-coral: #000;
            --text-dark: #1a1a1a;
            --text-gray: #555;
            --white: #ffffff;
            --gradient-main: linear-gradient(135deg, #3eb9a7 0%, #2d9d8f 100%);
        }

        body {
            font-family: 'Inter', sans-serif;
            font-size: 17px;
            line-height: 1.7;
            color: var(--text-dark);
            background: var(--white);
            overflow-x: hidden;
            padding-top: 80px; /* Space for fixed header */
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 900;
            line-height: 1.2;
        }

        /* ============================================
           NAVIGATION HEADER
           ============================================ */
        
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            z-index: 900;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            box-shadow: 0 4px 30px rgba(0,0,0,0.15);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            color: var(--text-dark);
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-main);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 4px 15px rgba(62,185,167,0.3);
        }

        .logo-text h3 {
            font-size: 24px;
            color: var(--primary-navy);
            font-family: 'Playfair Display', serif;
            margin-bottom: 0;
        }

        .logo-text span {
            font-size: 14px;
            color: var(--primary-teal);
            font-weight: 600;
            letter-spacing: 1px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-menu li a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 17px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu li a:hover {
            color: var(--primary-teal);
        }

        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-teal);
            transition: width 0.3s ease;
        }

        .nav-menu li a:hover::after {
            width: 100%;
        }

        .nav-cta {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .nav-phone {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-teal);
            text-decoration: none;
            font-size: 18px;
            font-weight: 700;
        }

        .nav-phone:hover {
            color: var(--primary-navy);
        }

        .nav-btn {
            padding: 0.8rem 1.8rem;
            background: var(--gradient-main);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(62,185,167,0.3);
        }

        .nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(62,185,167,0.4);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--primary-navy);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Menu */
        .nav-mobile {
            position: fixed;
            top: 80px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 80px);
            background: var(--white);
            transition: left 0.3s ease;
            overflow-y: auto;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .nav-mobile.active {
            left: 0;
        }

        .nav-mobile ul {
            list-style: none;
            padding: 2rem 1.5rem;
        }

        .nav-mobile ul li {
            margin-bottom: 1.5rem;
        }

        .nav-mobile ul li a {
            display: block;
            padding: 1rem;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            border-left: 4px solid transparent;
            transition: all 0.3s ease;
        }

        .nav-mobile ul li a:hover {
            border-left-color: var(--primary-teal);
            padding-left: 1.5rem;
            color: var(--primary-teal);
        }

        .mobile-cta {
            padding: 1.5rem;
            border-top: 2px solid var(--light-teal);
        }

        .mobile-cta a {
            display: block;
            padding: 1rem;
            background: var(--gradient-main);
            color: var(--white);
            text-align: center;
            text-decoration: none;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .mobile-cta .phone-link {
            background: var(--white);
            border: 2px solid var(--primary-teal);
            color: var(--primary-teal);
        }

        /* ============================================
           NAVIGATION HEADER
           ============================================ */
        
        .nav-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            z-index: 998;
            transition: all 0.3s ease;
        }

        .nav-header.scrolled {
            box-shadow: 0 4px 30px rgba(0,0,0,0.15);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 55px;
            height: 55px;
            background: var(--gradient-main);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 4px 15px rgba(62,185,167,0.3);
        }

        .logo-text h3 {
            font-size: 22px;
            color: var(--primary-navy);
            margin: 0;
            line-height: 1;
        }

        .logo-text p {
            font-size: 13px;
            color: var(--primary-teal);
            margin: 0;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .nav-menu {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        .nav-menu li a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 17px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary-teal);
            transition: width 0.3s ease;
        }

        .nav-menu li a:hover {
            color: var(--primary-teal);
        }

        .nav-menu li a:hover::after {
            width: 100%;
        }

        .nav-contact {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-phone {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
        }

        .nav-phone-icon {
            width: 40px;
            height: 40px;
            background: var(--light-teal);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .nav-phone:hover .nav-phone-icon {
            background: var(--primary-teal);
            color: var(--white);
        }

        .nav-cta-btn {
            background: var(--gradient-main);
            color: var(--white);
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(62,185,167,0.3);
            white-space: nowrap;
        }

        .nav-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(62,185,167,0.4);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 0.5rem;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--primary-navy);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Menu Styles */
        @media (max-width: 1024px) {
            .nav-menu {
                position: fixed;
                top: 85px;
                left: -100%;
                width: 100%;
                max-width: 350px;
                background: var(--white);
                flex-direction: column;
                gap: 0;
                padding: 2rem 1.5rem;
                box-shadow: 4px 0 20px rgba(0,0,0,0.1);
                transition: left 0.4s ease;
                height: calc(100vh - 85px);
                overflow-y: auto;
                align-items: flex-start;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                width: 100%;
                border-bottom: 1px solid #f0f0f0;
                padding: 1rem 0;
            }

            .nav-menu li a {
                display: block;
                font-size: 18px;
            }

            .nav-contact {
                flex-direction: column;
                width: 100%;
                gap: 1rem;
                margin-top: 1.5rem;
            }

            .nav-phone,
            .nav-cta-btn {
                width: 100%;
                justify-content: center;
            }

            .menu-toggle {
                display: flex;
            }

            .nav-phone {
                padding: 1rem;
                background: var(--light-teal);
                border-radius: 10px;
            }

            .nav-cta-btn {
                padding: 1rem 2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 0.8rem 1rem;
            }

            .logo-icon {
                width: 45px;
                height: 45px;
                font-size: 22px;
            }

            .logo-text h3 {
                font-size: 18px;
            }

            .logo-text p {
                font-size: 11px;
            }
        }

        /* Mobile menu overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 85px;
            left: 0;
            width: 100%;
            height: calc(100vh - 85px);
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(3px);
            z-index: 997;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* ============================================
           NAVIGATION HEADER
           ============================================ */
        
        .top-header {
            background: var(--white);
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 998;
            transition: all 0.3s ease;
        }

        .top-header.scrolled {
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .logo-wrapper {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 55px;
            height: 55px;
            background: var(--gradient-main);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 3px 10px rgba(62,185,167,0.3);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text .brand-name {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 900;
            color: var(--primary-navy);
            line-height: 1;
        }

        .logo-text .brand-tagline {
            font-size: 13px;
            color: var(--primary-teal);
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu li a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 17px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-teal);
            transition: width 0.3s ease;
        }

        .nav-menu li a:hover {
            color: var(--primary-teal);
        }

        .nav-menu li a:hover::after {
            width: 100%;
        }

        .header-cta {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .header-phone {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
        }

        .header-phone:hover {
            color: var(--primary-teal);
        }

        .header-btn {
            background: var(--gradient-main);
            color: var(--white);
            padding: 0.9rem 1.8rem;
            border-radius: 50px;
            font-size: 17px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 3px 12px rgba(62,185,167,0.3);
            white-space: nowrap;
        }

        .header-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 18px rgba(62,185,167,0.4);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--primary-navy);
            padding: 0.5rem;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            max-width: 320px;
            height: 100vh;
            background: var(--white);
            box-shadow: 5px 0 30px rgba(0,0,0,0.3);
            z-index: 1002;
            transition: left 0.4s ease;
            overflow-y: auto;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-header {
            background: var(--gradient-main);
            color: var(--white);
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-menu-header h3 {
            font-size: 22px;
            margin: 0;
        }

        .mobile-close-btn {
            background: rgba(255,255,255,0.2);
            border: none;
            color: var(--white);
            font-size: 28px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-nav-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav-menu li {
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-nav-menu li a {
            display: block;
            padding: 1.2rem 1.5rem;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .mobile-nav-menu li a:hover {
            background: var(--light-teal);
            color: var(--primary-teal);
            padding-left: 2rem;
        }

        .mobile-menu-footer {
            padding: 1.5rem;
            border-top: 1px solid #f0f0f0;
        }

        .mobile-menu-footer a {
            display: block;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 17px;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .mobile-menu-footer button {
            width: 100%;
            margin-top: 1rem;
        }

        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(3px);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* ============================================
           NAVIGATION HEADER
           ============================================ */
        
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            z-index: 998;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            box-shadow: 0 4px 30px rgba(0,0,0,0.15);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            flex-shrink: 0;
        }

        .nav-logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-main);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            box-shadow: 0 4px 15px rgba(62,185,167,0.3);
        }

        .nav-logo-text {
            display: flex;
            flex-direction: column;
        }

        .nav-logo-text .brand-name {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 900;
            color: var(--primary-navy);
            line-height: 1;
        }

        .nav-logo-text .brand-tagline {
            font-size: 12px;
            color: var(--primary-teal);
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 17px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary-teal);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--primary-teal);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-shrink: 0;
        }

        .nav-phone {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-navy);
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
            padding: 0.7rem 1.2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        

        .nav-cta-btn {
            padding: 0.8rem 1.8rem;
            background: var(--gradient-main);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(62,185,167,0.3);
            white-space: nowrap;
        }

        .nav-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(62,185,167,0.4);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--primary-navy);
            padding: 0.5rem;
        }

        /* Mobile Menu */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background: var(--white);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            z-index: 997;
        }

        .mobile-nav.active {
            max-height: 500px;
        }

        .mobile-nav-menu {
            list-style: none;
            padding: 1rem;
            margin: 0;
        }

        .mobile-nav-menu li {
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-nav-menu a {
            display: block;
            padding: 1rem;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .mobile-nav-menu a:hover {
            background: var(--light-teal);
            color: var(--primary-teal);
            padding-left: 1.5rem;
        }

        .mobile-nav-actions {
            padding: 1rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }


        /* ============================================
   ABOUT SECTION
   ============================================ */

.ab-wrap {
    background: #f5f2ee;
    overflow: hidden;
}

.ab-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
}

.ab-img-col {
    position: relative;
    overflow: hidden;
    background: #1a2744;
}

.ab-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    display: block;
    transition: transform 8s ease;
}

.ab-img-col:hover img { transform: scale(1.04); }

.ab-img-col::after {
    content: '';
    position: absolute;
    top: 0; right: -1px; bottom: 0;
    width: 80px;
    background: #f5f2ee;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 2;
}

.ab-chip {
    position: absolute;
    bottom: 2.5rem;
    left: 2rem;
    background: rgba(62,185,167,0.92);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 1rem 1.4rem;
    border-radius: 14px;
    z-index: 3;
    max-width: 260px;
    border: 1px solid rgba(255,255,255,0.25);
}

.ab-chip .ch-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.ab-chip .ch-creds {
    font-size: 12px;
    opacity: 0.9;
    line-height: 1.6;
}

.ab-year-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 72px;
    height: 72px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.ab-year-badge .yr { font-size: 22px; font-weight: 700; color: #1a2744; line-height: 1; }
.ab-year-badge .yr-lbl { font-size: 9px; font-weight: 500; color: #1a2744; text-align: center; line-height: 1.2; }

.ab-content-col {
    padding: 4rem 3.5rem 4rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f5f2ee;
    position: relative;
}

.ab-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

.ab-eyebrow .line {
    width: 36px;
    height: 2px;
    background: var(--primary-teal);
    border-radius: 2px;
}

.ab-eyebrow span {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-teal);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ab-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.15;
    margin-bottom: 1.4rem;
}

.ab-heading em {
    font-style: italic;
    color: var(--primary-teal);
}

.ab-desc {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 3px solid #e2ddd8;
}

.ab-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.2rem;
}

.ab-pillar {
    background: var(--white);
    border-radius: 14px;
    padding: 1.2rem 1rem;
    border: 1px solid #e8e4de;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ab-pillar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

.ab-pillar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3eb9a7, #2c3e7c);
}

.ab-pillar .ico { font-size: 22px; margin-bottom: 0.4rem; }

.ab-pillar .ptitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-navy);
    line-height: 1.3;
}

.ab-stats {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e2ddd8;
    border-bottom: 1px solid #e2ddd8;
    margin-bottom: 2rem;
}

.ab-stat { text-align: center; flex: 1; }

.ab-stat .sn {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1;
    display: block;
}

.ab-stat .sl {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.ab-stat-divider { width: 1px; background: #e2ddd8; }

.ab-cta { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

.ab-btn-main {
    padding: 0.9rem 2rem;
    background: var(--gradient-main);
    color: var(--white);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 18px rgba(62,185,167,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: none;
}

.ab-btn-main:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(62,185,167,0.45); }

.ab-btn-ghost {
    padding: 0.9rem 1.8rem;
    background: transparent;
    color: var(--primary-navy);
    border: 1.5px solid #c8c2b8;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.ab-btn-ghost:hover { border-color: var(--primary-navy); background: var(--primary-navy); color: var(--white); }

.ab-dots {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    display: grid;
    grid-template-columns: repeat(5, 8px);
    gap: 6px;
    opacity: 0.18;
}

.ab-dots span {
    width: 8px; height: 8px;
    background: var(--primary-navy);
    border-radius: 50%;
    display: block;
}

@media (max-width: 768px) {
    .ab-inner { grid-template-columns: 1fr; }
    .ab-img-col { height: 320px; }
    .ab-img-col::after {
        clip-path: polygon(0 85%, 100% 100%, 100% 100%, 0 100%);
        width: 100%; height: 60px;
        top: auto; right: 0; left: 0; bottom: -1px;
    }
    .ab-content-col { padding: 2.5rem 1.5rem; }
    .ab-stats { gap: 1rem; }
    .ab-stat .sn { font-size: 1.7rem; }
}

        /* Responsive Navigation */
        @media (max-width: 1024px) {
            .nav-menu {
                display: none;
            }

            .nav-phone {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .mobile-nav {
                display: block;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 0.8rem 1rem;
            }

            .nav-logo-icon {
                width: 45px;
                height: 45px;
                font-size: 22px;
            }

            .nav-logo-text .brand-name {
                font-size: 20px;
            }

            .nav-logo-text .brand-tagline {
                font-size: 10px;
            }

            .nav-cta-btn {
                padding: 0.7rem 1.3rem;
                font-size: 15px;
            }
        }

        /* ============================================
           NAVIGATION HEADER - STICKY TOP BAR
           ============================================ */
        
        .top-header {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .top-header.scrolled {
            box-shadow: 0 4px 30px rgba(0,0,0,0.15);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 55px;
            height: 55px;
            background: var(--gradient-main);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 3px 12px rgba(62,185,167,0.3);
        }

        .logo-text h1 {
            font-size: 24px;
            color: var(--primary-navy);
            margin-bottom: 0.2rem;
            line-height: 1;
        }

        .logo-text p {
            font-size: 14px;
            color: var(--primary-teal);
            font-weight: 600;
            letter-spacing: 1px;
            line-height: 1;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-menu a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-teal);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--primary-teal);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .header-cta {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .header-phone {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
            padding: 0.8rem 1.2rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .header-phone:hover {
            background: var(--light-teal);
            color: var(--primary-teal);
        }

        .header-book-btn {
            background: var(--gradient-main);
            color: var(--white);
            padding: 0.9rem 1.8rem;
            border-radius: 50px;
            font-size: 17px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 3px 15px rgba(62,185,167,0.3);
            white-space: nowrap;
        }

        .header-book-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(62,185,167,0.4);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--primary-navy);
            padding: 0.5rem;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 350px;
            height: 100vh;
            background: var(--white);
            box-shadow: -5px 0 30px rgba(0,0,0,0.2);
            z-index: 1001;
            transition: right 0.4s ease;
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            background: var(--gradient-main);
            color: var(--white);
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-menu-header h2 {
            font-size: 22px;
        }

        .mobile-close {
            background: none;
            border: none;
            color: var(--white);
            font-size: 32px;
            cursor: pointer;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.3s ease;
        }

        .mobile-close:hover {
            background: rgba(255,255,255,0.2);
        }

        .mobile-nav-menu {
            list-style: none;
            padding: 1.5rem 0;
        }

        .mobile-nav-menu li {
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-nav-menu a {
            display: block;
            padding: 1.2rem 1.5rem;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .mobile-nav-menu a:hover {
            background: var(--light-teal);
            color: var(--primary-teal);
            padding-left: 2rem;
        }

        .mobile-menu-cta {
            padding: 1.5rem;
        }

        .mobile-menu-cta button {
            width: 100%;
            margin-bottom: 1rem;
        }

        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(3px);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* ============================================
           NAVIGATION HEADER
           ============================================ */
        
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            z-index: 998;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            box-shadow: 0 4px 30px rgba(0,0,0,0.15);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-main);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 4px 15px rgba(62,185,167,0.3);
        }

        .logo-text h3 {
            font-size: 22px;
            color: var(--primary-navy);
            margin: 0;
            line-height: 1.2;
        }

        .logo-text p {
            font-size: 13px;
            color: var(--primary-teal);
            margin: 0;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 16px;
            transition: color 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-teal);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--primary-teal);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-cta {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .nav-phone {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-teal);
            text-decoration: none;
            font-weight: 700;
            font-size: 17px;
            padding: 0.8rem 1.2rem;
            /* border: 2px solid var(--primary-teal); */
            border-radius: 10px;
            transition: all 0.3s ease;
        }

     

        .nav-book-btn {
            background: var(--gradient-main);
            color: var(--white);
            padding: 0.8rem 1.8rem;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(62,185,167,0.3);
        }

        .nav-book-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(62,185,167,0.4);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--primary-navy);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, box-shadow 0.3s ease;
            z-index: 997;
        }

        .mobile-menu.active {
            max-height: 100vh;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .mobile-menu-content {
            padding: 2rem 1.5rem;
        }

        .mobile-menu .nav-menu {
            flex-direction: column;
            gap: 0;
            align-items: stretch;
        }

        .mobile-menu .nav-menu li {
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-menu .nav-menu a {
            display: block;
            padding: 1rem 0;
            font-size: 18px;
        }

        .mobile-menu .nav-cta {
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #f0f0f0;
        }

        .mobile-menu .nav-phone,
        .mobile-menu .nav-book-btn {
            width: 100%;
            text-align: center;
            justify-content: center;
        }

        /* ============================================
           HERO HEADER SECTION - THE MONEY MAKER
           ============================================ */
        
     
        
        .hero {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(62,185,167,0.95) 0%, rgba(44,62,124,0.9) 100%),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect fill="url(%23grid)" width="1200" height="800"/></svg>');
            background-size: cover;
            background-position: center;
            color: var(--white);
            display: flex;
            align-items: center;
            padding: 2rem 1.5rem;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(10deg); }
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text {
            animation: slideInLeft 1s ease;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
            line-height: 1.1;
        }

        .hero h1 .highlight {
            color: #ffd700;
            display: block;
        }

        .hero-subtitle {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            margin-bottom: 2rem;
            opacity: 0.95;
            font-weight: 400;
            line-height: 1.6;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin: 2rem 0 3rem;
            padding: 2rem 0;
            border-top: 1px solid rgba(255,255,255,0.3);
            border-bottom: 1px solid rgba(255,255,255,0.3);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            display: block;
            margin-bottom: 0.3rem;
            font-family: 'Playfair Display', serif;
        }

        .stat-label {
            font-size: 16px;
            opacity: 0.9;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn-primary, .btn-secondary {
            padding: 1.2rem 2.5rem;
            font-size: 18px;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        .btn-primary {
            background: var(--white);
            color: var(--primary-navy);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 30px rgba(0,0,0,0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary-navy);
        }

        .hero-image-side {
            position: relative;
            animation: slideInRight 1s ease;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .doctor-card {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2rem;
            border: 2px solid rgba(255,255,255,0.3);
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
        }

        .doctor-card h2 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            margin-bottom: 1rem;
            color: var(--white);
        }

        .credentials-list {
            font-size: 16px;
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

        .credentials-list div {
            padding: 0.4rem 0;
            display: flex;
            align-items: start;
            gap: 0.5rem;
        }

        .credentials-list div::before {
            content: '✓';
            color: #ffd700;
            font-weight: bold;
            font-size: 18px;
            flex-shrink: 0;
        }

        .contact-quick {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.3);
        }

        .contact-quick a {
            color: var(--white);
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.8rem;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .contact-quick a:hover {
            background: rgba(255,255,255,0.2);
            transform: translateX(5px);
        }

        /* ============================================
           TRUST SECTION
           ============================================ */
        
        .trust-section {
            background: var(--light-teal);
            padding: 3rem 1.5rem;
            text-align: center;
        }

        .trust-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .trust-item {
            padding: 1.5rem;
        }

        .trust-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .trust-item h3 {
            font-size: 20px;
            color: var(--primary-navy);
            margin-bottom: 0.5rem;
        }

        .trust-item p {
            font-size: 16px;
            color: var(--text-gray);
        }

        /* ============================================
           SERVICES SECTION WITH IMAGES
           ============================================ */
        
        .services-section {
            padding: 5rem 1.5rem;
            background: var(--white);
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            color: var(--primary-navy);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 19px;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }

        .service-card-pro {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .service-card-pro:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(62,185,167,0.2);
            border-color: var(--primary-teal);
        }

        .service-image {
            width: 100%;
            height: 250px;
            background: var(--gradient-main);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* .service-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(62,185,167,0.8), rgba(44,62,124,0.8));
        } */

        .service-image-icon {
            font-size: 5rem;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-content {
            padding: 2rem;
        }

        .service-content h3 {
            font-size: 26px;
            color: var(--primary-navy);
            margin-bottom: 1rem;
        }

        .service-content .service-desc {
            font-size: 17px;
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .service-list {
            list-style: none;
            padding: 0;
        }

        .service-list li {
            padding: 0.6rem 0;
            padding-left: 1.8rem;
            position: relative;
            font-size: 17px;
            color: var(--text-dark);
            border-bottom: 1px solid #f0f0f0;
        }

        .service-list li:last-child {
            border-bottom: none;
        }

        .service-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary-teal);
            font-weight: bold;
            font-size: 18px;
        }
        .social-links a img{
            width: 20px;
            border-radius: 5px;
        }

        .trust-icon img{
            width: 80px;
        }
        /* ============================================
           GALLERY SECTION - SHOWCASE WORK
           ============================================ */
        
        .gallery-section {
            padding: 5rem 1.5rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e8f6f4 100%);
        }

        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .gallery-tab {
            padding: 1rem 2rem;
            background: var(--white);
            border: 2px solid var(--primary-teal);
            color: var(--primary-teal);
            border-radius: 50px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-tab.active,
        .gallery-tab:hover {
            background: var(--primary-teal);
            color: var(--white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            aspect-ratio: 1;
            background: #e0e0e0;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay-text {
            color: var(--white);
            font-size: 18px;
            font-weight: 600;
        }

        .gallery-placeholder {
            background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-navy) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: var(--white);
            padding: 2rem;
            text-align: center;
        }

        .gallery-placeholder-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .gallery-placeholder-text {
            font-size: 18px;
            font-weight: 600;
        }

        /* ============================================
           TESTIMONIALS
           ============================================ */
        
        .testimonials-section {
            padding: 5rem 1.5rem;
            background: var(--white);
        }

        .testimonials-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: var(--light-teal);
            padding: 2.5rem;
            border-radius: 20px;
            position: relative;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--primary-teal);
            opacity: 0.3;
            line-height: 1;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 17px;
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: var(--primary-teal);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
            font-weight: 700;
        }

        .author-info h4 {
            font-size: 18px;
            color: var(--primary-navy);
            margin-bottom: 0.2rem;
        }

        .author-info p {
            font-size: 16px;
            color: var(--text-gray);
        }

        .rating {
            color: #ffd700;
            font-size: 18px;
            margin-top: 0.3rem;
        }

        /* ============================================
           FINAL CTA SECTION
           ============================================ */
        
        .final-cta {
            background: linear-gradient(135deg, var(--primary-navy) 0%, #1e2a52 100%);
            padding: 5rem 1.5rem;
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(62,185,167,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .final-cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .final-cta h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 1.5rem;
        }

        .final-cta p {
            font-size: 20px;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }

        .final-cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ============================================
           FOOTER
           ============================================ */
        
        footer {
            background: #1a1a1a;
            color: var(--white);
            padding: 4rem 1.5rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            font-size: 22px;
            margin-bottom: 1.5rem;
            color: var(--primary-teal);
        }

        .footer-section p,
        .footer-section a,
        .footer-section li {
            font-size: 17px;
            line-height: 1.9;
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
        }

        .footer-section a:hover {
            color: var(--primary-teal);
            padding-left: 5px;
            transition: all 0.3s ease;
        }
       .footer-section p{
        display: flex;
        align-items: start;
        gap: 10px;
       }
        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(62,185,167,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary-teal);
            transform: translateY(-3px);
        }

        .map-container {
            margin-top: 3rem;
            border-radius: 15px;
            overflow: hidden;
            height: 350px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.3);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 16px;
            color: rgba(255,255,255,0.5);
        }

        /* ============================================
           FLOATING BUTTONS
           ============================================ */
        
        .floating-buttons {
            position: fixed;
            bottom: 2rem;
            right: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 999;
        }

        .float-btn {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            cursor: pointer;
            box-shadow: 0 5px 25px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            text-decoration: none;
            animation: pulse 2s infinite;
        }

        .float-btn:hover {
            transform: scale(1.15);
            box-shadow: 0 8px 35px rgba(0,0,0,0.4);
        }

        .whatsapp-btn {
           background: #2ea71b;
            color: var(--white);
            overflow: hidden;
        }

        .call-btn {
            background: var(--accent-coral);
            color: var(--white);
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 5px 25px rgba(0,0,0,0.3);
            }
            50% {
                box-shadow: 0 5px 35px rgba(62,185,167,0.6);
            }
        }

        /* ============================================
           SIDEBAR FORM
           ============================================ */
        
        .sidebar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 500px;
            height: 100vh;
            background: var(--white);
            box-shadow: -5px 0 30px rgba(0,0,0,0.3);
            z-index: 1001;
            transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            overflow-y: auto;
        }

        .sidebar.active {
            right: 0;
        }

        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(3px);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .sidebar-header {
            background: var(--gradient-main);
            color: var(--white);
            padding: 2.5rem 2rem;
            position: relative;
        }

        .close-btn {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: rgba(255,255,255,0.2);
            border: none;
            color: var(--white);
            font-size: 28px;
            cursor: pointer;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            background: rgba(255,255,255,0.3);
            transform: rotate(90deg);
        }

        .sidebar-header h2 {
            font-size: 28px;
            margin-bottom: 0.8rem;
        }

        .sidebar-header p {
            font-size: 17px;
            opacity: 0.95;
        }

        .form-container {
            padding: 2.5rem 2rem;
        }

        .form-group {
            margin-bottom: 1.8rem;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.7rem;
            color: var(--text-dark);
            font-size: 17px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem 1.2rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 17px;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-teal);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(62,185,167,0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 130px;
        }

        .submit-btn {
            width: 100%;
            background: var(--gradient-main);
            color: var(--white);
            padding: 1.3rem;
            font-size: 19px;
            font-weight: 700;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(62,185,167,0.3);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(62,185,167,0.4);
        }

        .whatsapp-btn img{
            width: 50px;
        }
        .whatsapp_icon{width: 30px;}
        /* ============================================
           RESPONSIVE
           ============================================ */
        
        @media (max-width: 1024px) {
            .nav-menu {
                gap: 1.5rem;
            }

            .nav-menu li a {
                font-size: 16px;
            }

            .header-phone {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-menu,
            .header-cta {
                display: none;
            }

            .mobile-menu-toggle,
            .mobile-menu,
            .mobile-overlay {
                display: block;
            }

            .logo-text .brand-name {
                font-size: 20px;
            }

            .logo-text .brand-tagline {
                font-size: 11px;
            }

            .logo-icon {
                width: 45px;
                height: 45px;
                font-size: 22px;
            }

            .hero {
                min-height: auto;
                padding-top: 3rem;
                padding-bottom: 3rem;
            }

            /* .hero-stats {
                grid-template-columns: 1fr;
            } */

            .hero-cta {
                flex-direction: column;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .final-cta-buttons {
                flex-direction: column;
            }

            .floating-buttons {
                bottom: 1.5rem;
                right: 1rem;
            }

            .float-btn {
                width: 58px;
                height: 58px;
                font-size: 26px;
            }

            .sidebar {
                max-width: 100%;
            }

            .ab-cta{
                flex-wrap: nowrap;
            }
            .ab-btn-main{
                
    padding: 0.9rem 0.8rem;

            }
            .ab-btn-ghost{
                    padding: 0.9rem 0.8rem;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-card-pro:nth-child(1) { animation-delay: 0.1s; }
        .service-card-pro:nth-child(2) { animation-delay: 0.2s; }
        .service-card-pro:nth-child(3) { animation-delay: 0.3s; }