/* ============================================
   Elflish - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --primary-green: #7EBB9A;
    --primary-green-light: #A8D5BA;
    --primary-green-pale: #E8F5E9;
    --primary-green-dark: #5A9A7A;
    --beige: #F5F0E8;
    --cream: #FDFBF7;
    --yellow: #F9E4B7;
    --blue: #E3F2FD;
    --text-dark: #2D3748;
    --text-light: #718096;
    --white: #FFFFFF;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 4px 20px rgba(126, 187, 154, 0.15);
    --shadow-lg: 0 8px 40px rgba(126, 187, 154, 0.2);
    --radius: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green-dark);
    border: 2px solid rgba(126, 187, 154, 0.3);
}

.btn-secondary:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Link Arrow */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green-dark);
    font-weight: 600;
    transition: var(--transition);
}

.link-arrow:hover {
    color: var(--primary-green);
}

.link-arrow span {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.link-arrow:hover span {
    transform: translateX(4px);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    padding: 0.75rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-green-dark);
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-green);
}

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

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

.nav-btn {
    display: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: rgba(126, 187, 154, 0.1);
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-green-dark);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 100px;
    /* Adjusted for 70px logo */
    left: 1rem;
    right: 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-link {
    display: block;
    padding: 0.875rem 1rem;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
}

.mobile-link:hover {
    background: var(--primary-green-pale);
    color: var(--primary-green-dark);
}

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

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--cream), var(--beige), var(--primary-green-pale));
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.circle-1 {
    width: 80px;
    height: 80px;
    background: rgba(126, 187, 154, 0.1);
    top: 80px;
    left: 40px;
}

.circle-2 {
    width: 128px;
    height: 128px;
    background: rgba(249, 228, 183, 0.3);
    top: 160px;
    right: 80px;
    animation-delay: 0.5s;
}

.circle-3 {
    width: 64px;
    height: 64px;
    background: rgba(168, 213, 186, 0.2);
    bottom: 160px;
    left: 25%;
    animation-delay: 1s;
}

.circle-4 {
    width: 96px;
    height: 96px;
    background: rgba(227, 242, 253, 0.2);
    top: 33%;
    right: 33%;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-container {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    order: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(126, 187, 154, 0.1);
    color: var(--primary-green-dark);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero-slogan {
    font-size: 1.25rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: var(--primary-green-dark);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(126, 187, 154, 0.2);
}

.stat-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green-dark);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    order: 1;
    max-width: 400px;
    margin: 0 auto;
}

.hero-blob {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(126, 187, 154, 0.2), rgba(249, 228, 183, 0.3));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-pulse 4s ease-in-out infinite;
}

@keyframes blob-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero-image {
    position: relative;
    z-index: 1;
    padding: 1rem;
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.card-1 {
    bottom: -10px;
    left: -20px;
}

.card-2 {
    top: -10px;
    right: -20px;
    animation-delay: 1s;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-green-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.card-icon.star {
    background: rgba(249, 228, 183, 0.5);
}

.card-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.card-subtitle {
    font-size: 0.8rem;
    color: var(--text-light);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
}

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary-green-dark);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-light);
    font-size: 1rem;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   Why Elflish Section
   ============================================ */
