/* ============================================
   CSS Variables
   ============================================ */
:root {
    --orange:        #F5A623;
    --orange-dark:   #E09520;
    --orange-light:  #FFD089;
    --peach:         #FFECD2;
    --peach-mid:     #FCB69F;
    --cream:         #FFF9F2;
    --white:         #FFFFFF;
    --teal:          #4ECDC4;
    --purple:        #A78BFA;
    --pink:          #F472B6;
    --green:         #6EE7B7;
    --text-dark:     #1E1B18;
    --text-mid:      #4B4540;
    --text-light:    #7A716B;
    --shadow-sm:     0 2px 12px rgba(0,0,0,0.06);
    --shadow-md:     0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg:     0 20px 60px rgba(0,0,0,0.14);
    --shadow-orange: 0 8px 32px rgba(245,166,35,0.30);
    --r-sm:  12px;
    --r-md:  20px;
    --r-lg:  32px;
    --r-xl:  48px;
    --ease:  all 0.35s cubic-bezier(.4,0,.2,1);
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.25;
}
a { text-decoration: none; color: inherit; transition: var(--ease); }
img { max-width:100%; height:auto; display:block; }

/* ============================================
   Shared Utilities
   ============================================ */
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--peach-mid));
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0.85rem 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(245,166,35,0.12);
    transition: var(--ease);
}
.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.nav-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
}
.logo-sun { flex-shrink: 0; }
.logo-text { line-height: 1.2; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}
.nav-links a {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-mid);
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
}
.nav-links a:hover {
    color: var(--orange);
    background: rgba(245,166,35,0.08);
}
.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--text-dark);
    color: var(--white);
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(30,27,24,0.2);
}
.nav-phone:hover {
    background: var(--orange);
    box-shadow: var(--shadow-orange);
    color: var(--white);
}
.nav-phone svg { flex-shrink: 0; }
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.mobile-menu-btn span {
    width: 24px; height: 2.5px;
    background: var(--text-dark);
    border-radius: 4px;
    transition: var(--ease);
}

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 9rem 5rem 6rem;
    overflow: hidden;
    background: #1a0a00;
}

/* Real photo overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url('https://images.unsplash.com/photo-1587654780291-39c9404d746b?w=1600&q=80&fit=crop')
        center/cover no-repeat;
    opacity: 0.28;
    z-index: 0;
}

/* Gradient overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        rgba(26,10,0,0.85) 0%,
        rgba(245,166,35,0.55) 55%,
        rgba(252,182,159,0.30) 100%
    );
    z-index: 1;
}

/* Floating decorative blobs */
.hero-blob1, .hero-blob2, .hero-blob3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    z-index: 2;
    pointer-events: none;
    animation: blobFloat 8s ease-in-out infinite alternate;
}
.hero-blob1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, #F5A623, #FCB69F);
    top: -120px; right: -80px;
    animation-delay: 0s;
}
.hero-blob2 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, #4ECDC4, #A78BFA);
    bottom: 60px; right: 200px;
    animation-delay: 3s;
}
.hero-blob3 {
    width: 220px; height: 220px;
    background: radial-gradient(circle, #F472B6, #FFD089);
    top: 30%; left: 45%;
    animation-delay: 5s;
}
@keyframes blobFloat {
    from { transform: translateY(0) scale(1); }
    to   { transform: translateY(-30px) scale(1.06); }
}

/* Floating dots grid */
.hero-dots {
    position: absolute;
    top: 0; right: 0;
    width: 45%; height: 100%;
    z-index: 2;
    pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,0.18) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 70% 80% at 70% 50%, black 40%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 620px;
    animation: heroFadeUp 1.1s cubic-bezier(.4,0,.2,1) both;
}
@keyframes heroFadeUp {
    from { opacity:0; transform:translateY(40px); }
    to   { opacity:1; transform:translateY(0); }
}

