﻿:root {
    --primary-color: #2c402b; /* Deep Olive Green */
    --secondary-color: #1a2619; /* Darker Green */
    --gold: #d4af37;
    --gold-hover: #b5952f;
    --bg-color: #fdfbf7; /* Cream/Off-white */
    --text-color: #333333;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--primary-color); }
.gold-text { color: var(--gold); }
a { text-decoration: none; color: inherit; transition: color 0.3s; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* Header */
header { background: var(--white); box-shadow: 0 2px 15px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; padding: 15px 30px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; }
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links a { font-weight: 600; font-size: 1rem; }
.nav-links a:hover { color: var(--gold); }
.btn-nav { background: var(--primary-color); color: var(--white) !important; padding: 10px 20px; border-radius: 4px; }
.btn-nav:hover { background: var(--gold); }

/* Hero */
.hero-section { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding: 100px 5%; position: relative; overflow: hidden; min-height: 80vh; align-items: center; }
.blob-shape { position: absolute; top: -10%; left: -10%; width: 500px; height: 500px; background: rgba(212, 175, 55, 0.1); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; z-index: -1; }
.hero-content h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 25px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; color: #555; max-width: 90%; }
.btn-primary { display: inline-block; background: var(--gold); color: var(--white); padding: 18px 40px; font-size: 1.1rem; font-weight: 600; border-radius: 5px; box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3); transition: transform 0.3s; }
.btn-primary:hover { transform: translateY(-3px); background: var(--gold-hover); }
.hero-image-wrapper { position: relative; }
.hero-img { width: 100%; border-radius: 20px; box-shadow: 20px 20px 0 var(--primary-color); object-fit: cover; height: 600px; }

/* About */
.about-section { padding: 100px 0; }
.section-title { font-size: 3rem; margin-bottom: 30px; }
.large-text { font-size: 1.4rem; max-width: 900px; margin: 0 auto; color: #444; }

/* Form Section */
.clip-path-section { background: var(--primary-color); color: var(--white); padding: 120px 0; clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%); margin: 50px 0; }
.clip-path-section h2 { color: var(--white); font-size: 3rem; margin-bottom: 20px; }
.form-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.benefit-list { list-style: none; margin-top: 30px; }
.benefit-list li { margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.benefit-list i { color: var(--gold); }
.form-box { background: var(--white); padding: 40px; border-radius: 15px; color: var(--text-color); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.input-row { display: flex; gap: 15px; }
form input { width: 100%; padding: 15px; margin-bottom: 20px; border: 1px solid #ddd; border-radius: 5px; font-family: var(--font-body); font-size: 1rem; background: #f9f9f9; }
form input:focus { outline: none; border-color: var(--gold); }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; margin-bottom: 25px; }
.checkbox-label input { width: auto; margin-top: 4px; }
.checkbox-label a { color: var(--gold); text-decoration: underline; }
.btn-submit { width: 100%; background: var(--gold); color: var(--white); border: none; padding: 18px; font-size: 1.2rem; font-weight: 600; border-radius: 5px; cursor: pointer; transition: background 0.3s; }
.btn-submit:hover { background: var(--gold-hover); }
.btn-submit:disabled { background: #ccc; cursor: not-allowed; }

.hidden { display: none !important; }
.success-box { text-align: center; padding: 30px 10px; }
.success-box i { font-size: 4rem; margin-bottom: 20px; }

/* Features */
.features-section { padding: 100px 0; }
.features-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }
.feature-image-container { position: relative; }
.feature-image-container .feature-img { width: 100%; border-radius: 10px; }
.floating-badge { position: absolute; bottom: -20px; right: -20px; background: var(--white); padding: 20px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 15px; font-weight: 800; font-size: 1.2rem; color: var(--primary-color); }
.floating-badge i { color: var(--gold); font-size: 1.5rem; }
.feature-content h2 { font-size: 3rem; margin-bottom: 40px; }
.feature-item { display: flex; gap: 20px; margin-bottom: 30px; }
.icon-box { background: rgba(212, 175, 55, 0.1); width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; color: var(--gold); flex-shrink: 0; }
.feature-item h3 { font-size: 1.3rem; margin-bottom: 10px; }

/* Random Stats */
.random-stats { background: var(--bg-color); padding: 50px 0; border-top: 1px solid #eaeaea; border-bottom: 1px solid #eaeaea; }
.stats-flex { display: flex; justify-content: space-around; text-align: center; }
.stat-num { display: block; font-size: 3.5rem; font-family: var(--font-heading); color: var(--gold); font-weight: 800; }
.stat-text { font-size: 1.1rem; font-weight: 600; color: var(--primary-color); text-transform: uppercase; letter-spacing: 1px; }

/* FAQ */
.faq-section { padding: 100px 0; }
.faq-wrapper { max-width: 800px; margin: 40px auto 0; }
details { background: var(--white); margin-bottom: 15px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.03); overflow: hidden; }
summary { padding: 20px; font-weight: 600; font-size: 1.1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--primary-color); }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--gold); transition: transform 0.3s; }
details[open] summary::after { transform: rotate(180deg); }
.details-content { padding: 0 20px 20px; color: #555; }

/* Footer */
footer { background: var(--secondary-color); color: #aaa; padding: 80px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .logo { color: var(--white); display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 15px; }
.footer-links h4, .footer-contact h4 { color: var(--white); font-family: var(--font-body); margin-bottom: 20px; font-size: 1.1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 0.9rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: -100%; left: 0; width: 100%; background: var(--white); box-shadow: 0 -5px 20px rgba(0,0,0,0.1); z-index: 9999; transition: bottom 0.5s ease; padding: 20px 0; }
.cookie-banner.show { bottom: 0; }
.cookie-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; gap: 20px; }
.cookie-inner p { font-size: 0.9rem; color: #555; }
.cookie-inner a { color: var(--primary-color); text-decoration: underline; }
.btn-cookie { padding: 10px 20px; border: none; border-radius: 4px; cursor: pointer; font-weight: 600; }
.btn-cookie.primary { background: var(--primary-color); color: var(--white); }

/* Legal Pages */
.legal-main { padding: 60px 20px; background: var(--bg-color); min-height: 80vh; }
.legal-card { max-width: 900px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.legal-card h1 { margin-bottom: 30px; font-size: 2.5rem; }
.legal-card h2 { margin-top: 30px; margin-bottom: 15px; font-size: 1.5rem; font-family: var(--font-body); }
.legal-card p, .legal-card ul { margin-bottom: 15px; color: #444; }
.legal-card ul { padding-left: 20px; }

/* Responsive */
@media (max-width: 992px) {
    .hero-section, .form-layout, .features-grid, .footer-grid { grid-template-columns: 1fr; }
    .hero-section { padding-top: 50px; text-align: center; }
    .hero-content h1 { font-size: 3rem; }
    .hero-content p { margin: 0 auto 30px; }
    .blob-shape { display: none; }
    .clip-path-section { clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%); padding: 80px 0; text-align: center; }
    .benefit-list { display: inline-block; text-align: left; }
    .stats-flex { flex-direction: column; gap: 30px; }
    .nav-links { display: none; } /* Simplified for mobile, relying on scroll/buttons */
    .cookie-inner { flex-direction: column; text-align: center; }
}
