﻿:root {
    --primary: #0B2A22; /* Deep Green */
    --accent: #D4AF37; /* Gold */
    --bg-light: #F4F1EA; /* Sand */
    --text-main: #1A1A1A;
    --text-light: #F9F9F9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Syne', sans-serif; font-weight: 700; }

a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
header {
    background: rgba(11, 42, 34, 0.98);
    color: var(--text-light);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.logo-container { display: flex; align-items: center; gap: 10px; font-family: 'Syne'; font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.logo-container img { width: 40px; height: 40px; }

nav ul { display: flex; list-style: none; gap: 2rem; }
nav ul li a:hover { color: var(--accent); }

/* Hero Section with Blob */
.hero {
    position: relative;
    padding: 10rem 5% 8rem;
    background: var(--primary);
    color: var(--text-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.blob-bg {
    position: absolute;
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    background: linear-gradient(135deg, var(--accent) 0%, rgba(212, 175, 55, 0.2) 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(50px);
    animation: morph 15s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: rotate(0deg) scale(1); }
    100% { border-radius: 60% 40% 30% 70% / 60% 50% 40% 50%; transform: rotate(15deg) scale(1.1); }
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero h1 { font-size: 5rem; line-height: 1.1; margin-bottom: 1.5rem; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.25rem; margin-bottom: 2rem; opacity: 0.9; max-width: 600px; }

.btn-main {
    display: inline-block;
    background: var(--accent); color: var(--primary);
    padding: 1rem 2.5rem; font-size: 1.1rem; font-weight: 700;
    border-radius: 50px; border: none; cursor: pointer;
}
.btn-main:hover { background: #E5C354; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3); }

/* Random Section: Impact Stats */
.impact-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; padding: 4rem 5%; background: #E8E5DF;
}
.stat-card { text-align: center; padding: 2rem; background: var(--text-light); border-radius: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.stat-card i { font-size: 3rem; color: var(--accent); margin-bottom: 1rem; }
.stat-card h3 { font-size: 3rem; color: var(--primary); margin-bottom: 0.5rem; }
.stat-card p { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* Lead Form Section */
.lead-section { padding: 6rem 5%; background: var(--bg-light); display: flex; justify-content: center; }
.form-wrapper {
    background: var(--text-light); width: 100%; max-width: 700px;
    padding: 4rem; border-radius: 30px;
    box-shadow: 0 20px 40px rgba(11, 42, 34, 0.1);
    border-top: 8px solid var(--accent);
}
.form-wrapper h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; text-align: center; }
.form-wrapper p.desc { text-align: center; margin-bottom: 2rem; color: #555; }

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: var(--primary); }
.form-group input {
    width: 100%; padding: 1rem; border: 1px solid #ddd; border-radius: 10px;
    font-size: 1rem; font-family: 'Inter'; background: #fdfdfd; transition: 0.3s;
}
.form-group input:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(212,175,55,0.2); }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-group input { width: 20px; height: 20px; margin-top: 3px; }
.checkbox-group label { font-size: 0.9rem; font-weight: 400; color: #666; }

.form-success { display: none; text-align: center; padding: 3rem 0; }
.form-success i { font-size: 4rem; color: #28a745; margin-bottom: 1rem; }
.form-success h3 { font-size: 2rem; color: var(--primary); }

/* Asymmetric Features */
.features { padding: 8rem 5%; display: flex; align-items: center; gap: 4rem; }
.feat-img { flex: 1; border-radius: 30px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.feat-img img { width: 100%; height: auto; display: block; object-fit: cover; }
.feat-text { flex: 1; }
.feat-text h2 { font-size: 3rem; color: var(--primary); margin-bottom: 2rem; }
.feat-list { list-style: none; }
.feat-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 1.5rem; font-size: 1.2rem; }
.feat-list li i { color: var(--accent); font-size: 1.5rem; background: var(--primary); padding: 10px; border-radius: 50%; }

/* About Section */
.about { padding: 6rem 5%; background: var(--primary); color: var(--text-light); text-align: center; }
.about-content { max-width: 900px; margin: 0 auto; }
.about h2 { font-size: 3.5rem; margin-bottom: 2rem; color: var(--accent); }
.about p { font-size: 1.2rem; margin-bottom: 1.5rem; opacity: 0.9; text-align: justify; }

/* FAQ Section */
.faq { padding: 6rem 5%; max-width: 900px; margin: 0 auto; }
.faq h2 { font-size: 3rem; color: var(--primary); text-align: center; margin-bottom: 3rem; }
details { background: var(--text-light); border-radius: 10px; margin-bottom: 1rem; padding: 1.5rem; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
summary { font-size: 1.2rem; font-weight: 700; color: var(--primary); cursor: pointer; list-style: none; position: relative; padding-right: 2rem; }
summary::after { content: '\f0d7'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 0; color: var(--accent); transition: 0.3s; }
details[open] summary::after { transform: rotate(180deg); }
details p { margin-top: 1rem; color: #555; }

/* Footer */
footer { background: #071c17; color: var(--bg-light); padding: 4rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-col h4 { font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--accent); }
.footer-col p, .footer-col ul { color: #ccc; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a:hover { color: var(--text-light); text-decoration: underline; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: #888; }

/* Cookie Banner */
.cookie-banner {
    position: fixed; bottom: -100px; left: 0; width: 100%; background: var(--text-light);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1); padding: 1.5rem 5%; z-index: 9999;
    display: flex; justify-content: space-between; align-items: center; transition: 0.5s;
}
.cookie-banner.show { bottom: 0; }
.cookie-text p { font-size: 0.9rem; color: #333; }
.cookie-text a { color: var(--primary); font-weight: 600; text-decoration: underline; }
.cookie-btns button { padding: 0.8rem 1.5rem; border: none; border-radius: 5px; cursor: pointer; font-weight: 600; margin-left: 10px; }
.btn-accept { background: var(--primary); color: #fff; }
.btn-decline { background: #ddd; color: #333; }

/* Legal Pages Containers */
.legal-page { background: var(--bg-light); padding: 6rem 5%; }
.legal-container {
    background: var(--text-light); max-width: 1000px; margin: 0 auto;
    padding: 4rem; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.legal-container h1 { font-size: 2.5rem; color: var(--primary); margin-bottom: 2rem; border-bottom: 2px solid var(--accent); padding-bottom: 1rem; }
.legal-container h2 { font-size: 1.8rem; color: var(--primary); margin: 2rem 0 1rem; }
.legal-container p, .legal-container li { margin-bottom: 1rem; color: #444; font-size: 1.05rem; }
.legal-container ul { margin-left: 2rem; margin-bottom: 1.5rem; }

/* Map iframe */
.map-container { margin-top: 2rem; width: 100%; height: 400px; border-radius: 10px; overflow: hidden; border: 1px solid #ddd; }

/* Mobile */
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .impact-stats { grid-template-columns: 1fr; }
    .features { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .cookie-banner { flex-direction: column; gap: 1rem; text-align: center; }
    .form-wrapper, .legal-container { padding: 2rem; }
}