.hero-welcome {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(8px);
}
.hero-welcome::before {
    content: '✦';
    color: var(--orange-light);
}

.hero h1 {
    font-size: 4.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.6rem;
    text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.hero h1 span {
    background: linear-gradient(135deg, var(--orange-light), var(--peach-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-company {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    font-family: 'Inter', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.9rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--ease);
    border: none;
    position: relative;
    overflow: hidden;
}
.btn-outline {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--text-dark);
    border-color: var(--white);
}
.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(245,166,35,0.45);
}
.btn-full { width: 100%; }

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--ease);
}
.hero-phone:hover { color: var(--orange-light); }

.hero-tagline {
    position: absolute;
    bottom: 2.5rem;
    left: 5rem;
    right: 5rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--r-md);
    backdrop-filter: blur(12px);
    max-width: 600px;
}
.hero-tagline p {
    color: rgba(255,255,255,0.80);
    font-size: 0.88rem;
    line-height: 1.55;
}
.hero-tagline::before {
    content: '🌞';
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Wave divider */
.wave-divider {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: -2px;
}
.wave-divider svg { display:block; width:100%; }

/* ============================================
   Welcome Section
   ============================================ */
.welcome {
    padding: 6rem 5rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.welcome::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(245,166,35,0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.welcome-text h2 {
    font-size: 2.3rem;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-weight: 600;
}
.welcome-text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.welcome-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}
.stat {
    text-align: center;
}
.stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}
.stat span {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 0.2rem;
    display: block;
}
.welcome-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.welcome-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-mid);
    font-weight: 600;
    font-size: 0.9rem;
}
.welcome-phone:hover { color: var(--orange); }

/* Image with decorative frame */
.welcome-image {
    position: relative;
}
.welcome-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}
.welcome-image::before {
    content: '';
    position: absolute;
    top: -16px; left: -16px;
    right: 16px; bottom: 16px;
    border: 3px solid var(--orange-light);
    border-radius: var(--r-lg);
    z-index: 0;
}
.welcome-image::after {
    content: '';
    position: absolute;
    bottom: -16px; right: -16px;
    width: 140px; height: 140px;
    background: linear-gradient(135deg, var(--orange), var(--peach-mid));
    border-radius: var(--r-md);
    z-index: 0;
    opacity: 0.5;
}
.welcome-badge {
    position: absolute;
    bottom: 28px;
    left: -24px;
    z-index: 2;
    background: var(--white);
    border-radius: var(--r-md);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.welcome-badge .badge-icon { font-size: 2rem; }
.welcome-badge strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.welcome-badge span {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ============================================
   Why Us Section
   ============================================ */
.why-us {
    padding: 6rem 5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #1a0a00 0%, #2d1a08 40%, #3d2510 100%);
}
.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url('https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?w=1400&q=60&fit=crop')
        center/cover no-repeat;
    opacity: 0.08;
}
.why-us-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.25;
}
.why-us-blob1 {
    width: 400px; height: 400px;
    background: var(--orange);
    top: -100px; left: -100px;
}
.why-us-blob2 {
    width: 350px; height: 350px;
    background: var(--teal);
    bottom: -80px; right: -80px;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}
