:root {
    --primary: #1e293b;
    --primary-light: #334155;
    --accent: #b45309;
    --accent-hover: #d97706;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

/* Skip link accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent);
    color: white;
    padding: 8px 16px;
    z-index: 100;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
*:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* Header */
header {
    background-color: var(--primary);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}
.logo img {
    height: 40px;
    width: 40px;
}
.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}
.nav-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--accent-hover);
}
.burger-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    padding: 24px;
    z-index: 40;
    border-top: 1px solid var(--primary-light);
}
.mobile-nav.active {
    display: block;
}
.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98)), url('images/hero.jpg') no-repeat center center/cover;
    color: white;
    padding: 120px 0 80px 0;
    text-align: center;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 24px;
}
.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 32px auto;
    color: #cbd5e1;
}
.btn {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.btn:hover {
    background-color: var(--accent-hover);
}

/* Stats */
.stats {
    padding: 60px 0;
    background-color: var(--bg-card);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    text-align: center;
}
.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 8px;
}

/* Sections General */
section {
    padding: 80px 0;
}
.section-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 48px;
    color: var(--primary);
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin: 12px auto 0 auto;
}

/* Workflow Steps */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}
.workflow-step {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    position: relative;
    text-align: center;
}
.workflow-step i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 16px;
}

/* Trust Blocks */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.trust-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.service-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.service-content {
    padding: 24px;
}
.service-content h3 {
    margin-bottom: 12px;
    color: var(--primary);
}

/* Features Block */
.features-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.features-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.features-list {
    list-style: none;
    margin-top: 24px;
}
.features-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
}
.features-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--accent);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.price-card {
    background: var(--bg-card);
    padding: 40px 32px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}
.price-card.popular {
    border: 2px solid var(--accent);
    transform: scale(1.03);
    position: relative;
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
}
.price-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin: 24px 0;
}

/* Form Section */
.form-section {
    background-color: var(--primary);
    color: white;
}
.form-section .section-title {
    color: white;
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--primary-light);
    padding: 40px;
    border-radius: 8px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #475569;
    background: rgba(255,255,255,0.05);
    color: white;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}
.form-control:focus {
    outline: 2px solid var(--accent);
    background: rgba(255,255,255,0.1);
}
.checkbox-group {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.checkbox-group input {
    margin-top: 4px;
}
.checkbox-group label {
    font-size: 0.9rem;
    color: #cbd5e1;
}
.checkbox-group a {
    color: white;
}

/* Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    background: var(--bg-card);
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
.accordion-header {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.accordion-content {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.accordion-item.active .accordion-content {
    padding: 0 24px 20px 24px;
    max-height: 500px;
}

/* Trust Layer & Footers */
.trust-layer {
    background-color: #f1f5f9;
    border-top: 1px solid #cbd5e1;
    padding: 40px 0;
}
.trust-layer-content {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.trust-layer-content h4 {
    margin-bottom: 12px;
    color: var(--primary);
}
footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 40px 0;
    font-size: 0.9rem;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}
.footer-links {
    display: flex;
    gap: 16px;
    list-style: none;
}
.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
}
.footer-links a:hover {
    color: var(--accent-hover);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    color: white;
    padding: 24px 0;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}
.cookie-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.cookie-banner-content p {
    font-size: 0.9rem;
    flex: 1;
}
.cookie-banner-buttons {
    display: flex;
    gap: 12px;
}
.cookie-banner-buttons button {
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    border: none;
}
.btn-accept {
    background-color: var(--accent);
    color: white;
}
.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white !important;
}

/* Map Iframe styling */
.map-container {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 24px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .burger-menu {
        display: block;
    }
    .features-block {
        grid-template-columns: 1fr;
    }
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }
    .hero h1 {
        font-size: 2.25rem;
    }
}

@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;
    }
}