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

        :root {
            /* Primary Colors from Logo */
            --navy: #0a1f44;
            --maroon: #b45309;
            --orange: #f97316;
            --yellow: #facc15;
            --purple: #0f766e;
            --pink: #fb7185;
            --cyan: #06b6d4;
            --green: #22c55e;
            
            /* Neutrals */
            --white: #FFFFFF;
            --cream: #f4f8ff;
            --charcoal: #0f172a;
            --light-blue: #1d4ed8;
            --muted: #475569;
            --surface: #ffffff;
            --surface-soft: #f8fbff;
        }

        body {
            font-family: 'Manrope', sans-serif;
            color: var(--charcoal);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Utility Classes */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        /* Prevent sticky header from covering section titles when scrolling to anchors */
        main section[id] {
            scroll-margin-top: 132px;
        }

        /* Skip heavy below-the-fold rendering work until the section nears viewport */
        main > section.section-padding {
            content-visibility: auto;
            contain-intrinsic-size: 1px 900px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--orange), var(--yellow));
            color: var(--navy);
            padding: 16px 40px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(255, 140, 66, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 16px 40px;
            border: 2px solid var(--white);
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--cyan);
            color: var(--cyan);
        }

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Header/Navigation */
        .header {
            background: linear-gradient(135deg, var(--navy) 0%, var(--maroon) 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .logo-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: white;
            padding: 5px;
        }

        .logo-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .logo-text h1,
        .logo-text .brand-name {
            font-family: 'Sora', sans-serif;
            color: var(--white);
            font-size: 28px;
            margin-bottom: -5px;
            background: linear-gradient(90deg, var(--cyan), var(--yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-text p,
        .logo-text .brand-tagline {
            color: var(--cyan);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .nav-contact {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s;
            padding: 10px 20px;
            border-radius: 25px;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--cyan);
        }

        .contact-item i {
            color: var(--yellow);
            font-size: 18px;
        }

        /* Hero/Banner Section */
        .hero {
            background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 50%, var(--maroon) 100%);
            position: relative;
            overflow: hidden;
            padding: 120px 0;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(255, 140, 66, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(255, 107, 157, 0.1) 0%, transparent 40%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
        }

        .hero-badge {
            background: rgba(78, 205, 196, 0.2);
            color: var(--cyan);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            display: inline-block;
            margin-bottom: 25px;
            border: 2px solid var(--cyan);
            backdrop-filter: blur(10px);
        }

        .hero h1 {
            font-family: 'Sora', sans-serif;
            color: var(--white);
            font-size: 56px;
            line-height: 1.2;
            margin-bottom: 25px;
            font-weight: 800;
        }

        .hero-highlight {
            background: linear-gradient(90deg, var(--orange), var(--yellow), var(--pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 20px;
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 50px;
        }

        .stat-item {
            text-align: center;
            padding: 25px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            border-color: var(--cyan);
            background: rgba(78, 205, 196, 0.15);
        }

        .stat-item:nth-child(1) { border-color: var(--orange); }
        .stat-item:nth-child(2) { border-color: var(--cyan); }
        .stat-item:nth-child(3) { border-color: var(--pink); }
        .stat-item:nth-child(4) { border-color: var(--green); }

        .stat-number {
            font-family: 'Sora', sans-serif;
            font-size: 42px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--orange), var(--yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 8px;
        }

        .stat-item:nth-child(2) .stat-number {
            background: linear-gradient(135deg, var(--cyan), var(--green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-item:nth-child(3) .stat-number {
            background: linear-gradient(135deg, var(--pink), var(--purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-item:nth-child(4) .stat-number {
            background: linear-gradient(135deg, var(--green), var(--cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            font-weight: 600;
        }

        .hero-cta {
            margin-top: 40px;
            display: flex;
            gap: 20px;
            align-items: center;
        }

        /* Trust Badges */
        .trust-badges {
            background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
            padding: 40px 0;
            border-bottom: 3px solid var(--cyan);
        }

        .badges-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

        .badge-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            padding: 20px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .badge-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .badge-item:nth-child(1) { border-top: 4px solid var(--orange); }
        .badge-item:nth-child(2) { border-top: 4px solid var(--cyan); }
        .badge-item:nth-child(3) { border-top: 4px solid var(--pink); }
        .badge-item:nth-child(4) { border-top: 4px solid var(--green); }

        .badge-item i {
            font-size: 36px;
        }

        .badge-item:nth-child(1) i { color: var(--orange); }
        .badge-item:nth-child(2) i { color: var(--cyan); }
        .badge-item:nth-child(3) i { color: var(--pink); }
        .badge-item:nth-child(4) i { color: var(--green); }

        .badge-text {
            text-align: left;
        }

        .badge-text strong {
            display: block;
            color: var(--navy);
            font-size: 16px;
            font-weight: 700;
        }

        .badge-text span {
            color: var(--charcoal);
            font-size: 13px;
        }

        /* Why Choose Us Section */
        .why-choose {
            background: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            background: linear-gradient(90deg, var(--orange), var(--pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .section-title {
            font-family: 'Sora', sans-serif;
            color: var(--navy);
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .section-description {
            color: var(--charcoal);
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .program-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .feature-card {
            background: var(--cream);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--orange), var(--yellow));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:nth-child(2)::before {
            background: linear-gradient(90deg, var(--cyan), var(--green));
        }

        .feature-card:nth-child(3)::before {
            background: linear-gradient(90deg, var(--pink), var(--purple));
        }

        .feature-card:nth-child(4)::before {
            background: linear-gradient(90deg, var(--purple), var(--navy));
        }

        .feature-card:nth-child(5)::before {
            background: linear-gradient(90deg, var(--green), var(--cyan));
        }

        .feature-card:nth-child(6)::before {
            background: linear-gradient(90deg, var(--orange), var(--maroon));
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--navy), var(--purple));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 40px;
            transition: all 0.3s ease;
        }

        .feature-card:nth-child(1) .feature-icon {
            background: linear-gradient(135deg, var(--orange), var(--yellow));
            color: var(--navy);
        }

        .feature-card:nth-child(2) .feature-icon {
            background: linear-gradient(135deg, var(--cyan), var(--green));
            color: var(--navy);
        }

        .feature-card:nth-child(3) .feature-icon {
            background: linear-gradient(135deg, var(--pink), var(--purple));
            color: var(--white);
        }

        .feature-card:nth-child(4) .feature-icon {
            background: linear-gradient(135deg, var(--purple), var(--navy));
            color: var(--cyan);
        }

        .feature-card:nth-child(5) .feature-icon {
            background: linear-gradient(135deg, var(--green), var(--cyan));
            color: var(--navy);
        }

        .feature-card:nth-child(6) .feature-icon {
            background: linear-gradient(135deg, var(--maroon), var(--navy));
            color: var(--orange);
        }

        .feature-card:hover .feature-icon {
            transform: rotateY(360deg);
        }

        .feature-card h3 {
            color: var(--navy);
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .feature-card p {
            color: var(--charcoal);
            font-size: 15px;
            line-height: 1.7;
        }

        .program-link {
            display: inline-block;
            margin-top: 18px;
            padding: 10px 20px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            color: var(--light-blue);
            background: #eaf3ff;
            border: 1px solid #c5dcfb;
            transition: all 0.3s ease;
        }

        .program-link:hover {
            color: var(--navy);
            background: #dcecff;
            border-color: #9cc4f7;
        }

        /* Faculty Section */
        .faculty {
            background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
            color: var(--white);
        }

        .faculty .section-subtitle {
            color: var(--cyan);
            background: none;
            -webkit-text-fill-color: unset;
        }

        .faculty .section-title {
            color: var(--white);
        }

        .faculty .section-description {
            color: rgba(255, 255, 255, 0.9);
        }

        .faculty-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .faculty-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .faculty-card:hover {
            transform: translateY(-10px);
            border-color: var(--cyan);
            box-shadow: 0 15px 40px rgba(78, 205, 196, 0.3);
        }

        .faculty-card:nth-child(2):hover {
            border-color: var(--orange);
            box-shadow: 0 15px 40px rgba(255, 140, 66, 0.3);
        }

        .faculty-card:nth-child(3):hover {
            border-color: var(--pink);
            box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
        }

        .faculty-card:nth-child(4):hover {
            border-color: var(--yellow);
            box-shadow: 0 15px 40px rgba(250, 204, 21, 0.28);
        }

        .faculty-card:nth-child(5):hover {
            border-color: var(--green);
            box-shadow: 0 15px 40px rgba(34, 197, 94, 0.28);
        }

        .faculty-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, var(--cyan), var(--green));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            color: var(--navy);
            position: relative;
        }

        .faculty-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            padding: 0px 0;
            display: block;
        }

        .faculty-card:nth-child(2) .faculty-image {
            background: linear-gradient(135deg, var(--orange), var(--yellow));
        }

        .faculty-card:nth-child(3) .faculty-image {
            background: linear-gradient(135deg, var(--pink), var(--purple));
            color: var(--white);
        }

        .faculty-card:nth-child(4) .faculty-image {
            background: linear-gradient(135deg, #b45309, #f59e0b);
            color: var(--white);
        }

        .faculty-card:nth-child(5) .faculty-image {
            background: linear-gradient(135deg, #0f766e, #22c55e);
            color: var(--white);
        }

        .faculty-card:nth-child(5) .faculty-image img {
            object-position: center 16%;
        }

        .faculty-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 2;
            background: var(--navy);
            color: var(--cyan);
            padding: 8px 18px;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            border: 2px solid var(--cyan);
        }

        .faculty-card:nth-child(2) .faculty-badge {
            color: var(--orange);
            border-color: var(--orange);
        }

        .faculty-card:nth-child(3) .faculty-badge {
            color: var(--pink);
            border-color: var(--pink);
        }

        .faculty-card:nth-child(4) .faculty-badge {
            color: var(--yellow);
            border-color: var(--yellow);
        }

        .faculty-card:nth-child(5) .faculty-badge {
            color: var(--green);
            border-color: var(--green);
        }

        .faculty-info {
            padding: 35px;
        }

        .faculty-info h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            background: linear-gradient(90deg, var(--cyan), var(--green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .faculty-card:nth-child(2) .faculty-info h3 {
            background: linear-gradient(90deg, var(--orange), var(--yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .faculty-card:nth-child(3) .faculty-info h3 {
            background: linear-gradient(90deg, var(--pink), var(--purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .faculty-card:nth-child(4) .faculty-info h3 {
            background: linear-gradient(90deg, #f59e0b, #facc15);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .faculty-card:nth-child(5) .faculty-info h3 {
            background: linear-gradient(90deg, #22c55e, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .faculty-role {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            margin-bottom: 25px;
        }

        .faculty-credentials {
            margin-bottom: 20px;
        }

        .credential-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
        }

        .credential-item i {
            color: var(--cyan);
        }

        .faculty-card:nth-child(2) .credential-item i {
            color: var(--orange);
        }

        .faculty-card:nth-child(3) .credential-item i {
            color: var(--pink);
        }

        .faculty-card:nth-child(4) .credential-item i {
            color: var(--yellow);
        }

        .faculty-card:nth-child(5) .credential-item i {
            color: var(--green);
        }

        .faculty-quote {
            font-style: italic;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            border-left: 3px solid var(--cyan);
            padding-left: 15px;
            margin-top: 20px;
        }

        .faculty-card:nth-child(2) .faculty-quote {
            border-color: var(--orange);
        }

        .faculty-card:nth-child(3) .faculty-quote {
            border-color: var(--pink);
        }

        .faculty-card:nth-child(4) .faculty-quote {
            border-color: var(--yellow);
        }

        .faculty-card:nth-child(5) .faculty-quote {
            border-color: var(--green);
        }

        /* Results Section */
        .results {
            background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .result-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-top: 5px solid var(--orange);
        }

        .result-card:nth-child(2) {
            border-top-color: var(--cyan);
        }

        .result-card:nth-child(3) {
            border-top-color: var(--pink);
        }

        .result-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 45px rgba(0,0,0,0.15);
        }

        .result-image {
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, var(--orange), var(--yellow));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 100px;
            color: var(--navy);
            position: relative;
        }

        .result-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .result-card:nth-child(2) .result-image {
            background: linear-gradient(135deg, var(--cyan), var(--green));
        }

        .result-card:nth-child(3) .result-image {
            background: linear-gradient(135deg, var(--pink), var(--purple));
            color: var(--white);
        }

        .result-score {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 2;
            background: var(--navy);
            color: var(--orange);
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 800;
            font-size: 28px;
            font-family: 'Sora', sans-serif;
            border: 3px solid var(--orange);
        }

        .result-card:nth-child(2) .result-score {
            color: var(--cyan);
            border-color: var(--cyan);
        }

        .result-card:nth-child(3) .result-score {
            color: var(--pink);
            border-color: var(--pink);
        }

        .result-info {
            padding: 30px;
        }

        .result-info h3 {
            color: var(--navy);
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .result-achievement {
            color: var(--orange);
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .result-card:nth-child(2) .result-achievement {
            color: var(--cyan);
        }

        .result-card:nth-child(3) .result-achievement {
            color: var(--pink);
        }

        .result-details {
            color: var(--charcoal);
            font-size: 14px;
            line-height: 1.6;
        }

        /* Instagram Gallery */
        .instagram-gallery {
            background: var(--white);
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .instagram-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #FCAF45);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s;
        }

        .instagram-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
        }

        .instagram-link i {
            font-size: 24px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 1;
            border-radius: 16px;
            overflow: hidden;
            display: block;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.35);
        }

        .gallery-item:hover {
            border-color: var(--pink);
        }

        .gallery-item:nth-child(even):hover {
            border-color: var(--cyan);
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform 0.35s ease;
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 31, 68, 0.12), rgba(10, 31, 68, 0.7));
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
            padding: 14px;
            color: white;
            font-size: 24px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-image {
            transform: scale(1.08);
        }

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

        /* Reviews Section */
        .reviews {
            background: var(--cream);
        }

        .reviews-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .google-rating {
            text-align: center;
            background: var(--white);
            padding: 50px;
            border-radius: 20px;
            margin-bottom: 50px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            border-top: 5px solid #4285F4;
        }

        .google-logo {
            font-size: 60px;
            margin-bottom: 25px;
        }

        .rating-stars {
            font-size: 40px;
            color: #FFA500;
            margin-bottom: 20px;
        }

        .rating-score {
            font-family: 'Sora', sans-serif;
            font-size: 56px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--orange), var(--yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .rating-count {
            color: var(--charcoal);
            font-size: 16px;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .review-card {
            background: var(--white);
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            border-left: 5px solid var(--cyan);
            transition: all 0.3s ease;
        }

        .review-card:nth-child(2) {
            border-left-color: var(--orange);
        }

        .review-card:nth-child(3) {
            border-left-color: var(--pink);
        }

        .review-card:nth-child(4) {
            border-left-color: var(--green);
        }

        .review-card:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .reviewer-info h4 {
            color: var(--navy);
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 5px;
        }

        .reviewer-role {
            color: var(--charcoal);
            font-size: 13px;
        }

        .review-stars {
            color: #FFA500;
            font-size: 18px;
        }

        .review-text {
            color: var(--charcoal);
            font-size: 15px;
            line-height: 1.8;
            font-style: italic;
        }

        /* Location Section */
        .location {
            background: var(--white);
        }

        .location-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .location-info h2 {
            font-family: 'Sora', sans-serif;
            color: var(--navy);
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 30px;
        }

        .location-details {
            margin-bottom: 30px;
        }

        .detail-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
            padding: 25px;
            background: var(--cream);
            border-radius: 16px;
            border-left: 5px solid var(--orange);
            transition: all 0.3s ease;
        }

        .detail-item:nth-child(2) {
            border-left-color: var(--cyan);
        }

        .detail-item:nth-child(3) {
            border-left-color: var(--pink);
        }

        .detail-item:nth-child(4) {
            border-left-color: var(--green);
        }

        .detail-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .detail-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--orange), var(--yellow));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--navy);
            font-size: 24px;
            flex-shrink: 0;
        }

        .detail-item:nth-child(2) .detail-icon {
            background: linear-gradient(135deg, var(--cyan), var(--green));
        }

        .detail-item:nth-child(3) .detail-icon {
            background: linear-gradient(135deg, var(--pink), var(--purple));
            color: white;
        }

        .detail-item:nth-child(4) .detail-icon {
            background: linear-gradient(135deg, var(--green), var(--cyan));
        }

        .detail-content h4 {
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 5px;
        }

        .detail-content p {
            color: var(--charcoal);
            font-size: 15px;
        }

        .detail-content a {
            color: var(--navy);
            text-decoration: none;
            font-weight: 600;
        }

        .detail-content a:hover {
            color: var(--orange);
        }

        .location-map {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }

        .map-placeholder {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, var(--navy), var(--purple));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: var(--white);
        }

        .map-placeholder i {
            font-size: 80px;
            color: var(--cyan);
            margin-bottom: 25px;
        }

        .map-placeholder p {
            font-size: 20px;
            font-weight: 600;
        }

        /* WhatsApp Connect Section */
        .whatsapp-section {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
        }

        .whatsapp-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .whatsapp-icon {
            font-size: 90px;
            margin-bottom: 30px;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .whatsapp-content h2 {
            font-family: 'Sora', sans-serif;
            font-size: 46px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .whatsapp-content p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .whatsapp-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .whatsapp-feature {
            background: rgba(255, 255, 255, 0.15);
            padding: 30px;
            border-radius: 16px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .whatsapp-feature:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-5px);
        }

        .whatsapp-feature i {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .whatsapp-feature h4 {
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 20px;
        }

        .btn-whatsapp {
            background: var(--white);
            color: #25D366;
            padding: 22px 55px;
            font-size: 22px;
            font-weight: 800;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }

        .btn-whatsapp:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 45px rgba(0,0,0,0.3);
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--navy) 0%, var(--maroon) 100%);
            color: var(--white);
        }

        .cta-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .cta h2 {
            font-family: 'Sora', sans-serif;
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .cta p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .urgency-box {
            background: rgba(78, 205, 196, 0.15);
            border: 3px solid var(--cyan);
            padding: 40px;
            border-radius: 20px;
            margin-top: 60px;
            backdrop-filter: blur(10px);
        }

        .urgency-box h3 {
            color: var(--cyan);
            font-size: 26px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .seats-status {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            text-align: left;
        }

        .seat-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            border-left: 4px solid var(--orange);
        }

        .seat-item:nth-child(2) {
            border-left-color: var(--cyan);
        }

        .seat-item:nth-child(3) {
            border-left-color: var(--pink);
        }

        .seat-item:nth-child(4) {
            border-left-color: var(--green);
        }

        .seat-item span:first-child {
            font-weight: 600;
        }

        .seat-item span:last-child {
            font-weight: 800;
            font-size: 20px;
            font-family: 'Sora', sans-serif;
        }

        .seat-item:nth-child(1) span:last-child {
            color: var(--orange);
        }

        .seat-item:nth-child(2) span:last-child {
            color: var(--cyan);
        }

        .seat-item:nth-child(3) span:last-child {
            color: var(--pink);
        }

        .seat-item:nth-child(4) span:last-child {
            color: var(--green);
        }

        /* Footer */
        .footer {
            background: #1a1a1a;
            color: rgba(255, 255, 255, 0.8);
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 50px;
        }

        .footer-about h3 {
            font-family: 'Sora', sans-serif;
            background: linear-gradient(90deg, var(--cyan), var(--yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 28px;
            margin-bottom: 20px;
        }

        .footer-about p {
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 22px;
            transition: all 0.3s ease;
            text-decoration: none;
            border-bottom: 0;
        }

        .social-links a i {
            line-height: 1;
        }

        .social-links a:nth-child(1):hover {
            background: #1877F2;
            transform: translateY(-5px);
        }

        .social-links a:nth-child(2):hover {
            background: linear-gradient(135deg, #833AB4, #C13584, #E1306C);
            transform: translateY(-5px);
        }

        .social-links a:nth-child(3):hover {
            background: #25D366;
            transform: translateY(-5px);
        }

        .social-links a:nth-child(4):hover {
            background: #4285F4;
            transform: translateY(-5px);
        }

        .footer-section h4 {
            color: var(--white);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: var(--cyan);
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-stats,
            .badges-grid,
            .features-grid,
            .faculty-grid,
            .results-grid,
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .location-container {
                grid-template-columns: 1fr;
            }

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

            .whatsapp-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 38px;
            }

            .hero p {
                font-size: 16px;
            }

            .hero-stats,
            .badges-grid,
            .features-grid,
            .faculty-grid,
            .results-grid,
            .whatsapp-features {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .section-title {
                font-size: 32px;
            }

            .nav-contact {
                display: none;
            }

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

            .seats-status {
                grid-template-columns: 1fr;
            }

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

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

            .logo-text h1,
            .logo-text .brand-name {
                font-size: 22px;
            }

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

        /* Modern UI refinement */
        html {
            scroll-behavior: smooth;
        }

        body {
            background:
                radial-gradient(circle at 12% 8%, rgba(14, 165, 233, 0.11) 0%, transparent 28%),
                radial-gradient(circle at 88% 20%, rgba(249, 115, 22, 0.13) 0%, transparent 34%),
                linear-gradient(180deg, #f8fbff 0%, #eef6ff 50%, #f6faff 100%);
            color: var(--charcoal);
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        main {
            display: block;
            position: relative;
            isolation: isolate;
        }

        .container {
            max-width: 1240px;
        }

        .section-padding {
            padding: 92px 0;
        }

        .section-title {
            letter-spacing: -0.02em;
            text-wrap: balance;
        }

        .section-description {
            color: var(--muted);
        }

        .header {
            background: linear-gradient(120deg, rgba(10, 31, 68, 0.94), rgba(15, 118, 110, 0.9));
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(12px);
            transition: padding 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        }

        .header.scrolled {
            padding: 10px 0;
            box-shadow: 0 14px 28px rgba(10, 31, 68, 0.22);
            background: linear-gradient(120deg, rgba(10, 31, 68, 0.97), rgba(15, 118, 110, 0.95));
        }

        .logo-image {
            box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
        }

        .nav-container {
            gap: 16px;
        }

        .logo {
            gap: 14px;
        }

        .nav-contact {
            gap: 12px;
            justify-content: flex-end;
            flex-wrap: wrap;
        }

        .contact-item {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.22);
            padding: 9px 16px;
            border-radius: 18px;
            min-height: 50px;
            gap: 8px;
        }

        .contact-item span {
            white-space: nowrap;
            font-size: 15px;
            font-weight: 600;
            line-height: 1.2;
        }

        .contact-item i {
            font-size: 16px;
        }

        .contact-item:hover {
            transform: translateY(-2px);
        }

        @media (max-width: 1280px) {
            .nav-contact {
                gap: 9px;
            }

            .contact-item {
                padding: 8px 12px;
                min-height: 44px;
                border-radius: 14px;
            }

            .contact-item span {
                font-size: 14px;
            }
        }

        .btn-primary,
        .btn-secondary,
        .btn-whatsapp {
            position: relative;
            overflow: hidden;
            letter-spacing: 0.01em;
        }

        .btn-primary::before,
        .btn-secondary::before,
        .btn-whatsapp::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
            transform: translateX(-140%);
            transition: transform 0.55s ease;
            pointer-events: none;
        }

        .btn-primary:hover::before,
        .btn-secondary:hover::before,
        .btn-whatsapp:hover::before {
            transform: translateX(140%);
        }

        .hero {
            padding: 140px 0 118px;
            background: linear-gradient(135deg, #0a1f44 0%, #0f766e 55%, #b45309 100%);
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
            background-size: 36px 36px;
            opacity: 0.12;
            pointer-events: none;
        }

        .hero-content {
            max-width: 980px;
        }

        .hero-badge,
        .hero h1,
        .hero p,
        .hero-cta,
        .hero-stats {
            opacity: 0;
            transform: translateY(12px);
            animation: heroFadeIn 0.7s ease forwards;
        }

        .hero-badge {
            animation-delay: 0.04s;
        }

        .hero h1 {
            animation-delay: 0.14s;
        }

        .hero p:nth-of-type(1) {
            animation-delay: 0.24s;
        }

        .hero p:nth-of-type(2) {
            animation-delay: 0.34s;
        }

        .hero-cta {
            animation-delay: 0.46s;
        }

        .hero-stats {
            animation-delay: 0.58s;
        }

        .hero-cta .btn-primary {
            animation: ctaPulse 2.8s ease-in-out infinite 1.3s;
            will-change: transform, box-shadow;
        }

        .hero-badge {
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-size: 12px;
            box-shadow: 0 10px 25px rgba(6, 182, 212, 0.28);
        }

        .hero h1 {
            font-size: clamp(2.2rem, 5.1vw, 4.5rem);
            line-height: 1.08;
            margin-bottom: 30px;
        }

        .hero p {
            max-width: 68ch;
            color: rgba(255, 255, 255, 0.94);
        }

        .hero-cta {
            flex-wrap: wrap;
        }

        .hero-stats {
            margin-top: 44px;
            gap: 20px;
        }

        .stat-item {
            border-width: 1px;
            box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
        }

        .trust-badges,
        .why-choose,
        .results,
        .instagram-gallery,
        .reviews,
        .location {
            background: transparent;
        }

        .badge-item,
        .feature-card,
        .result-card,
        .review-card,
        .gallery-item,
        .google-rating,
        .detail-item,
        .whatsapp-feature,
        .location-map,
        .location-info {
            border: 1px solid rgba(15, 23, 42, 0.08);
            box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
        }

        .badge-item,
        .feature-card,
        .result-card,
        .review-card,
        .gallery-item,
        .google-rating,
        .detail-item,
        .whatsapp-feature {
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(8px);
        }

        .feature-card p,
        .review-text,
        .result-content p,
        .detail-content p,
        .badge-text span {
            color: var(--muted);
        }

        .feature-card:hover,
        .result-card:hover,
        .review-card:hover,
        .gallery-item:hover,
        .detail-item:hover,
        .whatsapp-feature:hover,
        .badge-item:hover {
            transform: translateY(-9px);
            box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
        }

        .feature-card,
        .result-card,
        .review-card,
        .gallery-item,
        .detail-item,
        .whatsapp-feature,
        .badge-item,
        .stat-item {
            will-change: transform;
        }

        .faculty {
            background: linear-gradient(145deg, #0a1f44 0%, #0f766e 100%);
        }

        .faculty-card {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.22);
            box-shadow: 0 16px 34px rgba(1, 8, 28, 0.35);
        }

        .faculty-image {
            background: rgba(255, 255, 255, 0.14);
        }

        .faculty-image img {
            object-fit: cover;
            object-position: center top;
            padding: 0px 0;
        }

        .reviews-container {
            gap: 28px;
        }

        .review-slider {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 4px;
        }

        .review-slider::-webkit-scrollbar {
            display: none;
        }

        .review-slider .review-card {
            flex: 0 0 calc(50% - 12px);
            scroll-snap-align: start;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        @media (max-width: 900px) {
            .review-slider .review-card {
                flex-basis: 100%;
            }
        }

        .faq-home {
            background: transparent;
        }

        .faq-home-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 22px;
        }

        .faq-home-card {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(15, 23, 42, 0.08);
            border-radius: 18px;
            padding: 24px;
            box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .faq-home-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
        }

        .faq-home-card h3 {
            color: var(--navy);
            font-family: "Sora", sans-serif;
            font-size: 22px;
            margin-bottom: 10px;
        }

        .faq-home-card p {
            color: var(--muted);
            font-size: 16px;
            line-height: 1.65;
        }

        .review-stars,
        .rating-stars {
            color: #f59e0b;
            letter-spacing: 0.1em;
        }

        .location-map .map-placeholder {
            min-height: 100%;
        }

        .whatsapp-section {
            background: linear-gradient(135deg, #0f766e, #0a1f44);
        }

        .cta {
            background: linear-gradient(135deg, #0a1f44, #1d4ed8);
        }

        .urgency-box {
            border-color: rgba(6, 182, 212, 0.9);
            background: rgba(6, 182, 212, 0.16);
        }

        .footer {
            background: linear-gradient(180deg, #0d1324, #080d18);
        }

        .parent-app {
            background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
        }

        .parent-app-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
        }

        .parent-app-card {
            background: #ffffff;
            border: 1px solid #dbe8ff;
            border-radius: 18px;
            padding: 24px;
            box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
        }

        .parent-app-card h3 {
            font-family: "Sora", sans-serif;
            color: var(--navy);
            font-size: 21px;
            margin-bottom: 10px;
        }

        .parent-app-card p {
            color: var(--muted);
            line-height: 1.7;
        }

        .parent-app-actions {
            margin-top: 28px;
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .parent-app-actions .btn-secondary {
            background: #ffffff !important;
            color: #0a1f44 !important;
            border: 2px solid #0f4ab8 !important;
            box-shadow: 0 10px 24px rgba(15, 74, 184, 0.18) !important;
        }

        .parent-app-actions .btn-secondary:hover {
            background: #0f4ab8 !important;
            color: #ffffff !important;
            border-color: #0f4ab8 !important;
            box-shadow: 0 14px 28px rgba(15, 74, 184, 0.26) !important;
        }

        .parent-app-actions .btn-secondary i {
            color: #f59e0b !important;
        }

        .whatsapp-section .whatsapp-feature {
            background: #ffffff !important;
            color: #0a1f44 !important;
            border: 1px solid #dce7ff !important;
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12) !important;
        }

        .whatsapp-section .whatsapp-feature h4 {
            color: #0a1f44 !important;
        }

        .whatsapp-section .whatsapp-feature p {
            color: #334155 !important;
            font-size: 16px !important;
            margin-bottom: 0 !important;
            opacity: 1 !important;
        }

        .whatsapp-section .whatsapp-feature i {
            color: #0f766e !important;
        }

        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.65s ease, transform 0.65s ease;
        }

        .reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 72px 0;
            }

            .hero {
                padding: 110px 0 86px;
            }

            .hero h1 {
                font-size: clamp(2rem, 9vw, 2.7rem);
            }

            .hero-badge {
                letter-spacing: 0.04em;
                font-size: 11px;
            }

            .btn-primary,
            .btn-secondary,
            .btn-whatsapp {
                width: 100%;
                text-align: center;
                min-height: 46px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            .contact-item {
                border-radius: 14px;
                min-height: 44px;
            }

            .faq-home-grid {
                grid-template-columns: 1fr;
            }

            .parent-app-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .parent-app-card {
                padding: 18px;
            }

            .footer-links a {
                display: inline-block;
                min-height: 34px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .reveal,
            .reveal.is-visible,
            .hero-badge,
            .hero h1,
            .hero p,
            .hero-cta,
            .hero-stats,
            .btn-primary,
            .btn-secondary,
            .btn-whatsapp,
            .feature-card,
            .result-card,
            .review-card,
            .gallery-item,
            .detail-item,
            .whatsapp-feature {
                transition: none !important;
                transform: none !important;
                animation: none !important;
            }
        }

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

        @keyframes ctaPulse {
            0%, 100% {
                transform: translateY(0) scale(1);
                box-shadow: 0 10px 24px rgba(255, 140, 66, 0.28);
            }
            50% {
                transform: translateY(-2px) scale(1.02);
                box-shadow: 0 16px 30px rgba(255, 140, 66, 0.4);
            }
        }

