﻿:root {
    --primary: #F97316; /* Warm Orange */
    --primary-hover: #EA580C;
    --secondary: #38BDF8; /* Soft Blue */
    --text-dark: #334155;
    --text-light: #64748B;
    --bg-main: #FAFAF9; /* Warm White */
    --bg-soft-blue: #F0F9FF;
    --bg-warm-orange: #FFF7ED;
    --white: #FFFFFF;
    
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-colored: 0 15px 40px rgba(249, 115, 22, 0.2);
    --radius: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', 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; }
h1, h2, h3, h4 { font-family: 'Quicksand', sans-serif; color: var(--text-dark); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); margin-bottom: 20px; }
h1 span { color: var(--primary); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 20px; }
p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 15px; }
.text-center { text-align: center; }
.section-title { margin-bottom: 50px; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }
.bg-soft-blue { background-color: var(--bg-soft-blue); }
.bg-warm-orange { background-color: var(--bg-warm-orange); }

/* Buttons */
.btn { display: inline-flex; justify-content: center; align-items: center; border: none; border-radius: 50px; font-family: 'Quicksand', sans-serif; font-weight: 700; cursor: pointer; transition: all 0.3s ease; }
.btn-primary { background: var(--primary); color: var(--white); padding: 14px 30px; font-size: 1.1rem; box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: var(--shadow-colored); }
.btn-large { padding: 16px 35px; font-size: 1.2rem; }
.btn-small { padding: 10px 20px; font-size: 1rem; }
.btn-full { width: 100%; }

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

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

/* Grids */
.hero-grid, .about-grid, .booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* Lists */
.check-list { margin-top: 25px; }
.check-list li { position: relative; padding-left: 35px; margin-bottom: 15px; font-size: 1.1rem; color: var(--text-light); }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 2px; width: 24px; height: 24px; background: var(--secondary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.check-list strong { color: var(--text-dark); }

/* Programs Cards */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card { overflow: hidden; transition: transform 0.3s ease; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-colored); }
.card img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; }
.card-content { padding: 30px; }
.card-content h3 { color: var(--secondary); margin-bottom: 15px; font-size: 1.3rem; }

/* Stats */
.stats-flex { display: flex; justify-content: space-between; gap: 30px; text-align: center; }
.stat-box { flex: 1; padding: 40px 20px; }
.stat-number { display: block; font-family: 'Quicksand', sans-serif; font-size: 3.5rem; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 10px; }
.stat-text { font-weight: 700; font-size: 1.1rem; }

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

/* Form */
.booking-form { 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; border: 2px solid transparent; background: #F1F5F9; border-radius: 12px; font-family: 'Nunito', sans-serif; font-size: 1rem; color: var(--text-dark); transition: all 0.3s; }
input:focus { outline: none; border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1); }
.checkbox-group { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 25px; }
.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-message { text-align: center; padding: 30px; background: #ECFDF5; border-radius: 15px; border: 1px solid #6EE7B7; color: #064E3B; }
.success-message svg { width: 48px; height: 48px; stroke: #10B981; margin-bottom: 15px; }
.hidden { display: none !important; }

/* Footer */
.footer { background: var(--white); padding: 60px 0 20px; border-top: 1px solid #F1F5F9; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { margin-bottom: 20px; font-size: 1.2rem; }
.footer address { font-style: normal; color: var(--text-light); line-height: 1.8; }
.footer ul li a { display: block; color: var(--text-light); margin-bottom: 10px; transition: color 0.3s; }
.footer ul li a:hover { color: var(--primary); }
.f-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #F1F5F9; font-size: 0.9rem; color: var(--text-light); }

/* Legal Pages */
.legal-main { padding: 60px 0; }
.legal-card { max-width: 900px; margin: 0 auto; padding: 60px; }
.legal-card h1 { color: var(--primary); margin-bottom: 30px; font-size: 2.2rem; }
.legal-card h2 { margin: 30px 0 15px; font-size: 1.4rem; color: var(--text-dark); }
.legal-card ul { padding-left: 20px; list-style: disc; margin-bottom: 15px; color: var(--text-light); }

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

/* Responsive */
@media (max-width: 992px) {
    .hero-grid, .about-grid, .booking-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-text, .about-text, .booking-info { text-align: center; }
    .cards-grid { grid-template-columns: 1fr; }
    .check-list li { text-align: left; }
    .stats-flex { flex-direction: column; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 768px) {
    .nav { display: none; }
    .form-row { flex-direction: column; gap: 0; }
    .cb-inner { flex-direction: column; border-radius: var(--radius); text-align: center; }
    .legal-card { padding: 30px; }
}
