:root {
    --primary: #1A2530;
    --secondary: #C5A059;
    --bg-light: #FDFBF7;
    --bg-white: #FFFFFF;
    --text-dark: #2D3142;
    --text-muted: #606870;
    --text-light: #FFFFFF;
    --accent-green: #2E7D32;
    --border-color: #E2DCD5;
    --shadow: 0 8px 30px rgba(0,0,0,0.05);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-family: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 17px;
}

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

a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--secondary);
    color: var(--text-light);
    padding: 8px 16px;
    z-index: 100;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

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

/* Header & Nav */
header {
    background-color: var(--primary);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--secondary);
}

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

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

.logo-link img {
    height: 40px;
    width: 40px;
}

.brand-name {
    color: var(--text-light);
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

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

nav ul li a {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--secondary);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Nav Styles */
@media (max-width: 768px) {
    .burger-menu {
        display: block;
    }
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--secondary);
        gap: 15px;
    }
    nav ul.active {
        display: flex;
    }
}

/* Grid & Layout containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Hero Section */
.hero {
    background-color: var(--primary);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    padding: 0 20px;
}

.hero-content h1 {
    color: var(--text-light);
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #CBD5E1;
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.hero-image img {
    width: 100%;
    border-radius: 8px;
    border: 3px solid var(--secondary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 38px;
    }
}

/* Stats Section */
.stats {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    color: var(--secondary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Steps Section */
.steps-section {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid var(--secondary);
}

.step-num {
    font-size: 48px;
    font-family: var(--font-display);
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Trust block */
.trust-block {
    background-color: var(--bg-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-card {
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

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

.trust-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* Services preview */
.services-section {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-body {
    padding: 30px;
}

.service-body h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-body p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Features asymmetric */
.features {
    background-color: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.features-content ul {
    list-style: none;
    margin-top: 25px;
}

.features-content ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.features-content ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--secondary);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing */
.pricing-section {
    background-color: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

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

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

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

.price-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.price-amt {
    font-size: 40px;
    font-family: var(--font-display);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 25px;
}

.price-features {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-muted);
}

.price-features li i {
    color: var(--accent-green);
    margin-right: 8px;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .price-card.popular {
        transform: none;
    }
}

/* Contact Form Section */
.contact-section {
    background-color: var(--bg-white);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

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

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

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

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

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

.btn-submit {
    display: block;
    width: 100%;
    background-color: var(--secondary);
    color: var(--primary);
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-submit:hover {
    background-color: var(--primary);
    color: var(--text-light);
}

/* FAQ Accordion */
.faq-section {
    background-color: var(--bg-light);
}

.faq-teaser {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-family: var(--font-display);
    font-weight: 600;
    cursor: pointer;
}

.faq-header i {
    color: var(--secondary);
    transition: var(--transition);
}

.faq-header.active i {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 20px 20px 20px;
    display: none;
}

.faq-body.active {
    display: block;
}

.faq-btn-wrapper {
    text-align: center;
    margin-top: 30px;
}

/* Trust Layer & Footer */
.trust-layer {
    background-color: #F1ECE5;
    border-top: 2px solid var(--secondary);
}

.trust-layer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.trust-layer h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

footer {
    background-color: var(--primary);
    color: var(--text-light);
    border-top: 1px solid #2C3E50;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #94A3B8;
    font-size: 15px;
}

.footer-links li a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid #2C3E50;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
    color: #94A3B8;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background-color: var(--bg-white);
    border: 2px solid var(--secondary);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
}

.cookie-banner h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.cookie-banner p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.cookie-btns {
    display: flex;
    gap: 10px;
}

.cookie-btns button {
    flex: 1;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid var(--secondary);
}

.btn-cookie-accept {
    background-color: var(--secondary);
    color: var(--primary);
}

.btn-cookie-deny {
    background-color: transparent;
    color: var(--secondary);
}

/* Contact page map styling */
.map-container {
    width: 100%;
    height: 400px;
    border: 2px solid var(--secondary);
    border-radius: 8px;
    overflow: hidden;
}

/* Animation reduction settings */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}