.why-us h2 {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.why-us .section-sub {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    margin-bottom: 3.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.feature-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--ease);
    backdrop-filter: blur(10px);
}
.feature-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-8px);
    border-color: rgba(245,166,35,0.4);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.feature-icon {
    width: 80px; height: 80px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.feature-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: 6rem 5rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.testimonials::before {
    content: '';
    position: absolute;
    bottom: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(78,205,196,0.08), transparent 70%);
    border-radius: 50%;
}
.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}
.testimonials h2 {
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.testimonials .section-sub {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 3rem;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(245,166,35,0.1);
    position: relative;
    transition: var(--ease);
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange-light);
}
.quote-mark {
    position: absolute;
    top: 1rem; right: 1.25rem;
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--orange);
    opacity: 0.15;
    line-height: 1;
}
.testimonial-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.stars {
    color: #F59E0B;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.author-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 700;
}
.author-info span {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ============================================
   Programs Section
   ============================================ */
.programs {
    padding: 6rem 5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF4E6 0%, #FFE8CC 50%, #FFF4E6 100%);
}
.programs::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--peach-mid), var(--teal), var(--purple));
}
.programs-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}
.programs h2 {
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.programs .section-sub {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 3rem;
}
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
}
.program-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
    transition: var(--ease);
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
}
.program-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--card-gradient, linear-gradient(135deg, var(--orange), var(--peach-mid)));
}
.program-card:nth-child(1) { --card-gradient: linear-gradient(135deg, #F5A623, #FCB69F); }
.program-card:nth-child(2) { --card-gradient: linear-gradient(135deg, #4ECDC4, #44A08D); }
.program-card:nth-child(3) { --card-gradient: linear-gradient(135deg, #A78BFA, #7C3AED); }
.program-card:nth-child(4) { --card-gradient: linear-gradient(135deg, #F472B6, #DB2777); }
.program-card:nth-child(5) { --card-gradient: linear-gradient(135deg, #6EE7B7, #059669); }
.program-card:nth-child(6) { --card-gradient: linear-gradient(135deg, #60A5FA, #2563EB); }

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange-light);
}
.program-icon {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    display: block;
}
.program-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}
.program-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 6rem 5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #1a0a00 0%, #2d1a08 60%, #1a0a00 100%);
}
.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(245,166,35,0.12) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.contact-blob1 {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(245,166,35,0.18), transparent 70%);
    border-radius: 50%;
    top: -150px; right: -150px;
    pointer-events: none;
}
.contact-blob2 {
    position: absolute;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(78,205,196,0.12), transparent 70%);
    border-radius: 50%;
    bottom: -100px; left: -100px;
    pointer-events: none;
}
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}
.contact-info h2 {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 1rem;
}
.contact-info > p {
    color: rgba(255,255,255,0.65);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.7;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-sm);
    transition: var(--ease);
}
.contact-item:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(245,166,35,0.3);
}
.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 0.25rem;
}
.contact-item p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}
.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
}
.form-title {
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
    color: var(--text-dark);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 1.5px solid #EEE8E0;
    border-radius: var(--r-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: #FDFAF6;
    transition: var(--ease);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0A89E; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(245,166,35,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #120800;
    color: var(--white);
    padding: 4rem 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--peach-mid), var(--teal), var(--purple), var(--orange));
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.75fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand .llc-name {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange-light);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
}
.social-btn {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items:center; justify-content:center;
    font-size: 1rem;
    transition: var(--ease);
}
.social-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange-light);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 1.25rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.footer-links a::before { content: '→'; opacity: 0; transition: var(--ease); }
.footer-links a:hover { color: var(--orange-light); }
.footer-links a:hover::before { opacity: 1; }

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links a {
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
    transition: var(--ease);
}
.footer-bottom-links a:hover { color: var(--orange-light); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1100px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero, .welcome, .why-us, .testimonials, .programs, .contact, .footer {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    .hero h1 { font-size: 3rem; }
    .hero-tagline { left: 2.5rem; right: 2.5rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
    .welcome-container { grid-template-columns: 1fr; gap: 3rem; }
    .welcome-image { order: -1; }
    .welcome-image::before, .welcome-image::after { display: none; }
    .welcome-badge { left: 0; }
    .contact-container { grid-template-columns: 1fr; }
    .programs-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 2.4rem; }
    .hero-tagline { position: relative; bottom:auto; left:auto; right:auto; margin-top: 2rem; }
    .welcome-stats { gap: 1rem; }
    .form-row { grid-template-columns: 1fr; }
    .lpg-grid { grid-template-columns: repeat(2, 1fr); }
    .activities-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--wide { grid-column: span 1; }
    .lpg-header { flex-direction: column; align-items: flex-start; }
    .learn-play-grow, .activities, .gallery {
        padding-left: 2rem; padding-right: 2rem;
    }
}
@media (max-width: 560px) {
    .hero, .welcome, .why-us, .testimonials, .programs, .contact, .footer,
    .learn-play-grow, .activities, .gallery {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .hero { padding-top: 6rem; }
    .hero h1 { font-size: 2rem; }
    .features-grid, .testimonials-grid, .programs-grid,
    .lpg-grid, .activities-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-social, .footer-bottom { justify-content: center; }
    .footer-bottom-links { display: none; }
    .nav-phone { display: none; }
    h2 { font-size: 1.75rem !important; }
}

/* ============================================
   Provider Card (About section)
   ============================================ */
.provider-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, #FFF4E6, #FFECD2);
    border: 2px solid var(--orange-light);
    border-radius: var(--r-md);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}
.provider-icon { font-size: 2.5rem; flex-shrink: 0; line-height: 1; }
.provider-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}
.provider-details > p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}
.provider-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.provider-tags span {
    background: var(--white);
    border: 1px solid rgba(245,166,35,0.3);
    border-radius: 50px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-mid);
}

