/* ==========================================
   TAXI POISSY - Clean Site Stylesheet
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffc938;
    --primary-dark: #1B1B1B;
    --primary-light: #ffffff;
    --secondary-color: #f5f5f5;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
}

/* ==========================================
   GLOBAL STYLES
   ========================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
    color: var(--text-color);
    background-color: var(--primary-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Fix link colors inside buttons */
.btn,
.btn:visited {
    text-decoration: none;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:visited {
    color: var(--primary-dark) !important;
}

button, .btn {
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    font-weight: 600;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.header {
    background-color: var(--primary-dark);
    color: var(--primary-light);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 8px;
}

.logo span {
    line-height: 1;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 18px;
}

.header-social-link {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.header-social-link:hover {
    color: var(--primary-dark);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.header-social-link svg {
    width: 18px;
    height: 18px;
    display: block;
}

.nav-item {
    color: var(--primary-light);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-item:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav-item.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* ==========================================
   PAGE HEADER
   ========================================== */

.page-header {
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.92) 0%, rgba(42, 42, 42, 0.88) 100%);
    color: var(--primary-light);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.1em;
    color: var(--primary-color);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.65) 0%, rgba(26, 26, 26, 0.60) 50%, rgba(42, 42, 42, 0.62) 100%),
                url('../img/taxis-poissy-header9.webp') center center / cover no-repeat;
    color: var(--primary-light);
    padding: 72px 20px 88px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 201, 56, 0.16) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 201, 56, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease-out;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.badge-success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.3));
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: #81c784;
}

.badge-primary {
    background: linear-gradient(135deg, rgba(255, 201, 56, 0.2), rgba(255, 201, 56, 0.3));
    border: 1px solid rgba(255, 201, 56, 0.4);
    color: var(--primary-color);
}

.badge-info {
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.2), rgba(100, 181, 246, 0.3));
    border: 1px solid rgba(100, 181, 246, 0.4);
    color: #64b5f6;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    font-weight: 800;
    animation: fadeInUp 0.7s ease-out 0.1s both;
}

.hero-highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffb700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.65;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.7s ease-out 0.2s both;
}

.hero .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.7s ease-out 0.3s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px;
    max-width: 700px;
    margin: 0 auto 48px;
    animation: fadeInUp 0.7s ease-out 0.4s both;
}

.stat-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 201, 56, 0.3);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
}

.btn-icon {
    font-size: 1.3em;
    line-height: 1;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.btn-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: inherit;
}

.btn-text small {
    font-size: 0.75rem;
    opacity: 0.85;
    font-weight: 500;
    color: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffb700 100%);
    color: var(--primary-dark) !important;
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffb700 0%, var(--primary-color) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(255, 201, 56, 0.4);
    color: var(--primary-dark) !important;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--primary-light);
    border: 1px solid rgba(255, 201, 56, 0.3);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background-color: rgba(255, 201, 56, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-light);
    box-shadow: 0 12px 28px rgba(255, 201, 56, 0.25);
    transform: translateY(-3px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.05em;
    min-width: 240px;
}

/* Buttons on dark backgrounds */
.hero .btn-secondary,
.page-header .btn-secondary,
.service-hours .btn-secondary {
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--primary-light) !important;
    border: 1px solid rgba(255, 201, 56, 0.3);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.hero .btn-secondary:hover,
.page-header .btn-secondary:hover,
.service-hours .btn-secondary:hover {
    background-color: rgba(255, 201, 56, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-light) !important;
    box-shadow: 0 12px 28px rgba(255, 201, 56, 0.25);
}

/* Buttons on light backgrounds */
.services-preview .btn-secondary,
.zones .btn-secondary,
.cta-section .btn-secondary {
    background-color: transparent;
    color: var(--primary-dark) !important;
    border: 2px solid var(--primary-dark);
}

.services-preview .btn-secondary:hover,
.zones .btn-secondary:hover,
.cta-section .btn-secondary:hover {
    background-color: var(--primary-dark);
    color: #ffffff !important;
    border-color: var(--primary-dark);
}

/* ==========================================
   SECTIONS & SPACING
   ========================================== */

section {
    padding: 60px 20px;
}

section h2 {
    font-size: 2em;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-dark);
}

section h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

section h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

