/* ============================================
   RESET & BASE - Mobile First
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #1e3a5f;
    --color-secondary: #f4a261;
    --color-accent: #2a9d8f;
    --color-text: #2c2c2c;
    --color-text-light: #666666;
    --color-bg: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-border: #e0e0e0;
    --font-primary: 'Arial', 'Helvetica', sans-serif;
    --font-heading: 'Arial', 'Helvetica', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.2s ease;
    --transition-slow: all 0.3s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

@media (min-width: 768px) {
    body {
        font-size: 17px;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    margin-top: 0;
    color: var(--color-primary);
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 70ch;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 0;
    font-size: 1.75rem;
    font-weight: 700;
}

/* ============================================
   BUTTONS - CTA
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    min-height: 48px;
    min-width: 48px;
    text-decoration: none;
    line-height: 1.5;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #e68a3d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary:focus {
    outline: 3px solid rgba(244, 162, 97, 0.4);
    outline-offset: 2px;
}

.btn-secondary {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #152b47;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary:focus {
    outline: 3px solid rgba(30, 58, 95, 0.4);
    outline-offset: 2px;
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.125rem;
    min-height: 52px;
}

.btn-link {
    color: var(--color-secondary);
    padding: 0.5rem 0;
    font-weight: 600;
}

.btn-link:hover {
    color: #e68a3d;
}

.btn-phone {
    background-color: var(--color-accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
}

.btn-phone:hover {
    background-color: #21867a;
}

.phone-icon {
    display: none;
}

.btn-phone svg,
.btn svg.icon {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-primary);
}

.logo-img {
    width: 40px;
    height: 40px;
}

.nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-secondary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-secondary);
}

.header-cta {
    display: none;
    gap: 1rem;
    align-items: center;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: var(--shadow-md);
    padding: 1rem;
}

.nav.active .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.nav.active .nav-link {
    display: block;
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
}

.nav.active .nav-link:last-child {
    border-bottom: none;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.75) 0%, rgba(42, 85, 128, 0.75) 100%), url('../img/6.png') center/cover no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.trust-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */

.services-preview {
    padding: 4rem 0;
    background-color: var(--color-bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.service-card h3 {
    margin-bottom: 1rem;
    flex-grow: 0;
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    max-width: none;
}

/* ============================================
   ZONE INTERVENTION
   ============================================ */

.zone-intervention {
    padding: 4rem 0;
    text-align: center;
}

.zone-description {
    margin-bottom: 1.5rem;
}

.zone-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.zone-item {
    background-color: var(--color-bg-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.why-choose {
    padding: 4rem 0;
    background-color: var(--color-bg-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.trust-card {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.trust-card h3 {
    margin-bottom: 1rem;
    flex-grow: 0;
}

.trust-card p {
    flex-grow: 1;
    max-width: none;
}

.trust-card h3 {
    margin-bottom: 1rem;
}

/* ============================================
   TESTIMONIALS PREVIEW
   ============================================ */

.testimonials-preview {
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    background-color: var(--color-bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-secondary);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.testimonial-stars svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-primary);
}

/* ============================================
   CTA FINAL
   ============================================ */

.cta-final {
    background: linear-gradient(135deg, var(--color-accent) 0%, #21867a 100%);
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

.cta-title {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-certifications {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cert-badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-contact li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact li svg {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--color-secondary);
}

/* ============================================
   RESPONSIVE - TABLET (768px+)
   ============================================ */

@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .header-cta {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .nav {
        display: block;
    }

    .nav.active {
        position: static;
        box-shadow: none;
        padding: 0;
    }

    .nav.active .nav-list {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }

    .nav.active .nav-link {
        padding: 0.5rem 0;
        border-bottom: none;
        width: auto;
    }

    .hero {
        padding: 5rem 0;
        min-height: 600px;
    }

    .hero-title {
        font-size: 2.5rem;
        max-width: 14ch;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RESPONSIVE - DESKTOP (1024px+)
   ============================================ */

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero {
        padding: 6rem 0;
        min-height: 700px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2a5580 100%);
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */

.service-detail {
    padding: 3rem 0;
}

.service-detail-alt {
    background-color: var(--color-bg-light);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.service-detail-text h2 {
    margin-bottom: 1rem;
}

.service-detail-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-list li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.service-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.service-detail-image {
    text-align: center;
}

.service-detail-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
    display: block;
}

.service-image-placeholder {
    display: none;
}

@media (min-width: 768px) {
    .service-detail-content {
        grid-template-columns: 1fr 1fr;
    }

    .service-cta {
        flex-direction: row;
    }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-story {
    padding: 3rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
    display: block;
}

.about-image-placeholder {
    display: none;
}

.about-values {
    padding: 3rem 0;
    background-color: var(--color-bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.value-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-certifications {
    padding: 3rem 0;
}

.certification-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.certification-card {
    background-color: var(--color-bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.cert-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-local {
    padding: 3rem 0;
    background-color: var(--color-bg-light);
}

.local-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.local-list li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.about-work {
    padding: 3rem 0;
}

.work-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    display: block;
}

.stat-label {
    color: var(--color-text-light);
    font-size: 1.125rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid,
    .certification-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid,
    .certification-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   REVIEWS PAGE
   ============================================ */

.reviews-stats {
    padding: 3rem 0;
    background-color: var(--color-bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-rating {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.reviews-section {
    padding: 3rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.review-card {
    background-color: var(--color-bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-secondary);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-stars {
    font-size: 1.25rem;
}

.review-date {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.review-text {
    margin-bottom: 1rem;
    color: var(--color-text);
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-author strong {
    color: var(--color-primary);
}

.review-location {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-info {
    padding: 3rem 0;
    background-color: var(--color-bg-light);
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
}

.contact-card p {
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 1rem;
}

.contact-zones {
    font-weight: 500;
    color: var(--color-primary);
}

.contact-form-section,
.rdv-section {
    padding: 3rem 0;
}

.rdv-section {
    background-color: var(--color-bg-light);
}

.form-container,
.rdv-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.rdv-container {
    background-color: var(--color-bg-light);
    box-shadow: none;
}

.contact-form,
.rdv-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.map-section {
    padding: 3rem 0;
}

.map-container {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    display: block;
    width: 100%;
}

.map-note {
    text-align: center;
    color: var(--color-text-light);
}

@media (min-width: 768px) {
    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-content {
    padding: 3rem 0;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.legal-text h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-border);
}

.legal-text h2:first-of-type {
    margin-top: 0;
}

.legal-text ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.legal-text a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.legal-text a:hover {
    color: #e68a3d;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: italic;
}

@media (min-width: 768px) {
    .legal-text {
        padding: 3rem;
    }
}

