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

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--bg-main); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text-dark); }
h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 20px; }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 25px; }
p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 15px; }
.text-highlight { color: var(--primary); }
.text-center { text-align: center; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.bg-warm { background: var(--bg-warm); }
.bg-green { background: var(--bg-green); }
.mt-2 { margin-top: 15px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; border-radius: 50px; font-family: var(--font-heading); font-weight: 700; font-size: 1.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: var(--shadow-strong); }
.btn-large { padding: 16px 36px; font-size: 1.2rem; }
.btn-small { padding: 10px 20px; font-size: 0.95rem; }
.btn-full { width: 100%; }

/* Glass & Shadows */
.soft-shadow { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-soft); transition: transform 0.3s ease; border: 1px solid rgba(0,0,0,0.02); }
.soft-shadow:hover { transform: translateY(-5px); }
.glass-panel { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.5); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.img-glass { border: 6px solid var(--white); box-shadow: var(--shadow-strong); }

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

/* Layout Sections */
section { padding: 80px 0; }
.hero-grid, .about-grid, .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* Cards Grid */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.card { overflow: hidden; }
.card img { border-radius: var(--radius) var(--radius) 0 0; height: 220px; object-fit: cover; width: 100%; }
.card-body { padding: 30px; }
.card-body 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-num { display: block; font-family: var(--font-heading); font-size: 3.5rem; font-weight: 700; color: var(--secondary); margin-bottom: 10px; }
.stat-label { font-size: 1.1rem; font-weight: 600; color: var(--text-dark); }

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

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

/* Form */
.form-container { padding: 40px; }
.form-group { margin-bottom: 20px; }
.input-row { display: flex; gap: 20px; }
.input-row .form-group { flex: 1; }
label { display: block; margin-bottom: 8px; font-weight: 700; font-size: 0.95rem; color: var(--text-dark); }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"] { width: 100%; padding: 15px 20px; border: 2px solid transparent; border-radius: 12px; background: #F3F4F6; font-family: var(--font-body); 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(255, 159, 67, 0.1); }
.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-green); border-radius: 16px; border: 1px solid #A7F3D0; }
.hidden { display: none !important; }

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

/* Legal Pages */
.legal-main { padding: 60px 0; }
.legal-card { background: var(--white); padding: 60px; 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: 35px 0 15px; font-size: 1.4rem; color: var(--text-dark); }
.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; }

/* 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); border: 1px solid #eee; width: 90%; max-width: 800px; }
.cookie-content { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.cookie-content p { margin: 0; font-size: 0.9rem; flex: 1; }
.cookie-content a { color: var(--primary); text-decoration: underline; }

/* Media Queries */
@media (max-width: 992px) {
    .hero-grid, .about-grid, .form-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-grid { text-align: left; }
    .cards-grid, .stats-flex, .footer-grid { grid-template-columns: 1fr; gap: 20px; flex-direction: column; }
    .bullet-list li { text-align: left; }
}
@media (max-width: 768px) {
    .nav { display: none; }
    .input-row { flex-direction: column; gap: 0; }
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-banner { border-radius: var(--radius); }
    .legal-card { padding: 30px 20px; }
}
