:root {
    --primary: #1e40af; /* Royal Blue */
    --secondary: #3b82f6; /* Lighter Blue */
    --dark: #0f172a; /* Slate 900 */
    --light: #f3f4f6; /* Gray 100 */
    --white: #ffffff;
    --text: #334155; /* Slate 700 */
    --text-light: #94a3b8;
    --accent: #f59e0b; /* Amber 500 */
    --font-main: 'Roboto', sans-serif;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text); background: var(--white); line-height: 1.6; }

/* LAYOUT UTILS */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--light); }
.bg-dark { background-color: var(--dark); }
.text-white { color: var(--white); }
.text-gray { color: var(--text-light); }
.mb-4 { margin-bottom: 1.5rem; }

/* BUTTONS */
.btn { display: inline-block; padding: 12px 24px; background: var(--primary); color: var(--white); text-decoration: none; border-radius: var(--radius); transition: 0.3s; border: none; cursor: pointer; font-weight: 500; font-size: 1rem; }
.btn:hover { background: var(--secondary); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 16px 32px; font-size: 1.1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.9rem; }
.btn-full { width: 100%; text-align: center; }
.btn-outline { background: transparent; border: 1px solid var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); color: var(--white); transform: translateY(0); }

/* HEADER */
.header { position: fixed; top: 0; left: 0; width: 100%; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); z-index: 1000; box-shadow: var(--shadow); padding: 15px 0; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; text-decoration: none; color: var(--dark); font-weight: 700; font-size: 1.5rem; gap: 10px; }
.logo-text { color: var(--primary); }
.desktop-nav a { margin-left: 25px; text-decoration: none; color: var(--text); font-weight: 500; transition: 0.3s; }
.desktop-nav a:hover { color: var(--primary); }
.desktop-nav .btn-nav { padding: 8px 20px; color: var(--white) !important; background: var(--primary); border-radius: var(--radius); }
.desktop-nav .btn-nav:hover { background: var(--secondary); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; }
.mobile-toggle span { display: block; width: 25px; height: 3px; background: var(--dark); transition: 0.3s; }
.mobile-menu { position: fixed; top: 70px; left: 0; width: 100%; background: var(--white); padding: 20px; box-shadow: var(--shadow); display: none; flex-direction: column; gap: 15px; border-top: 1px solid var(--light); }
.mobile-menu.active { display: flex; }
.mobile-link { text-decoration: none; color: var(--text); font-size: 1.1rem; font-weight: 500; padding: 10px; border-bottom: 1px solid var(--light); }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 64, 175, 0.7) 100%); z-index: -1; }
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.2; }
.hero-sub { font-size: 1.25rem; margin-bottom: 2.5rem; opacity: 0.9; }

/* GRID & CARDS */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.card { background: var(--white); border: 1px solid #e2e8f0; border-radius: var(--radius); overflow: hidden; transition: 0.3s; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--secondary); }
.card-img { height: 220px; width: 100%; object-fit: cover; border-bottom: 1px solid var(--light); }
.card-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.badge { display: inline-block; background: var(--light); color: var(--primary); padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 15px; width: fit-content; }
.card h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
.card p { font-size: 0.95rem; color: var(--text); margin-bottom: 20px; flex-grow: 1; }
.read-more { font-weight: 500; color: var(--primary); text-decoration: none; transition: 0.2s; }
.read-more:hover { color: var(--secondary); letter-spacing: 0.5px; }

/* SECTIONS GENERAL */
.section-title { font-size: 2.5rem; color: var(--dark); margin-bottom: 1rem; text-align: center; font-weight: 700; }
.section-subtitle { text-align: center; color: var(--text); max-width: 600px; margin: 0 auto 3rem; font-size: 1.1rem; }

/* ABOUT */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-text p { margin-bottom: 1.5rem; font-size: 1.05rem; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 2rem; }
.stat-item { text-align: center; padding: 15px; background: var(--light); border-radius: var(--radius); }
.stat-number { display: block; font-size: 1.8rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 0.9rem; color: var(--text); }
.rounded-img { border-radius: var(--radius); width: 100%; height: auto; }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.form-box { background: rgba(255, 255, 255, 0.05); padding: 30px; border-radius: var(--radius); border: 1px solid rgba(255, 255, 255, 0.1); }
.form-box h3 { color: var(--white); margin-bottom: 1rem; }
.small-text { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.5rem; }
.modern-form .form-group { margin-bottom: 15px; }
.modern-form input, .modern-form textarea { width: 100%; padding: 12px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: var(--radius); color: var(--white); font-family: var(--font-main); transition: 0.3s; }
.modern-form input:focus, .modern-form textarea:focus { outline: none; border-color: var(--secondary); background: rgba(255, 255, 255, 0.15); }
.modern-form textarea { resize: vertical; }
.form-check { display: flex; align-items: start; gap: 10px; margin-bottom: 20px; font-size: 0.85rem; color: var(--text-light); }
.info-card { margin-bottom: 30px; }
.info-card h4 { color: var(--white); font-size: 1.5rem; margin-bottom: 1rem; }
.info-card p { color: var(--text-light); margin-bottom: 1rem; }
.text-link { color: var(--secondary); text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.map-container { border-radius: var(--radius); overflow: hidden; height: 400px; box-shadow: var(--shadow); }

/* FOOTER */
.footer { background: #0b1120; color: var(--text-light); padding: 60px 0 30px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.footer-brand { flex: 1; min-width: 250px; }
.footer-logo-text { font-size: 1.5rem; font-weight: 700; color: var(--white); display: block; margin-bottom: 15px; }
.footer-links { flex: 1; min-width: 200px; }
.footer-links h4 { color: var(--white); margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-light); text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--secondary); }
.footer-social { display: flex; gap: 15px; align-items: flex-start; }
.footer-social a { color: var(--text-light); transition: 0.3s; }
.footer-social a:hover { color: var(--white); }

/* COOKIE BANNER */
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--white); padding: 20px; box-shadow: 0 -5px 20px rgba(0,0,0,0.1); z-index: 2000; transform: translateY(100%); transition: transform 0.5s ease-out; border-top: 3px solid var(--primary); }
.cookie-banner.show { transform: translateY(0); }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.cookie-content p { font-size: 0.9rem; color: var(--text); flex: 1; min-width: 300px; }
.cookie-buttons { display: flex; gap: 10px; align-items: center; }
.cookie-buttons .btn-outline { color: var(--primary); border-color: var(--primary); }
.cookie-buttons .btn-outline:hover { background: var(--primary); color: var(--white); }
.link-sm { font-size: 0.85rem; color: var(--text-light); text-decoration: underline; margin-left: 10px; }

/* SUCCESS PAGE */
.success-circle { stroke-dasharray: 283; stroke-dashoffset: 283; animation: drawCircle 1s ease-out forwards; }
.success-checkmark { stroke-dasharray: 70; stroke-dashoffset: 70; animation: drawCheck 0.5s ease-out 0.8s forwards; }
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }

/* RESPONSIVE */
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero h1 { font-size: 2.2rem; }
    .about-layout { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; }
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-buttons { justify-content: center; width: 100%; }
}