﻿:root {
    --primary-color: #FF9F1C; /* Warm Orange */
    --primary-hover: #F08D0A;
    --secondary-color: #2EC4B6; /* Soft Teal/Green */
    --bg-main: #FDFFFC; /* Creamy White */
    --bg-light: #F4F7F6;
    --text-dark: #2B2D42;
    --text-light: #8D99AE;
    --card-bg: rgba(255, 255, 255, 0.85);
    --border-color: rgba(46, 196, 182, 0.15);
    
    --shadow-soft: 0 15px 35px rgba(43, 45, 66, 0.05);
    --shadow-strong: 0 20px 40px rgba(255, 159, 28, 0.15);
    --radius: 20px;
}

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

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.bg-light { background-color: var(--bg-light); }
.text-center { text-align: center; }

/* Typography */
h1, h2, h3, h4 { color: var(--text-dark); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 20px; }
h1 span { color: var(--primary-color); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 20px; }
.section-title { margin-bottom: 50px; }
p { color: var(--text-light); font-size: 1.1rem; margin-bottom: 15px; font-weight: 500; }

/* Buttons */
.btn { display: inline-block; font-family: 'Quicksand', sans-serif; font-weight: 700; text-align: center; border: none; border-radius: 50px; cursor: pointer; transition: all 0.3s ease; }
.btn-primary { background-color: var(--primary-color); color: #fff; padding: 14px 30px; font-size: 1.1rem; box-shadow: 0 8px 20px rgba(255, 159, 28, 0.3); }
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-3px); box-shadow: 0 12px 25px rgba(255, 159, 28, 0.4); }
.btn-large { padding: 16px 35px; font-size: 1.2rem; }
.btn-full { width: 100%; }
.btn-small { padding: 10px 20px; font-size: 1rem; }

/* Glassmorphism Classes */
.glass-card { background: var(--card-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--border-color); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.glass-shadow { box-shadow: var(--shadow-strong); }
.img-rounded { border-radius: var(--radius); }

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

/* Hero */
.hero { padding: 80px 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content p { margin-bottom: 30px; font-size: 1.2rem; }

/* Stats */
.stats-section { margin-top: -50px; position: relative; z-index: 10; margin-bottom: 50px; }
.stats-wrapper { display: flex; justify-content: space-around; padding: 40px; }
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 3rem; font-weight: 700; color: var(--secondary-color); }
.stat-text { font-weight: 600; color: var(--text-light); }

/* Programs */
.programs-section { padding: 80px 0; }
.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); }
.program-card img { width: 100%; height: 220px; object-fit: cover; border-bottom: 1px solid var(--border-color); }
.card-content { padding: 30px; }
.card-content h3 { margin-bottom: 15px; color: var(--secondary-color); }

/* Form / Booking */
.booking-section { padding: 100px 0; }
.booking-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.booking-form-wrapper { 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: 600; color: var(--text-dark); }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"] { width: 100%; padding: 15px; border: 2px solid transparent; background: #F4F7F6; border-radius: 12px; font-family: inherit; font-size: 1rem; color: var(--text-dark); transition: all 0.3s; }
input:focus { outline: none; border-color: var(--secondary-color); background: #fff; box-shadow: 0 0 0 4px rgba(46, 196, 182, 0.1); }
.checkbox-group { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 25px; }
.checkbox-group input { margin-top: 5px; accent-color: var(--secondary-color); width: 18px; height: 18px; }
.checkbox-group label { font-size: 0.9rem; font-weight: 500; }
.checkbox-group a { color: var(--primary-color); text-decoration: underline; }
.success-message { text-align: center; padding: 30px; background: #E6F9F7; border-radius: 15px; border: 1px solid var(--secondary-color); color: #1E8278; }
.success-icon { stroke: var(--secondary-color); margin-bottom: 15px; }
.hidden { display: none !important; }

/* About */
.about-section { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.benefits-list { margin-top: 25px; }
.benefits-list li { position: relative; padding-left: 30px; margin-bottom: 15px; font-weight: 500; color: var(--text-light); }
.benefits-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: #fff; background: var(--primary-color); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.benefits-list strong { color: var(--text-dark); }

/* FAQ */
.faq-section { padding: 100px 0; }
.accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.accordion-item { overflow: hidden; }
.accordion-btn { width: 100%; text-align: left; padding: 25px; background: none; border: none; font-family: inherit; 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-color); transition: transform 0.3s; }
.accordion-btn[aria-expanded="true"]::after { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; padding: 0 25px; }
.accordion-panel p { margin-bottom: 25px; }

/* Footer */
.footer { background: #fff; padding: 60px 0 30px; border-top: 1px solid var(--border-color); }
.footer-layout { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { margin-top: 15px; font-size: 0.9rem; }
.footer h4 { margin-bottom: 20px; color: var(--secondary-color); }
.footer address { font-style: normal; color: var(--text-light); font-weight: 500; line-height: 1.8; }
.footer nav a { display: block; color: var(--text-light); margin-bottom: 10px; font-weight: 500; transition: color 0.3s; }
.footer nav a:hover { color: var(--primary-color); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid #eee; font-size: 0.9rem; color: var(--text-light); }

/* Legal Pages */
.legal-main { padding: 60px 0; }
.legal-card { background: #fff; padding: 60px; border-radius: var(--radius); box-shadow: var(--shadow-soft); max-width: 900px; margin: 0 auto; }
.legal-card h1 { color: var(--secondary-color); margin-bottom: 30px; }
.legal-card h2 { margin: 40px 0 20px; font-size: 1.4rem; color: var(--primary-color); }
.legal-card ul { padding-left: 20px; list-style: disc; margin-bottom: 15px; color: var(--text-light); }
.legal-card a { color: var(--primary-color); text-decoration: underline; }

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

/* Responsive */
@media (max-width: 992px) {
    .hero-grid, .booking-container, .about-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-grid { text-align: left; }
    .stats-wrapper { flex-direction: column; gap: 30px; }
    .programs-grid { grid-template-columns: 1fr; }
    .footer-layout { grid-template-columns: 1fr; text-align: center; }
    .benefits-list li { text-align: left; }
}
@media (max-width: 768px) {
    .main-nav { display: none; }
    .form-row { flex-direction: column; gap: 0; }
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-banner { border-radius: var(--radius); }
    .legal-card { padding: 30px; }
}
