:root {
    --primary: #FAF7F2;
    --text: #2C3E50;
    --accent: #D35400;
    --accent-hover: #A04000;
    --light-bg: #FFFFFF;
    --muted: #7F8C8D;
    --border: #E0DCD5;
    --shadow: rgba(44, 62, 80, 0.08);
    --font-family: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

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

.skip-link {
    position: absolute;
    top: -100px;
    left: 10px;
    background: var(--accent);
    color: white;
    padding: 10px 15px;
    z-index: 9999;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 10px;
    outline: 2px solid var(--text);
}

/* Header & Nav */
.main-header {
    background-color: var(--light-bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-family: var(--font-serif);
    font-weight: bold;
    font-size: 1.5rem;
}

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

.main-nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.main-nav a:hover, .main-nav a:focus {
    color: var(--accent);
    outline: none;
}

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

/* Custom SVG Background Pattern */
.hero-pattern {
    background-color: var(--primary);
    background-image: radial-gradient(var(--accent) 0.5px, transparent 0.5px), radial-gradient(var(--accent) 0.5px, var(--primary) 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.08;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    pointer-events: none;
}

/* Sections & Typography */
h1, h2, h3 {
    font-family: var(--font-serif);
    margin-bottom: 1rem;
    color: var(--text);
}

h1 { font-size: 3rem; line-height: 1.2; }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 2.5rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn:hover, .btn:focus {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    outline: 2px solid var(--text);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--primary);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px var(--shadow);
    display: block;
}

/* Statistics */
.stats-section {
    background-color: var(--light-bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3rem 0;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* Process Section */
.process-section {
    padding: 4rem 0;
}

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

.process-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow);
}

.process-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Trust Principles */
.trust-section {
    background-color: var(--light-bg);
    padding: 4rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.trust-item {
    border-left: 4px solid var(--accent);
    padding-left: 20px;
}

/* Services section */
.services-section {
    padding: 4rem 0;
}

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

.service-card {
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s;
}

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

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

.service-card-body {
    padding: 2rem;
}

/* Feature Asymmetric section */
.feature-asymmetric {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

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

.asym-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 25px var(--shadow);
}

.asym-list {
    list-style: none;
    margin-top: 1.5rem;
}

.asym-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

.asym-list i {
    color: var(--accent);
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
}

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

.pricing-card {
    background-color: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.recommended {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    z-index: 2;
}

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

.price {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--accent);
    margin: 1.5rem 0;
}

.price-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features i {
    color: var(--accent);
}

/* Forms */
.form-section {
    background-color: var(--light-bg);
    padding: 4rem 0;
    border-top: 1px solid var(--border);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 1rem;
    background-color: var(--primary);
}

.form-group input:focus, .form-group textarea:focus {
    outline: 2px solid var(--accent);
    background-color: white;
}

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

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

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--muted);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid var(--border);
}

/* Trust Layer (Footer upper section) */
.trust-layer {
    background-color: var(--text);
    color: var(--primary);
    padding: 3rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #34495e;
}

.trust-layer-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

.trust-layer h4 {
    font-family: var(--font-serif);
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.trust-layer p {
    margin-bottom: 1rem;
    color: #bdc3c7;
}

.trust-links {
    margin-top: 1.5rem;
}

.trust-links a {
    color: var(--primary);
    text-decoration: underline;
    margin-right: 15px;
}

/* Footer */
.main-footer {
    background-color: var(--text);
    color: #bdc3c7;
    padding: 2rem 0;
    font-size: 0.85rem;
}

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

.footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    margin-left: 15px;
}

.footer-nav a:hover, .footer-nav a:focus {
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
    z-index: 10000;
    display: none;
}

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

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-text a {
    color: white;
    text-decoration: underline;
}

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

.cookie-btn-accept {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
}

.cookie-btn-reject {
    background-color: transparent;
    color: #bdc3c7;
    border: 1px solid #bdc3c7;
    padding: 0.5rem 1.2rem;
    cursor: pointer;
    border-radius: 4px;
}

.cookie-btn-accept:hover, .cookie-btn-reject:hover {
    opacity: 0.9;
}

/* Map IFrame Container */
.map-container {
    margin-top: 2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Accessibility settings for reduction of motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }
}

/* Responsive design */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    .hero-grid, .stats-grid, .process-grid, .services-grid, .pricing-grid, .asym-grid, .trust-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.recommended {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .main-nav {
        display: none;
        width: 100%;
    }
    .main-nav.nav-active {
        display: block;
    }
    .main-nav ul {
        flex-direction: column;
        padding-top: 1rem;
        gap: 15px;
    }
    .header-container {
        flex-wrap: wrap;
    }
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }
}