/* 
   Color Palette: Earthy Forest (NO BLUE)
   Primary: #2D5A27 (Forest Green)
   Secondary: #C85A17 (Terracotta)
   Accent: #E8D8C8 (Warm Sand)
   Dark: #1A1A1A (Charcoal)
*/

:root {
    --primary-color: #2D5A27;
    --secondary-color: #C85A17;
    --accent-color: #E8D8C8;
    --text-dark: #1A1A1A;
    --text-light: #F5F5F5;
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center { text-align: center; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-100 { width: 100%; }
.bg-light { background-color: var(--bg-light); }
.text-white { color: var(--text-light); }

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #555;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #1e3d1a;
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Header & Navigation (Strict Template) */
.site-header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 10px; /* Strict mobile padding */
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.desktop-nav a {
    font-weight: 600;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: var(--secondary-color);
}

.menu-checkbox {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
}

#menu-toggle:checked ~ .mobile-nav {
    display: block;
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hamburger { display: flex; }
}

/* V4 Unique Hero: Asymmetrical Clip-Path */
.hero-v4 {
    background-color: var(--accent-color);
    overflow: hidden;
}

.hero-v4-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 20px;
}

.badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-v4-image {
    position: relative;
}

.hero-v4-image img {
    border-radius: 20px;
    clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.floating-stat {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--bg-white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.floating-stat strong {
    font-size: 2rem;
    color: var(--secondary-color);
    line-height: 1;
}

@media (min-width: 992px) {
    .hero-v4-wrapper {
        grid-template-columns: 1fr 1fr;
        padding: 100px 20px;
    }
}

/* V4 Unique: Masonry Benefits */
.masonry-grid {
    column-count: 1;
    column-gap: 24px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 24px;
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.masonry-item:hover {
    transform: translateY(-5px);
}

.card-earth { background-color: var(--primary-color); color: white; }
.card-earth h3 { color: white; }
.card-sand { background-color: var(--accent-color); color: var(--text-dark); }
.card-terra { background-color: var(--secondary-color); color: white; }
.card-terra h3 { color: white; }

@media (min-width: 768px) {
    .masonry-grid { column-count: 2; }
}
@media (min-width: 1024px) {
    .masonry-grid { column-count: 3; }
}

/* V4 Unique: Overlapping Split */
.overlap-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.overlap-image img {
    border-radius: 20px;
    width: 100%;
}

.overlap-text {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.custom-list {
    list-style: none;
    margin-top: 20px;
}

.custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.custom-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

@media (min-width: 992px) {
    .overlap-wrapper {
        grid-template-columns: 5fr 6fr;
    }
    .overlap-text {
        margin-left: -80px;
        position: relative;
        z-index: 2;
    }
}

/* V4 Unique: Staggered Reviews */
.staggered-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stars {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.author {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .staggered-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .review-card.down {
        transform: translateY(30px);
    }
}

/* Page Header */
.page-header {
    background-color: var(--accent-color);
    padding: 80px 0;
}

/* V4 Unique: Vertical Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--accent-color);
    top: 0;
    bottom: 0;
    left: 20px;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px 40px 50px;
    position: relative;
    background-color: inherit;
    width: 100%;
}

.timeline-dot {
    position: absolute;
    width: 40px;
    height: 40px;
    right: auto;
    left: 0;
    background-color: var(--primary-color);
    border: 4px solid var(--bg-white);
    top: 10px;
    border-radius: 50%;
    z-index: 1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.timeline-content {
    padding: 30px;
    background-color: var(--bg-light);
    position: relative;
    border-radius: 16px;
}

.timeline-img {
    border-radius: 10px;
    width: 100%;
    max-height: 250px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .timeline::after {
        left: 50%;
    }
    .timeline-item {
        width: 50%;
        padding: 10px 40px 40px 40px;
    }
    .timeline-item:nth-child(even) {
        left: 50%;
        padding: 10px 40px 40px 40px;
    }
    .timeline-item:nth-child(odd) {
        left: 0;
    }
    .timeline-item:nth-child(odd) .timeline-dot {
        right: -20px;
        left: auto;
    }
    .timeline-item:nth-child(even) .timeline-dot {
        left: -20px;
    }
}

/* Accordion FAQ */
.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-white);
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-item summary {
    padding: 20px;
    font-weight: bold;
    cursor: pointer;
    color: var(--primary-color);
    list-style: none;
    position: relative;
}

.accordion-item summary::-webkit-details-marker {
    display: none;
}

.accordion-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
}

.accordion-item[open] summary::after {
    content: '-';
}

.accordion-content {
    padding: 0 20px 20px;
}

/* Parallax Story */
.parallax-story {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-overlay {
    background: rgba(45, 90, 39, 0.8);
    padding: 120px 0;
}

/* Numbered Grid */
.numbered-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.numbered-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.big-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 8rem;
    font-weight: 900;
    color: var(--accent-color);
    opacity: 0.3;
    line-height: 1;
}

.numbered-card h3 {
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .numbered-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
}

.custom-form .form-group {
    margin-bottom: 20px;
}

.custom-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.custom-form input,
.custom-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

@media (min-width: 768px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* Legal Content */
.legal-content h3 {
    margin-top: 30px;
}

/* Footer (Hardcoded Colors) */
.site-footer {
    background-color: #1A1A1A !important;
    color: #F5F5F5 !important;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    color: #E8D8C8 !important;
    font-size: 2rem;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-desc {
    color: #CCCCCC !important;
}

.footer-heading {
    color: #FFFFFF !important;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
}

.footer-links li, .footer-legal li {
    margin-bottom: 10px;
}

.footer-links a, .footer-legal a, .footer-contact a {
    color: #CCCCCC !important;
    transition: color 0.3s;
}

.footer-links a:hover, .footer-legal a:hover, .footer-contact a:hover {
    color: #E8D8C8 !important;
}

.footer-contact p {
    color: #CCCCCC !important;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333 !important;
    color: #999999 !important;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* Cookie Banner */
#cookie-banner {
    position: fixed; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    z-index: 9999;
    padding: 18px 24px;
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    flex-wrap: wrap; 
    gap: 16px;
    background-color: #1A1A1A;
    color: #fff;
    transform: translateY(0); 
    transition: transform 0.4s ease;
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 0.9rem; }
#cookie-banner a { color: var(--accent-color); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}
.cookie-btn-accept { background-color: var(--primary-color); color: white; }
.cookie-btn-decline { background-color: transparent; color: white; border: 1px solid white; }

@media (max-width: 600px) {
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-btns { width: 100%; }
    .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}