:root {
    --primary: #0B3C2B;      /* Deep Forest Emerald */
    --secondary: #D4AF37;    /* Soft Rich Gold */
    --accent: #1E4D2B;       /* Secondary Organic Green */
    --bg-light: #FAFAFA;     /* Warm off-white */
    --text-dark: #212121;    /* High contrast dark text */
    --text-muted: #616161;   /* Accessible Muted Text */
    --white: #FFFFFF;
    --border: #E0E0E0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

/* Skip link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--secondary);
    color: var(--primary);
    padding: 10px 20px;
    z-index: 1000;
    font-weight: bold;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

/* Layout Elements */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 20px;
    z-index: 998;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    display: block;
}

/* Main Content Wrapper */
main {
    min-height: calc(100vh - 140px);
}

/* Sections */
section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #07251B 0%, #0B3C2B 100%);
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
    position: relative;
}

.hero h1 {
    color: var(--secondary);
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--secondary);
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover, .btn:focus {
    background-color: transparent;
    color: var(--secondary);
}

/* Custom SVG Wave */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.wave-divider .shape-fill {
    fill: var(--bg-light);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

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

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Asymmetric Feature Block */
.feature-block {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.feature-image-wrapper, .feature-text-wrapper {
    flex: 1 1 450px;
}

.feature-image-wrapper img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.feature-bullets {
    list-style: none;
    margin-top: 20px;
}

.feature-bullets li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.feature-bullets li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border: 2px solid var(--secondary);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--primary);
    padding: 4px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0;
}

.price-features {
    list-style: none;
    margin: 20px 0 30px;
    text-align: left;
}

.price-features li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Lead Form Section */
.form-section {
    background-color: var(--primary);
    color: var(--white);
}

.form-section h2 {
    color: var(--secondary);
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 650px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: var(--text-dark);
}

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

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

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-control:focus {
    outline: 2px solid var(--secondary);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.form-checkbox input {
    margin-top: 4px;
}

/* Accordion FAQ */
.faq-accordion details {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
}

.faq-accordion summary {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-accordion summary::-webkit-details-marker {
    display: none;
}

.faq-accordion summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.faq-accordion details[open] summary::after {
    transform: rotate(180deg);
}

.faq-accordion p {
    margin-top: 15px;
    color: var(--text-muted);
}

/* Trust Layer & Footer */
.trust-layer {
    background-color: #EAEAEA;
    padding: 30px 20px;
    font-size: 0.85rem;
    text-align: center;
    border-top: 1px solid var(--border);
}

footer {
    background-color: #051A13;
    color: var(--white);
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--secondary);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 3px solid var(--secondary);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
    padding: 20px;
    display: none;
    z-index: 1000;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    flex: 1 1 700px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn-accept {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

/* Screen Readers Only helper */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Accessibility focus-visible */
*:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

/* Media Queries */
@media (max-width: 768px) {
    nav {
        display: none;
    }
    .burger-menu {
        display: block;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .pricing-card.popular {
        transform: none;
    }
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}