:root {
    --primary: #1a5f4a;
    --primary-dark: #134539;
    --primary-light: #2d8a6d;
    --secondary: #f4a261;
    --accent: #e76f51;
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --light: #fafafa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --gray-lighter: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.nav-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
}

.btn-nav {
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background: var(--gray-lighter);
}

.hero-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.95rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-dark {
    border: 2px solid var(--dark);
    color: var(--dark);
    padding: 0.95rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    display: inline-block;
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: var(--white);
}

.hero-image {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.hero-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 3rem 5%;
    background: var(--primary);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.split-section {
    display: flex;
    min-height: 500px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
}

.split-content.dark-bg {
    background: var(--dark);
    color: var(--white);
}

.split-content.dark-bg h2 {
    color: var(--white);
}

.split-image {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.split-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-tag.light {
    color: var(--secondary);
}

.split-content h2 {
    margin-bottom: 1.5rem;
}

.split-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.split-content.dark-bg p {
    color: rgba(255, 255, 255, 0.8);
}

.feature-list {
    margin-bottom: 2rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.split-content.dark-bg .feature-list li {
    color: var(--white);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    display: inline-block;
    width: fit-content;
}

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

.steps-list {
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    min-width: 50px;
}

.step-text h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.services-preview {
    padding: 5rem 5%;
    background: var(--gray-lighter);
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.services-header p {
    color: var(--gray);
    margin-top: 1rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    width: calc(25% - 1.5rem);
    min-width: 260px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.service-card.featured {
    border: 2px solid var(--primary);
}

.card-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-icon {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-price {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.btn-card {
    background: var(--gray-lighter);
    color: var(--dark);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    display: block;
}

.btn-card:hover {
    background: var(--primary);
    color: var(--white);
}

.services-more {
    text-align: center;
    margin-top: 3rem;
}

.testimonials-section {
    padding: 5rem 5%;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    width: calc(33.333% - 1.5rem);
    min-width: 300px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.testimonial-stars {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--dark);
}

.author-role {
    font-size: 0.85rem;
    color: var(--gray);
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 5rem 5%;
    text-align: center;
}

.cta-banner.alt {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    display: inline-block;
}

.btn-white:hover {
    background: var(--gray-lighter);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.form-section {
    padding: 5rem 5%;
    background: var(--gray-lighter);
}

.form-wrapper {
    display: flex;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    margin-bottom: 1rem;
}

.form-info > p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark);
}

.benefit-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.inquiry-form {
    flex: 1;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 1.5;
    min-width: 250px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-contact h4 {
    margin-bottom: 1.25rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 1.5rem 5%;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    flex: 1;
}

.cookie-content a {
    color: var(--secondary);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    background: var(--primary-light);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-reject:hover {
    border-color: var(--white);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    transition: var(--transition);
}

.sticky-cta:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 8rem 5% 5rem;
    text-align: center;
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
}

.values-section {
    padding: 5rem 5%;
    background: var(--gray-lighter);
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    width: calc(50% - 1rem);
    min-width: 280px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.team-section {
    padding: 5rem 5%;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-header p {
    color: var(--gray);
    margin-top: 1rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    width: calc(25% - 1.5rem);
    min-width: 200px;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.member-role {
    color: var(--gray);
    font-size: 0.9rem;
}

.milestones-section {
    padding: 5rem 5%;
    background: var(--dark);
}

.milestones-header {
    text-align: center;
    margin-bottom: 3rem;
}

.milestones-header .section-tag {
    color: var(--secondary);
}

.milestones-header h2 {
    color: var(--white);
}

.milestones-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.milestone-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
    border-left: 2px solid var(--primary);
}

.milestone-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    min-width: 70px;
}

.milestone-content h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.milestone-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.services-intro {
    padding: 3rem 5%;
    background: var(--white);
    text-align: center;
}

.services-intro-content {
    max-width: 700px;
    margin: 0 auto;
}

.services-intro p {
    color: var(--gray);
    font-size: 1.1rem;
}

.services-full {
    padding: 3rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.service-detail-card.highlight {
    border: 2px solid var(--primary);
}

.card-badge-large {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--gray-lighter);
}

.service-detail-icon {
    color: var(--primary);
}

.service-detail-title h2 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.service-price-tag {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
}

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

.service-detail-body > p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.service-includes {
    margin-bottom: 1.5rem;
}

.service-includes h4 {
    margin-bottom: 1rem;
}

.service-includes ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
}

.service-includes li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--dark);
    font-size: 0.95rem;
}

.service-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.service-pricing-table {
    background: var(--gray-lighter);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-pricing-table h4 {
    margin-bottom: 1rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row .price {
    font-weight: 700;
    color: var(--primary);
}

.btn-service {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-service:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.faq-section {
    padding: 5rem 5%;
    background: var(--gray-lighter);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-list.compact {
    max-width: 700px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.faq-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-section {
    padding: 5rem 5%;
}

.contact-wrapper {
    display: flex;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-card {
    flex: 1;
    background: var(--gray-lighter);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.contact-block {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-block:last-child {
    margin-bottom: 0;
}

.contact-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--gray);
}

.contact-text a {
    color: var(--primary);
}

.contact-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.hours-table {
    margin-top: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-light);
    color: var(--dark);
    font-size: 0.95rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.contact-map-area {
    flex: 1;
    min-height: 400px;
}

.map-placeholder {
    position: relative;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.map-pin {
    font-size: 1.5rem;
}

.map-overlay p {
    font-weight: 600;
    color: var(--dark);
}

.regions-list {
    margin-top: 2rem;
}

.region-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: var(--gray-lighter);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
}

.region-item.active {
    background: rgba(26, 95, 74, 0.1);
    border-left: 3px solid var(--primary);
}

.region-name {
    font-weight: 600;
}

.region-status {
    color: var(--gray);
    font-size: 0.9rem;
}

.region-item.active .region-status {
    color: var(--primary);
}

.contact-faq {
    padding: 5rem 5%;
    background: var(--gray-lighter);
}

.legal-hero {
    background: var(--dark);
    padding: 8rem 5% 4rem;
    text-align: center;
}

.legal-hero-content h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.legal-hero-content p {
    color: rgba(255, 255, 255, 0.7);
}

.legal-content {
    padding: 4rem 5%;
}

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

.legal-container h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--dark);
}

.legal-container h3 {
    font-size: 1.15rem;
    margin: 2rem 0 1rem;
}

.legal-container p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.legal-container ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-container li {
    color: var(--gray);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.legal-container li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 2rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-light);
}

.cookie-table th {
    background: var(--gray-lighter);
    font-weight: 600;
    color: var(--dark);
}

.cookie-table td {
    color: var(--gray);
}

.thanks-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: var(--gray-lighter);
}

.thanks-container {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    color: var(--primary);
    margin-bottom: 2rem;
}

.thanks-container h1 {
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.thanks-service {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.thanks-message {
    color: var(--gray);
    margin-bottom: 3rem;
}

.thanks-next {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-next h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.next-step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.next-step p {
    color: var(--dark);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-image {
        min-height: 300px;
    }

    .split-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .split-image {
        min-height: 300px;
    }

    .service-card {
        width: calc(50% - 1rem);
    }

    .testimonial-card {
        width: calc(50% - 1rem);
    }

    .form-wrapper {
        flex-direction: column;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .team-member {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem;
        border-bottom: 1px solid var(--gray-light);
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .service-card {
        width: 100%;
    }

    .testimonial-card {
        width: 100%;
    }

    .value-card {
        width: 100%;
    }

    .team-member {
        width: 100%;
    }

    .milestone-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .stats-bar {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .service-includes ul {
        flex-direction: column;
    }

    .pricing-row {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions a {
        text-align: center;
    }

    .btn-primary,
    .btn-outline {
        padding: 0.875rem 1.5rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}
