﻿:root {
    --primary: #FF9F43; /* Warm Orange */
    --primary-hover: #F38B22;
    --secondary: #10B981; /* Soft Green */
    --bg-main: #FAFBFC;
    --bg-warm: #FFF9F2;
    --bg-light-green: #F0FDF4;
    --text-dark: #2D3436;
    --text-light: #636E72;
    --white: #FFFFFF;
    --border: rgba(255, 159, 67, 0.2);
    --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.04);
    --shadow-strong: 0 20px 50px rgba(255, 159, 67, 0.15);
    --radius: 24px;
    --font: 'Nunito', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text-dark); background-color: var(--bg-main); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.bg-warm { background-color: var(--bg-warm); }
.bg-light-green { background-color: var(--bg-light-green); }

/* Buttons */
.btn { display: inline-flex; justify-content: center; align-items: center; padding: 14px 30px; border-radius: 50px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; border: none; }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 8px 20px rgba(255, 159, 67, 0.3); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: 0 12px 25px rgba(255, 159, 67, 0.4); }
.btn-large { padding: 18px 40px; font-size: 1.1rem; }
.btn-small { padding: 10px 24px; font-size: 0.9rem; }
.btn-full { width: 100%; }

/* Glassmorphism Panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}
.glass-img { box-shadow: var(--shadow-strong); border: 4px solid var(--white); }

/* Header */
.header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.9); backdrop-filter: blur(15px); border-bottom: 1px solid var(--border); padding: 15px 0; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.4rem; color: var(--primary); }
.nav { display: flex; gap: 30px; }
.nav a { font-weight: 700; color: var(--text-light); transition: color 0.3s; }
.nav a:hover { color: var(--primary); }

/* Hero */
.hero { padding: 80px 0; overflow: hidden; }
.hero-layout { display: flex; align-items: center; gap: 60px; }
.hero-text { flex: 1; }
.hero-text h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; color: var(--text-dark); }
.hero-text p { font-size: 1.2rem; color: var(--text-light); margin-bottom: 30px; }
.hero-img-box { flex: 1; position: relative; }
.hero-img-box::before { content: ''; position: absolute; width: 100%; height: 100%; background: var(--primary); border-radius: 50%; top: -20px; right: -20px; z-index: -1; opacity: 0.1; }

/* Sections */
section { padding: 80px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; }

/* About */
.about-layout { display: flex; align-items: center; gap: 60px; flex-direction: row-reverse; }
.about-text { flex: 1; }
.about-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
.about-text p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 25px; }
.about-img-box { flex: 1; }
.check-list li { position: relative; padding-left: 35px; margin-bottom: 15px; font-size: 1.05rem; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 24px; height: 24px; background: var(--secondary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 14px; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.stat-card { padding: 40px 20px; transition: transform 0.3s; }
.stat-card:hover { transform: translateY(-5px); }
.stat-num { display: block; font-size: 3.5rem; font-weight: 800; color: var(--secondary); margin-bottom: 10px; }
.stat-desc { font-weight: 700; color: var(--text-light); font-size: 1.1rem; }

/* Programs */
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.program-card { overflow: hidden; transition: transform 0.3s; }
.program-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-strong); }
.program-card img { border-radius: var(--radius) var(--radius) 0 0; height: 220px; object-fit: cover; }
.p-content { padding: 30px; }
.p-content h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--primary); }
.p-content p { color: var(--text-light); }

/* FAQ */
.accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.accordion-btn { width: 100%; text-align: left; padding: 25px; background: none; border: none; font-family: var(--font); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.accordion-btn::after { content: '+'; font-size: 1.5rem; color: var(--primary); transition: transform 0.3s; }
.accordion-btn[aria-expanded="true"]::after { transform: rotate(45deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; padding: 0 25px; }
.accordion-content p { padding-bottom: 25px; color: var(--text-light); }

/* Booking Form */
.booking-layout { display: flex; align-items: center; gap: 60px; }
.booking-text { flex: 1; }
.booking-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
.booking-text p { font-size: 1.1rem; color: var(--text-light); }
.booking-form { flex: 1; padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-row { display: flex; gap: 20px; }
.form-row .form-group { flex: 1; }
label { display: block; margin-bottom: 8px; font-weight: 700; font-size: 0.95rem; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"] { width: 100%; padding: 15px 20px; border: 2px solid transparent; border-radius: 12px; font-family: var(--font); font-size: 1rem; background: rgba(0,0,0,0.03); transition: border 0.3s, background 0.3s; }
input:focus { outline: none; border-color: var(--primary); background: var(--white); }
.checkbox-group { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 30px; }
.checkbox-group input { margin-top: 5px; width: 18px; height: 18px; accent-color: var(--primary); }
.checkbox-group label { font-size: 0.85rem; color: var(--text-light); }
.checkbox-group a { color: var(--primary); text-decoration: underline; }
.success-box { text-align: center; padding: 40px 20px; background: var(--bg-light-green); border-radius: 16px; color: #065f46; border: 1px solid #a7f3d0; }
.success-box svg { width: 50px; height: 50px; stroke: var(--secondary); margin-bottom: 15px; }
.hidden { display: none !important; }

/* Footer */
.footer { background: var(--white); padding: 60px 0 20px; border-top: 1px solid rgba(0,0,0,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.f-brand p { color: var(--text-light); margin-top: 15px; font-size: 0.9rem; max-width: 300px; }
.footer h4 { margin-bottom: 20px; font-size: 1.2rem; }
.footer p, .footer ul li a { color: var(--text-light); font-size: 0.95rem; margin-bottom: 10px; display: block; transition: color 0.3s; }
.footer ul li a:hover { color: var(--primary); }
.f-bottom { text-align: center; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 20px; color: var(--text-light); font-size: 0.9rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 9999; background: var(--white); padding: 20px 30px; border-radius: 50px; box-shadow: var(--shadow-strong); display: flex; align-items: center; gap: 20px; width: 90%; max-width: 800px; border: 1px solid rgba(0,0,0,0.05); }
.cookie-banner p { margin: 0; font-size: 0.9rem; flex: 1; color: var(--text-light); }
.cookie-banner a { color: var(--primary); text-decoration: underline; }

/* Legal Pages */
.legal-main { padding: 60px 0; }
.legal-card { background: var(--white); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow-soft); max-width: 850px; margin: 0 auto; }
.legal-card h1 { color: var(--primary); margin-bottom: 30px; font-size: 2.2rem; }
.legal-card h2 { margin: 30px 0 15px; font-size: 1.4rem; }
.legal-card p, .legal-card ul { margin-bottom: 15px; color: var(--text-light); font-size: 1.05rem; }
.legal-card ul { padding-left: 20px; list-style: disc; }

/* Responsive */
@media (max-width: 992px) {
    .hero-layout, .about-layout, .booking-layout { flex-direction: column; text-align: center; gap: 40px; }
    .stats-grid, .programs-grid, .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .check-list li { text-align: left; }
    .f-brand, .f-contact, .f-links { text-align: center; }
    .f-brand p { margin: 15px auto 0; }
}
@media (max-width: 768px) {
    .nav { display: none; }
    .hero-text h1 { font-size: 2.5rem; }
    .cookie-banner { flex-direction: column; border-radius: var(--radius); text-align: center; }
    .form-row { flex-direction: column; gap: 0; }
    .legal-card { padding: 30px 20px; }
}
