﻿@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Space+Grotesk:wght@400;700&display=swap');

:root {
    --primary-color: #064e3b; /* Dark Green */
    --secondary-color: #10b981; /* Emerald */
    --accent-color: #f59e0b; /* Amber */
    --text-dark: #1f2937;
    --text-light: #f3f4f6;
    --bg-light: #f9fafb;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
}

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

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--secondary-color);
}

/* Hero */
.hero {
    background: linear-gradient(rgba(6, 78, 59, 0.8), rgba(6, 78, 59, 0.9)), url('https://picsum.photos/seed/conagahero/1920/1080') no-repeat center center/cover;
    color: var(--text-light);
    padding: 120px 0;
    text-align: left;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: var(--secondary-color);
    color: #fff;
}

.btn-accent {
    background: var(--accent-color);
    color: #fff;
    width: 100%;
}

/* Cards Section */
.random-section {
    padding: 80px 0;
    background: #fff;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card i {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* About & Features */
.about-section, .features-section {
    padding: 100px 0;
}

.about-container, .features-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.features-container {
    flex-direction: row-reverse;
}

.about-text, .features-text {
    flex: 1;
}

.about-text h2, .features-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-text p, .features-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.features-text ul {
    list-style: none;
    margin-top: 20px;
}

.features-text li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-text i {
    color: var(--secondary-color);
}

.about-image, .features-image {
    flex: 1;
}

.about-image img, .features-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: #fff;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    color: var(--text-dark);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 30px;
    color: #6b7280;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
}

.checkbox-group a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.form-success {
    text-align: center;
    padding: 20px;
}

.form-success i {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Process */
.random-section-2 {
    padding: 80px 0;
    background: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

details {
    background: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

summary {
    font-weight: 700;
    font-size: 1.1rem;
    outline: none;
}

details p {
    margin-top: 15px;
    color: #4b5563;
}

/* Footer */
footer {
    background: #111827;
    color: #9ca3af;
    padding: 60px 0 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #374151;
    padding-top: 20px;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 9999;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    font-size: 0.9rem;
    color: #4b5563;
}

/* Legal Pages Wrapper */
.legal-wrapper {
    max-width: 900px;
    margin: 60px auto;
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.legal-wrapper h1 {
    margin-bottom: 30px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 10px;
}

.legal-wrapper h2 {
    margin: 30px 0 15px;
    font-size: 1.5rem;
}

.legal-wrapper p, .legal-wrapper ul {
    margin-bottom: 15px;
}

.legal-wrapper ul {
    margin-left: 20px;
}

/* Contact Page Map */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .about-container, .features-container {
        flex-direction: column;
    }
    .form-wrapper {
        padding: 30px 20px;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .legal-wrapper {
        padding: 30px 20px;
        margin: 30px 10px;
    }
}