/* ==========================================
   CARDS & GRID LAYOUTS
   ========================================== */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.card {
    background-color: var(--secondary-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.card .icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 15px;
}

.card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Location Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.location {
    background-color: var(--secondary-color);
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
    text-align: center;
    font-weight: 500;
}

.location.zones-all {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffb700 100%);
    color: var(--primary-dark);
    font-weight: 700;
    border-left-color: #ffb700;
}

.zones-cta {
    text-align: center;
    margin-top: 32px;
}

/* ==========================================
   ZONES & COVERAGE
   ========================================== */

.zones-coverage {
    background-color: var(--secondary-color);
}

.zone-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.zone-section:last-child {
    border-bottom: none;
}

.region-list {
    list-style: none;
    margin: 20px 0;
}

.region-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.region-list li:last-child {
    border-bottom: none;
}

.region-list strong {
    color: var(--primary-color);
}

/* ==========================================
   TABLES
   ========================================== */

.distance-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: var(--primary-light);
}

.distance-table th {
    background-color: var(--primary-dark);
    color: var(--primary-light);
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.distance-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}

.distance-table tr:hover {
    background-color: var(--secondary-color);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.quick-contact {
    background-color: var(--secondary-color);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: var(--primary-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-card .icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

/* ==========================================
   FORMS
   ========================================== */

.reservation-form-section {
    background-color: var(--secondary-color);
}

.reservation-form {
    background-color: var(--primary-light);
    padding: 40px;
    border-radius: 8px;
    max-width: 700px;
    margin: 30px auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1em;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 201, 56, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq-section {
    background-color: var(--secondary-color);
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 800px;
    margin: 30px auto;
}

.faq-item {
    background-color: var(--primary-light);
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-size: 1.1em;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================
   SERVICE HOURS
   ========================================== */

.service-hours {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a2a2a 100%);
    color: var(--primary-light);
    text-align: center;
}

.service-hours h2 {
    color: var(--primary-light);
    margin-bottom: 30px;
}

.hours-info {
    max-width: 400px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

.hours-info p {
    font-size: 1.2em;
    margin: 10px 0;
}

.hours-info p:first-child {
    font-weight: 700;
    font-size: 1.4em;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-section {
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-section h2 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1em;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Ensure CTA buttons are visible */
.cta-section .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffb700 100%);
    color: #000000 !important;
    border: none;
}

.cta-section .btn-secondary {
    background-color: #ffffff;
    color: var(--primary-dark) !important;
    border: 2px solid var(--primary-dark);
}

.cta-section .btn-secondary:hover {
    background-color: var(--primary-dark);
    color: #ffffff !important;
}

/* ==========================================
   COVERAGE INFO
   ========================================== */

.coverage-info {
    text-align: center;
    background-color: var(--primary-light);
}

.coverage-info p {
    font-size: 1.05em;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background:
        radial-gradient(circle at top left, rgba(255, 201, 56, 0.14), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 201, 56, 0.08), transparent 24%),
        linear-gradient(135deg, #101010 0%, #1b1b1b 45%, #232323 100%);
    color: var(--primary-light);
    padding: 64px 20px 24px;
    position: relative;
    overflow: hidden;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-lead {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    max-width: 320px;
}

.footer-call {
    margin-top: 8px;
    min-width: 0;
    width: fit-content;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0;
}

.footer-list a,
.footer-list span {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.7;
}

.footer-list a:hover {
    color: var(--primary-color);
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1em;
    letter-spacing: 0.02em;
}

.footer-column {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.footer-column p {
    color: var(--primary-light);
    margin-bottom: 8px;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--primary-light);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* ==========================================
   FOOTER SOCIAL LINKS
   ========================================== */

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 7px 12px;
    border-radius: 8px;
    transition: all 0.25s ease;
    text-decoration: none;
    border: 1px solid transparent;
}

.social-link:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.social-instagram:hover { border-color: #e1306c; color: #e1306c; }
.social-facebook:hover  { border-color: #1877f2; color: #1877f2; }
.social-youtube:hover   { border-color: #ff0000; color: #ff0000; }
.social-tiktok:hover    { border-color: var(--primary-color); color: var(--primary-color); }

.social-link svg {
    flex-shrink: 0;
}

.footer-social .social-link {
    width: fit-content;
}

.footer-social .social-link:hover {
    transform: translateX(4px);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet (768px and down) */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .header-social {
        margin-left: 0;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-call {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 8px;
    }

    .nav-item {
        padding: 10px 0;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    .page-header h1 {
        font-size: 2em;
    }

    .hero h2 {
        font-size: 2em;
    }

    section {
        padding: 40px 20px;
    }

    section h2 {
        font-size: 1.6em;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .distance-table {
        font-size: 0.9em;
    }

    .distance-table th,
    .distance-table td {
        padding: 10px;
    }

    .reservation-form {
        padding: 20px;
    }

    .footer .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* Mobile (480px and down) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1.2em;
        letter-spacing: 1px;
    }

    .page-header h1 {
        font-size: 1.5em;
    }

    .page-header p {
        font-size: 1em;
    }

    .hero h2 {
        font-size: 1.5em;
    }

    .hero p {
        font-size: 1em;
    }

    section {
        padding: 30px 15px;
    }

    section h2 {
        font-size: 1.4em;
        margin-bottom: 25px;
    }

    section h3 {
        font-size: 1.2em;
    }

    .cards-grid {
        gap: 20px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95em;
    }

    .btn-large {
        padding: 12px 25px;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .location {
        padding: 10px;
        font-size: 0.9em;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reservation-form {
        padding: 15px;
        margin: 20px 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 16px;
    }

    .faq-content {
        max-width: 100%;
    }

    .faq-item {
        padding: 20px;
    }

    .hours-info {
        padding: 20px;
    }

    .distance-table {
        font-size: 0.85em;
    }

    .footer-bottom {
        font-size: 0.85em;
    }

    .contact-card .icon {
        font-size: 2em;
    }
}

/* ==========================================
   GOOGLE REVIEWS CAROUSEL
   ========================================== */

.reviews-section {
    background-color: #ffffff;
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.reviews-score {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.reviews-stars-display {
    color: var(--primary-color);
    font-size: 1.5rem;
    letter-spacing: 3px;
    line-height: 1;
}

.reviews-count {
    color: var(--text-light);
    font-size: 0.95rem;
}

.reviews-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.reviews-carousel-wrapper {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    align-items: stretch;
}

.review-card {
    flex-shrink: 0;
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.review-card:hover {
    box-shadow: var(--shadow-elevated);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffb700 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
    min-width: 0;
}

.review-author {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 2px;
}

.review-stars {
    color: var(--primary-color);
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1;
}

.review-text {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.carousel-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: #ffffff;
    color: var(--primary-dark);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
    line-height: 1;
    padding: 0;
}

.carousel-btn:hover:not(:disabled) {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--primary-dark);
    box-shadow: 0 6px 16px rgba(255, 201, 56, 0.4);
    transform: scale(1.08);
}

.carousel-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    flex-shrink: 0;
}

.dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .reviews-summary {
        gap: 10px;
    }

    .reviews-score {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 18px;
    }
}

.text-light {
    color: var(--text-light);
}

.section-actions {
    text-align: center;
    margin-top: 30px;
}

.section-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.section-note-center {
    text-align: center;
    margin-top: 20px;
}

.coverage-note {
    margin-top: 15px;
}

.contact-card-note {
    font-size: 0.9em;
    color: var(--text-light);
}

.form-required-note {
    font-size: 0.85em;
    color: var(--text-light);
    margin-top: 15px;
}

.contact-direct-note {
    text-align: center;
    margin-top: 30px;
    color: var(--text-light);
}

.hours-callout-note {
    margin-top: 15px;
    font-size: 0.95em;
}

.error-message,
.success-message {
    color: #fff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
}

.error-message {
    background-color: var(--error-color);
}

.success-message {
    background-color: var(--success-color);
}

.seo-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.seo-benefits {
    margin-top: 24px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* ==========================================
   MODERN UI OVERRIDES (2026)
   ========================================== */

:root {
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-elevated: 0 18px 40px rgba(0, 0, 0, 0.12);
}

body {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    line-height: 1.7;
}

.container {
    max-width: 1240px;
}

.header {
    background-color: rgba(27, 27, 27, 0.95);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

.logo {
    letter-spacing: 1.5px;
}

.nav {
    gap: 22px;
}

.nav-item {
    border-bottom: none;
    border-radius: 999px;
    padding: 8px 14px;
}

.nav-item:hover,
.nav-item.active {
    background-color: rgba(255, 201, 56, 0.14);
}

.hero,
.page-header,
.service-hours {
    background: linear-gradient(125deg, #131313 0%, #232323 55%, #2b2b2b 100%);
}

.hero h1,
.hero h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.page-header h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    letter-spacing: -0.01em;
}

.page-header-services {
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.90) 0%, rgba(42, 42, 42, 0.85) 100%),
                url('../img/services-taxi-poissy-business.webp') center center / cover no-repeat;
}

.page-header-locations {
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.90) 0%, rgba(42, 42, 42, 0.85) 100%),
                url('../img/services-taxi-poissy-zones-desservies-768x527.webp') center center / cover no-repeat;
}

.hero p,
.page-header p {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

section {
    padding: clamp(48px, 7vw, 88px) 20px;
}

section h2 {
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.btn {
    border-radius: 999px;
    font-weight: 700;
    padding: 13px 24px;
}

.btn-primary {
    box-shadow: 0 8px 24px rgba(255, 201, 56, 0.32);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.01);
}

.btn-secondary {
    border-width: 2px;
    background-color: #ffffff;
    color: var(--primary-dark) !important;
    border-color: var(--primary-dark);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    color: #ffffff !important;
    border-color: var(--primary-dark);
    box-shadow: 0 10px 24px rgba(27, 27, 27, 0.3);
}

/* Homepage blocks */
.info-grid,
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .info-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }
}

.services-preview,
.benefits,
.cta-section,
.quick-contact,
.reservation-form-section,
.faq-section,
.zones-coverage,
.tarifs {
    background-color: #f7f8fa;
}

.quick-info-section,
.zones,
.coverage-info,
.distance-info,
.info-section {
    background-color: #ffffff;
}

.quick-info-section {
    padding: clamp(56px, 8vw, 96px) 20px;
}

.quick-info-section h2 {
    margin-bottom: 40px;
}

/* Ensure buttons visibility in light sections */
.services-preview .btn,
.zones .btn,
.benefits .btn {
    border: 2px solid var(--primary-dark);
}

.services-preview .btn-secondary,
.zones .btn-secondary,
.benefits .btn-secondary {
    background-color: #ffffff;
    color: var(--primary-dark) !important;
}

.services-preview .btn-secondary:hover,
.zones .btn-secondary:hover,
.benefits .btn-secondary:hover {
    background-color: var(--primary-dark);
    color: #ffffff !important;
}

.info-card,
.service-item,
.contact-card,
.service-detail-item,
.zone-section,
.card,
.faq-item,
.location,
.reservation-form,
.hours-info {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    background-color: #ffffff;
}

.info-card,
.service-item,
.service-detail-item {
    padding: 32px;
    text-align: left;
}

.info-card h3,
.service-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-card p,
.service-item p {
    font-size: 1rem;
    line-height: 1.65;
}

.info-card p,
.service-item p,
.service-detail-item p,
.service-detail-item li,
.benefit-list li,
.tarif-list li,
.steps li {
    color: var(--text-light);
}

.service-grid {
    margin-top: 24px;
}

.service-item {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-item:hover,
.info-card:hover,
.contact-card:hover,
.location:hover,
.zone-section:hover,
.card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-elevated);
}

.service-item img,
.service-detail-item img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin: 8px 0 12px;
    border: 1px solid #ececec;
}

.steps,
.benefit-list,
.tarif-list {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 22px;
}

.steps li,
.benefit-list li,
.tarif-list li {
    margin-bottom: 10px;
}

.zones p,
.coverage-info p,
.info-section p,
.service-detail-item > p {
    max-width: 980px;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 0;
}

.service-detail-reverse {
    direction: rtl;
}

.service-detail-reverse > * {
    direction: ltr;
}

.service-image {
    width: 100%;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    border: 1px solid #ececec;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-content {
    padding: 20px 0;
}

.service-content h2 {
    font-size: 1.8rem;
    margin-bottom: 18px;
    text-align: left;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.68;
    margin-bottom: 16px;
    text-align: left;
}

.service-content ul {
    margin: 16px 0 16px 20px;
    list-style: disc;
}

.service-content li {
    margin-bottom: 8px;
    text-align: left;
}

.distance-table {
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.distance-table th {
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.distance-table td,
.distance-table th {
    border-bottom: 1px solid #ececec;
}

.reservation-form {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevated);
}

.form-group input,
.form-group select,
.form-group textarea {
    border-radius: var(--radius-sm);
    border: 1px solid #d8dce2;
    background-color: #fcfcfd;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 201, 56, 0.18);
    background-color: #ffffff;
}

.faq-content {
    gap: 14px;
}

.faq-item {
    border-left: 5px solid var(--primary-color);
    border-bottom: none;
}

.footer {
    padding-top: 64px;
}

.footer-column a {
    opacity: 0.95;
}

.footer-column a:hover {
    opacity: 1;
}

@media (max-width: 992px) {
    .header .container {
        gap: 14px;
    }

    .nav {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .info-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .services-detail {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .nav-item {
        width: auto;
        border-bottom: none;
    }

    .info-grid,
    .service-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .service-detail-item,
    .info-card,
    .service-item,
    .contact-card,
    .faq-item {
        padding: 20px;
    }

    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .services-detail {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .hero {
        padding: 56px 20px 64px;
    }

    .distance-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
    }

    .distance-table th,
    .distance-table td {
        min-width: 120px;
    }
    

@media (max-width: 640px) {
    .header {
        padding: 10px 0;
    }

    .header .container {
        gap: 10px;
    }

    .header-social {
        gap: 8px;
        margin-left: 0;
    }

    .header-social-link {
        width: 34px;
        height: 34px;
    }

    .header-social-link svg {
        width: 16px;
        height: 16px;
    }

    .nav {
        width: 100%;
        gap: 8px;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
}
    .hero-badges {
        gap: 8px;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 36px;
    }
    
    .stat-item {
        padding: 16px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-large {
        width: 100%;
        min-width: auto;
    }
}

/* ==========================================
   PREMIUM HEADER + SEO PAGE SYSTEM
   ========================================== */

.header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    gap: 18px;
}

.nav-item {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.nav-item:hover,
.nav-item.active {
    box-shadow: inset 0 0 0 1px rgba(255, 201, 56, 0.28), 0 8px 16px rgba(0, 0, 0, 0.18);
}

.header-social-link {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
}

.header-social-link:hover {
    box-shadow: 0 12px 24px rgba(255, 201, 56, 0.28);
}

.seo-page section {
    padding: clamp(44px, 5.2vw, 74px) 20px;
}

.seo-page .page-header {
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 201, 56, 0.18), transparent 38%),
        radial-gradient(circle at 85% 78%, rgba(255, 201, 56, 0.12), transparent 32%),
        linear-gradient(130deg, #0f0f0f 0%, #1d1d1d 54%, #262626 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.seo-page .info-section,
.seo-page .faq-section {
    background: #ffffff;
}

.seo-page .faq-section,
.seo-page .cta-section {
    background: #f7f8fa;
}

.seo-page .faq-content {
    max-width: 980px;
}

.seo-page .faq-item,
.seo-page .card {
    border-radius: var(--radius-md);
    border: 1px solid #e6e8ec;
    box-shadow: var(--shadow-soft);
    background: #ffffff;
}

.seo-page .card {
    text-align: left;
    padding: 26px;
}

.seo-page .card h3 {
    margin-bottom: 10px;
}

.seo-page .card p {
    margin-bottom: 14px;
}

.seo-page .benefit-list {
    max-width: 900px;
    margin: 0 auto;
}

.seo-page .cta-section .btn-secondary {
    background: #ffffff;
    color: var(--primary-dark) !important;
}

@media (max-width: 992px) {
    .header .container {
        gap: 12px;
    }

    .seo-page .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   DESTINATIONS PAGE HARMONY
   ========================================== */

.destinations-page .zone-section h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.destinations-page .region-list li {
    line-height: 1.7;
}

.destinations-page .region-list a {
    font-weight: 600;
}

.destinations-page .distance-table {
    margin-top: 24px;
}

.destinations-page .coverage-info .coverage-note {
    font-size: 1.02rem;
}

/* ==========================================
   MOBILE MENU
   ========================================== */

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary-light);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 992px) {
    .header .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .menu-toggle {
        display: inline-flex;
        order: 3;
    }

    .header-social {
        order: 2;
        margin-left: auto;
    }

    .nav {
        order: 4;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
        margin-top: 10px;
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.25);
    }

    .nav.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 10px 12px;
        border-bottom: none;
    }
}