/* ============================================
   Hero Badges
   ============================================ */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.75rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

/* ============================================
   Learn Play Grow Section
   ============================================ */
.learn-play-grow {
    padding: 5rem 5rem;
    background: #F5F0E8;
    position: relative;
    overflow: hidden;
}
.learn-play-grow::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245,166,35,0.12), transparent 70%);
    border-radius: 50%;
}
.lpg-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.lpg-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.lpg-header h2 { font-size: 2.4rem; color: var(--text-dark); }
.lpg-header p {
    max-width: 380px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.65;
}
.lpg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.lpg-card {
    text-align: center;
}
.lpg-img-wrap {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.25rem;
    border: 4px solid var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: var(--ease);
}
.lpg-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--ease);
}
.lpg-card:hover .lpg-img-wrap {
    border-color: var(--orange-light);
    transform: scale(1.05);
}
.lpg-card:hover .lpg-img-wrap img { transform: scale(1.08); }
.lpg-card h3 {
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.lpg-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   Activities Section
   ============================================ */
.activities {
    padding: 6rem 5rem;
    background: var(--cream);
    text-align: center;
}
.activities-container {
    max-width: 1200px;
    margin: 0 auto;
}
.activities h2 { font-size: 2.4rem; color: var(--text-dark); margin-bottom: 0.75rem; }
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}
.activity-card {
    background: var(--white);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--ease);
}
.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.activity-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.activity-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--ease);
    border-radius: var(--r-md) var(--r-md) 0 0;
}
.activity-card:hover .activity-img img { transform: scale(1.06); }
.activity-overlay {
    position: absolute;
    bottom: 1rem; right: 1rem;
    width: 48px; height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.activity-body { padding: 1.5rem; }
.activity-body h3 {
    font-size: 1.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}
.activity-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
    padding: 6rem 5rem;
    background: #1E1B18;
    text-align: center;
}
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}
.gallery h2 { font-size: 2.4rem; color: var(--white); margin-bottom: 0.75rem; }
.gallery .section-sub { color: rgba(255,255,255,0.6); margin-bottom: 3rem; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item--wide {
    grid-column: span 2;
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--ease);
    display: block;
}
.gallery-item--wide img { height: 340px; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1rem 1.25rem 0.85rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    transform: translateY(100%);
    transition: var(--ease);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ============================================
   Mobile Nav Dropdown
   ============================================ */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(18px);
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(245,166,35,0.12);
    box-shadow: var(--shadow-md);
    gap: 0.25rem;
    z-index: 999;
}
.nav-links.active li a { padding: 0.75rem 1rem; display: block; border-radius: 10px; }
