﻿@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&family=Manrope:wght@300;400;600&display=swap');
:root {
    --primary: #0B3B24;    /* Deep Forest Green */
    --secondary: #A86532;  /* Earthy Terra */
    --accent: #94D82D;     /* Bright Tech Green */
    --bg-light: #F8F9FA;
    --text-main: #1A1A1A;
    --text-muted: #555555;
    --white: #FFFFFF;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--primary); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; padding: 15px 0; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--primary); }
.logo img { width: 40px; height: 40px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 600; font-size: 1rem; }
.btn-primary { background: var(--primary); color: var(--white); padding: 12px 28px; border-radius: 50px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer; transition: var(--transition); }
.btn-primary:hover { background: var(--accent); color: var(--primary); transform: translateY(-2px); }

/* Hero */
.hero { padding: 120px 0; background: linear-gradient(135deg, rgba(11,59,36,0.95), rgba(11,59,36,0.8)), url('https://picsum.photos/seed/plowboyhero/1920/1080') center/cover; color: var(--white); text-align: center; }
.hero h1 { font-size: 4.5rem; color: var(--white); margin-bottom: 20px; line-height: 1.1; letter-spacing: -1px; }
.hero p { font-size: 1.4rem; font-weight: 300; max-width: 800px; margin: 0 auto 40px; color: #E0E0E0; }

/* Random 1 & 2 */
.random-section { padding: 80px 0; background: var(--white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-col h2 { font-size: 3rem; margin-bottom: 20px; }
.text-col p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 20px; }
.img-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.img-wrap img { width: 100%; height: 500px; object-fit: cover; transition: transform 0.5s; }
.img-wrap:hover img { transform: scale(1.05); }

/* About */
.about { background: var(--bg-light); padding: 100px 0; text-align: center; }
.about h2 { font-size: 3.5rem; margin-bottom: 30px; }
.about-content { max-width: 900px; margin: 0 auto; font-size: 1.2rem; color: var(--text-muted); }

/* Features (Asymmetric) */
.features { padding: 100px 0; background: var(--white); }
.features .grid-2 { grid-template-columns: 5fr 7fr; }
.feature-list { list-style: none; margin-top: 30px; }
.feature-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; font-size: 1.1rem; }
.feature-list i { color: var(--accent); font-size: 1.5rem; margin-top: 3px; }

/* Form Section */
.lead-section { background: var(--primary); padding: 100px 0; color: var(--white); position: relative; }
.form-container { background: var(--white); color: var(--text-main); padding: 50px; border-radius: 24px; box-shadow: 0 25px 50px rgba(0,0,0,0.2); max-width: 600px; margin: 0 auto; }
.form-container h2 { font-size: 2.5rem; text-align: center; margin-bottom: 10px; }
.form-container p.subtitle { text-align: center; color: var(--text-muted); margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-group input { width: 100%; padding: 16px 20px; border: 1px solid #ddd; border-radius: 12px; font-family: inherit; font-size: 1rem; transition: var(--transition); background: var(--bg-light); }
.form-group input:focus { outline: none; border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 4px rgba(148, 216, 45, 0.1); }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.checkbox-group input { margin-top: 4px; }
.btn-submit { width: 100%; justify-content: center; font-size: 1.1rem; padding: 18px; }
#success-message { display: none; text-align: center; padding: 40px 20px; }
#success-message i { font-size: 4rem; color: var(--accent); margin-bottom: 20px; }
#success-message h3 { font-size: 2rem; margin-bottom: 10px; }

/* FAQ */
.faq { padding: 100px 0; background: var(--bg-light); }
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq h2 { text-align: center; font-size: 3rem; margin-bottom: 50px; }
details { background: var(--white); margin-bottom: 15px; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
summary { padding: 20px 25px; font-family: 'Space Grotesk'; font-size: 1.2rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--primary); list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f078'; font-family: 'FontAwesome'; transition: transform 0.3s; }
details[open] summary::after { transform: rotate(180deg); }
.details-content { padding: 0 25px 25px; color: var(--text-muted); }

/* Legal Pages / Contact */
.legal-container { padding: 80px 0; background: var(--bg-light); min-height: 70vh; }
.legal-card { background: var(--white); border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); padding: 60px; max-width: 1000px; margin: 0 auto; }
.legal-card h1 { font-size: 3rem; border-bottom: 2px solid var(--accent); padding-bottom: 20px; margin-bottom: 40px; }
.legal-card h2 { font-size: 1.8rem; margin: 30px 0 15px; color: var(--secondary); }
.legal-card p, .legal-card ul { margin-bottom: 15px; color: var(--text-muted); font-size: 1.05rem; }
.legal-card ul { padding-left: 20px; }
.map-iframe { border-radius: 12px; overflow: hidden; margin-top: 30px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* Footer */
footer { background: var(--text-main); color: var(--white); padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-col h3 { color: var(--accent); margin-bottom: 20px; font-size: 1.5rem; }
.footer-col p { color: #aaa; margin-bottom: 10px; font-size: 0.95rem; }
.footer-col a { color: #aaa; display: block; margin-bottom: 10px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); text-align: center; padding-top: 20px; color: #777; font-size: 0.9rem; }

/* Cookie Banner */
#cookie-banner { position: fixed; bottom: -100px; left: 0; width: 100%; background: var(--primary); color: var(--white); padding: 20px; z-index: 9999; box-shadow: 0 -5px 20px rgba(0,0,0,0.2); transition: bottom 0.5s ease-in-out; display: flex; justify-content: center; align-items: center; gap: 30px; flex-wrap: wrap; }
#cookie-banner.show { bottom: 0; }
#cookie-banner p { font-size: 0.95rem; max-width: 800px; }
.cookie-btns { display: flex; gap: 15px; }
.btn-outline { background: transparent; border: 1px solid var(--accent); color: var(--accent); padding: 10px 20px; border-radius: 50px; cursor: pointer; transition: var(--transition); font-weight: 600; }
.btn-outline:hover { background: var(--accent); color: var(--primary); }

/* Mobile */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.8rem; }
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .features .grid-2 { grid-template-columns: 1fr; }
    .form-container { padding: 30px 20px; }
    .legal-card { padding: 30px 20px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}