﻿:root {
    --primary: #0A2540;     /* Deep Navy */
    --secondary: #20C997;   /* Eco Teal */
    --accent: #F9A826;      /* Sun Yellow */
    --bg-light: #F8F9FA;
    --text-dark: #2D3748;
    --text-muted: #718096;
    --white: #FFFFFF;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--primary); font-weight: 700; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Typography */
h1 { font-size: clamp(3rem, 5vw, 5rem); line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -1px; }
h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.8rem; margin-bottom: 1rem; }
p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 2rem; font-size: 1.125rem; font-weight: 600; border-radius: 50px; cursor: pointer; transition: all 0.3s ease; border: none; font-family: var(--font-body); }
.btn-primary { background-color: var(--secondary); color: var(--primary); }
.btn-primary:hover { background-color: var(--accent); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(249, 168, 38, 0.2); }

/* Header */
header { background: var(--white); padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.05); }
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--primary); display: flex; align-items: center; gap: 0.5rem; }
.logo img { width: 40px; }
nav ul { display: flex; gap: 2rem; }
nav a { font-weight: 500; }
nav a:hover { color: var(--secondary); }

/* Layout Containers */
.container { max-width: 1200px; margin: 0 auto; padding: 5rem 5%; }

/* Hero Section */
.hero { background: var(--primary); color: var(--white); padding: 8rem 5%; text-align: center; position: relative; overflow: hidden; }
.hero h1 { color: var(--white); }
.hero p { color: #A0AEC0; max-width: 800px; margin: 0 auto 2.5rem; font-size: 1.25rem; }

/* Random 1: Stats Grid */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.stat-card { background: var(--white); padding: 2.5rem; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); text-align: center; border-bottom: 4px solid var(--secondary); }
.stat-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 1rem; }
.stat-card h3 { font-size: 3rem; margin-bottom: 0.5rem; }

/* About Section */
.about { text-align: center; }
.about-content { max-width: 900px; margin: 0 auto; }

/* Features (Asymmetrical) */
.features-container { display: flex; align-items: center; gap: 4rem; margin-bottom: 6rem; }
.features-container:nth-child(even) { flex-direction: row-reverse; }
.feature-img { flex: 1; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.feature-img img { width: 100%; height: 500px; object-fit: cover; transition: transform 0.5s ease; }
.feature-img:hover img { transform: scale(1.05); }
.feature-text { flex: 1; }
.feature-text ul li { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; font-size: 1.125rem; font-weight: 500; }
.feature-text ul li i { color: var(--secondary); font-size: 1.5rem; }

/* Lead Form Section */
.lead-section { background: var(--primary); color: var(--white); padding: 6rem 5%; border-radius: 40px; margin: 0 2%; position: relative; }
.lead-section h2 { color: var(--white); text-align: center; }
.lead-section p { color: #A0AEC0; text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.lead-form-wrapper { max-width: 600px; margin: 0 auto; background: var(--white); padding: 3rem; border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.form-group { margin-bottom: 1.5rem; }
.form-group input { width: 100%; padding: 1.2rem; border: 2px solid #E2E8F0; border-radius: 12px; font-family: var(--font-body); font-size: 1rem; outline: none; transition: border-color 0.3s ease; }
.form-group input:focus { border-color: var(--secondary); }
.checkbox-group { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 2rem; }
.checkbox-group input { width: 20px; height: 20px; margin-top: 0.2rem; cursor: pointer; }
.checkbox-group label { font-size: 0.9rem; color: var(--text-muted); line-height: 1.4; }
.lead-form-wrapper .btn { width: 100%; }

#successMessage { display: none; text-align: center; padding: 2rem; }
#successMessage i { font-size: 4rem; color: var(--secondary); margin-bottom: 1rem; }
#successMessage h3 { color: var(--primary); margin-bottom: 0.5rem; }

/* FAQ Section */
.faq-container { max-width: 800px; margin: 0 auto; }
details { background: var(--white); margin-bottom: 1rem; border-radius: 12px; padding: 1.5rem; box-shadow: 0 5px 15px rgba(0,0,0,0.02); cursor: pointer; border-left: 4px solid transparent; transition: all 0.3s ease; }
details[open] { border-left-color: var(--secondary); }
summary { font-size: 1.25rem; font-weight: 700; color: var(--primary); list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f067'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--secondary); transition: transform 0.3s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { margin-top: 1.5rem; margin-bottom: 0; }

/* Legal Pages Styling */
.legal-page { background: var(--white); padding: 4rem; border-radius: 24px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); margin-top: -3rem; position: relative; z-index: 10; }
.legal-page h2 { margin-top: 2rem; font-size: 1.8rem; }
.legal-page ul { margin-left: 1.5rem; margin-bottom: 1.5rem; list-style-type: disc; color: var(--text-muted); }

/* Footer */
footer { background: #061524; color: #A0AEC0; padding: 4rem 5% 2rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 3rem; }
.footer-col h4 { color: var(--white); font-size: 1.2rem; margin-bottom: 1.5rem; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a:hover { color: var(--secondary); }
.footer-bottom { text-align: center; padding-top: 2rem; font-size: 0.9rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 -10px 30px rgba(0,0,0,0.1); z-index: 9999; transform: translateY(100%); transition: transform 0.5s ease; }
.cookie-banner.show { transform: translateY(0); }
.cookie-text { max-width: 800px; font-size: 0.9rem; margin-bottom: 0; }
.cookie-btns { display: flex; gap: 1rem; }

/* Mobile Adaptability */
@media (max-width: 768px) {
    header { flex-direction: column; gap: 1rem; }
    nav ul { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .features-container, .features-container:nth-child(even) { flex-direction: column; }
    .cookie-banner { flex-direction: column; gap: 1.5rem; text-align: center; }
    .legal-page { padding: 2rem; }
}