.why-section {
    background: var(--cream);
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.feature-icon.green {
    background: rgba(126, 187, 154, 0.1);
    color: var(--primary-green);
}

.feature-icon.yellow {
    background: rgba(249, 228, 183, 0.5);
    color: #d97706;
}

.feature-icon.blue {
    background: rgba(227, 242, 253, 0.5);
    color: #2563eb;
}

.feature-icon.rose {
    background: rgba(254, 226, 226, 0.5);
    color: #dc2626;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(3deg);
}

.feature-title {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   Programs Section
   ============================================ */
.programs-section {
    background: linear-gradient(to bottom, var(--cream), var(--white));
}

.programs-grid {
    display: grid;
    gap: 2rem;
}

.program-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.program-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
}

.program-tag.rose {
    background: linear-gradient(135deg, #fb7185, #e11d48);
}

.program-tag.amber {
    background: linear-gradient(135deg, #fbbf24, #d97706);
}

.program-tag.green {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
}

.program-tag.blue {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.program-content {
    padding: 1.5rem;
}

.program-age {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.program-title {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 0.25rem 0 0.75rem;
}

.program-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.program-features {
    margin-bottom: 1rem;
}

.program-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.375rem;
}

.check {
    color: var(--primary-green);
    font-weight: 700;
}

.program-highlight {
    padding: 0.75rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.rose-bg {
    background: rgba(254, 226, 226, 0.5);
    color: #991b1b;
}

.amber-bg {
    background: rgba(254, 243, 199, 0.5);
    color: #92400e;
}

.green-bg {
    background: var(--primary-green-pale);
    color: var(--primary-green-dark);
}

.blue-bg {
    background: rgba(219, 234, 254, 0.5);
    color: #1e40af;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary-green-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.program-link:hover {
    color: var(--primary-green);
}

.program-link svg {
    transition: transform 0.3s ease;
}

.program-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   Boutique System Section
   ============================================ */
.boutique-section {
    background: linear-gradient(135deg, var(--primary-green-pale), var(--cream), var(--beige));
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(126, 187, 154, 0.2);
    border-radius: 2px;
}

.timeline-progress {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-green), var(--primary-green-light));
    border-radius: 2px;
    transform-origin: top;
    animation: grow-line 2s ease-out forwards;
}

@keyframes grow-line {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding-left: 0;
}

.timeline-node {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.node-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    color: var(--primary-green);
}

.node-icon svg {
    width: 28px;
    height: 28px;
}

.timeline-content {
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.boutique-message {
    text-align: center;
    margin-top: 3rem;
}

.message-box {
    display: inline-block;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.message-box .highlight {
    color: var(--primary-green);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    background: var(--white);
    overflow: hidden;
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.testimonials-wrapper::before,
.testimonials-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.testimonials-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    animation: marquee 30s linear infinite;
}

.testimonials-wrapper:hover .testimonials-track {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex-shrink: 0;
    width: 350px;
    background: linear-gradient(135deg, var(--cream), var(--white));
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.quote-icon {
    color: rgba(126, 187, 154, 0.3);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-light);
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.stat-box .stat-number {
    font-size: 2.5rem;
    color: var(--primary-green-dark);
}

.stat-box .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    background: linear-gradient(to bottom, var(--white), var(--cream));
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(232, 245, 233, 0.3);
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: rgba(126, 187, 154, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    background: var(--primary-green);
    color: var(--white);
}

.faq-question span {
    flex: 1;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-arrow {
    color: var(--primary-green);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem 4.25rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    margin-top: 2rem;
}

.faq-cta p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background: linear-gradient(135deg, var(--primary-green-pale), var(--cream), var(--beige));
}

.contact-grid {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.form-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #f3f4f6;
    border-radius: var(--radius);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    background: #f9fafb;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: var(--white);
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.form-success.active {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.info-card {
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(126, 187, 154, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: var(--primary-green);
    transition: var(--transition);
}

.info-card:hover .info-icon {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.1);
}

.info-content h4 {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.info-content p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.map-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    filter: grayscale(20%);
}

.whatsapp-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #25D366;
    color: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.whatsapp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.whatsapp-title {
    font-weight: 600;
}

.whatsapp-number {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    position: relative;
    background: var(--primary-green-dark);
    color: var(--white);
    padding-top: 4rem;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 50px;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    padding-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green-dark);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-logo-text {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
}

.footer-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.85rem;
    opacity: 0.6;
    transition: var(--transition);
}

.footer-legal a:hover {
    opacity: 1;
}

/* ============================================
   WhatsApp Button
   ============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

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

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: row;
    }

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

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

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

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }

    .section-title {
        font-size: 2.75rem;
    }

    .hero {
        padding: 7rem 0 5rem;
    }

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

    .hero-content {
        order: 1;
    }

    .hero-image-wrapper {
        order: 2;
        max-width: none;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item {
        padding-left: 0;
    }

    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: 5rem;
        text-align: right;
    }

    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 5rem;
    }

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

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }

    .nav-btn {
        display: inline-flex;
    }

    .hamburger {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

/* ============================================
   Scroll Animations
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Custom Scrollbar
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green);
}

/* Selection */
::selection {
    background: var(--primary-green-light);
    color: var(--primary-green-dark);
}

/* ============================================
   Logo Image Updates
   ============================================ */
.logo-img {
    height: 70px;
    /* Reverted to 70px */
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo-img {
    height: 90px;
    /* Reverted to 90px */
    margin-bottom: 0.5rem;
}

/* Update containers for image-only content */
.logo,
.footer-logo {
    gap: 0;
}