:root {
            --color-bg: #FAF5F1;
            --color-bg-alt: #FAF8F5;
            --color-bg-warm: #FAF6F1;
            --color-cream: #F5EDE4;
            --color-cream-light: #F5F0EA;
            --color-sand: #E8DED2;
            --color-sand-dark: #E8E2D9;
            --color-caramel: #B8A99A;
            --color-terracotta: #B89B7A;
            --color-pink: #F4D8D4;
            --color-pink-light: #FDF8F6;
            --color-pink-border: #ECDAD2;
            --color-olive: #7D8B6F;
            --color-olive-light: #8A9A7B;
            --color-olive-text: #5F6B52;
            --color-forest: #4A5640;
            --color-earth: #6B5F54;
            --color-earth-dark: #6B5B4F;
            --color-charcoal: #3A3632;
            --color-white: #FFFFFF;
            
            --font-display: 'Libre Baskerville', Georgia, serif;
            --font-body: 'DM Sans', system-ui, sans-serif;
            
            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 32px;
            --radius-full: 100px;
            
            --shadow-sm: 0px 4px 20px rgba(0, 0, 0, 0.04);
            --shadow-md: 0px 15px 40px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0px 20px 60px rgba(0, 0, 0, 0.08);
            --shadow-card: 0px 20px 50px rgba(125, 139, 111, 0.12);
            --shadow-btn: 0px 4px 15px rgba(125, 139, 111, 0.20);
            
            --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            font-weight: 400;
            color: var(--color-charcoal);
            background-color: var(--color-bg);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: var(--font-display);
            font-weight: 400;
            line-height: 1.3;
            color: var(--color-charcoal);
        }

        p {
            color: var(--color-earth);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

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

        /* ============================================
           NAVIGATION
        ============================================ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.25rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(250, 248, 245, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .nav-logo-icon {
            width: 38px;
            height: 38px;
            background: var(--color-olive);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .nav-logo-icon svg {
            width: 18px;
            height: 18px;
            fill: var(--color-pink);
        }

        .nav-logo-text {
            font-family: var(--font-display);
            font-size: 1.15rem;
            color: var(--color-charcoal);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2.3rem;
            list-style: none;
        }

        .nav-link {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-earth);
            transition: color 0.3s var(--ease-out);
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-olive);
            border-radius: 2px;
            transition: width 0.3s var(--ease-out);
        }

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

        .nav-link:hover,
        .nav-link.active {
            color: var(--color-charcoal);
        }

        .nav-cta {
            background: var(--color-charcoal);
            color: var(--color-white);
            padding: 0.55rem 1.5rem;
            border-radius: var(--radius-full);
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s var(--ease-out);
        }

        .nav-cta:hover {
            background: var(--color-olive);
            transform: translateY(-2px);
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .nav-toggle span {
            width: 24px;
            height: 2px;
            background: var(--color-charcoal);
            border-radius: 2px;
            transition: all 0.3s var(--ease-out);
        }

        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ============================================
           BUTTONS
        ============================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 1rem 2rem;
            border-radius: var(--radius-full);
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.35s var(--ease-out);
            border: none;
        }

        .btn svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.5;
        }

        .btn-primary {
            background: var(--color-olive);
            color: var(--color-white);
            box-shadow: var(--shadow-btn);
        }

        .btn-primary:hover {
            background: var(--color-forest);
            transform: translateY(-3px);
            box-shadow: 0px 8px 25px rgba(125, 139, 111, 0.35);
        }

        .btn-outline {
            background: transparent;
            color: var(--color-charcoal);
            border: 1.5px solid var(--color-sand);
        }

        .btn-outline:hover {
            border-color: var(--color-olive);
            color: var(--color-olive);
        }

        .btn-white {
            background: var(--color-white);
            color: var(--color-forest);
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        /* ============================================
           PAGE HERO SECTION
        ============================================ */
        .page-hero {
            padding: calc(78px + 4rem) 5% 4rem;
            background: var(--color-bg);
        }

        .page-hero-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.85rem;
            color: var(--color-earth);
        }

        .breadcrumb a {
            color: var(--color-earth);
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: var(--color-olive);
        }

        .breadcrumb span {
            color: var(--color-caramel);
        }

        .page-hero h1 {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            margin-bottom: 1rem;
        }

        .page-hero h1 em {
            font-style: italic;
            color: var(--color-olive-text);
        }

        .page-hero-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--color-earth);
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .page-hero-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* ============================================
           INFO CARDS SECTION
        ============================================ */
        .info-section {
            padding: 0 5% 5rem;
            background: var(--color-bg);
        }

        .info-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .info-card {
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 2rem;
            box-shadow: var(--shadow-sm);
        }

        .info-card-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .info-card-icon {
            width: 40px;
            height: 40px;
            background: var(--color-cream-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .info-card-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--color-olive);
            fill: none;
            stroke-width: 1.5;
        }

        .info-card-title {
            font-family: var(--font-display);
            font-size: 1.25rem;
            color: var(--color-charcoal);
        }

        /* Horaires Table */
        .horaires-list {
            display: flex;
            flex-direction: column;
        }

        .horaire-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.85rem 0;
            border-bottom: 1px solid var(--color-cream);
        }

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

        .horaire-row.today {
            background: var(--color-forest);
            color: var(--color-white);
            margin: 0 -1rem;
            padding: 0.85rem 1rem;
            border-radius: var(--radius-sm);
            border-bottom: none;
        }

        .horaire-day {
            font-weight: 500;
            color: var(--color-charcoal);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .horaire-row.today .horaire-day {
            color: var(--color-white);
        }

        .horaire-badge {
            background: var(--color-olive);
            color: var(--color-white);
            font-size: 0.65rem;
            font-weight: 700;
            padding: 0.2rem 0.5rem;
            border-radius: var(--radius-full);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .horaire-time {
            font-size: 0.9rem;
            color: var(--color-earth);
        }

        .horaire-row.today .horaire-time {
            color: rgba(255, 255, 255, 0.85);
        }

        .horaire-closed {
            color: var(--color-caramel);
            font-style: italic;
        }

        /* Contact Cards */
        .contact-items {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            background: var(--color-bg-alt);
            border-radius: var(--radius-sm);
            transition: all 0.3s var(--ease-out);
        }

        .contact-item:hover {
            transform: translateX(5px);
        }

        .contact-item-icon {
            width: 44px;
            height: 44px;
            background: var(--color-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-item-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--color-olive);
            fill: none;
            stroke-width: 1.5;
        }

        .contact-item-content {
            flex: 1;
        }

        .contact-item-label {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-caramel);
            margin-bottom: 0.15rem;
        }

        .contact-item-value {
            font-size: 1rem;
            font-weight: 500;
            color: var(--color-charcoal);
        }

        .contact-item-desc {
            font-size: 0.85rem;
            color: var(--color-earth);
            margin-top: 0.15rem;
        }

        /* Map Section */
        .map-card {
            background: var(--color-white);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .map-container {
            height: 350px;
            background: var(--color-cream);
        }

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

        .map-info {
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .map-address {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .map-address-icon {
            width: 50px;
            height: 50px;
            background: var(--color-cream-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .map-address-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--color-olive);
            fill: none;
            stroke-width: 1.5;
        }

        .map-address-text h4 {
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            color: var(--color-charcoal);
        }

        .map-address-text p {
            font-size: 0.9rem;
            color: var(--color-earth);
        }

        .map-actions {
            display: flex;
            gap: 0.75rem;
        }

        .map-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.65rem 1.25rem;
            border-radius: var(--radius-full);
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s var(--ease-out);
        }

        .map-btn svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.5;
        }

        .map-btn-primary {
            background: var(--color-olive);
            color: var(--color-white);
        }

        .map-btn-primary:hover {
            background: var(--color-forest);
        }

        .map-btn-outline {
            background: transparent;
            color: var(--color-charcoal);
            border: 1.5px solid var(--color-sand);
        }

        .map-btn-outline:hover {
            border-color: var(--color-olive);
            color: var(--color-olive);
        }

        /* ============================================
           TRANSPORT SECTION
        ============================================ */
        .transport-section {
            padding: 5rem 5%;
            background: var(--color-white);
        }

        .transport-container {
            max-width: 1100px;
            margin: 0 auto;
        }

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

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .section-label-dot {
            width: 8px;
            height: 8px;
            background: var(--color-olive);
            border-radius: 50%;
        }

        .section-label-text {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-olive);
        }

        .section-header h2 {
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            margin-bottom: 0.75rem;
        }

        .section-header p {
            font-size: 1.05rem;
            color: var(--color-earth);
        }

        .transport-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .transport-card {
            background: var(--color-bg-alt);
            border-radius: var(--radius-md);
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.3s var(--ease-out);
        }

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

        .transport-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .transport-icon-metro {
            width: 48px;
            height: 48px;
            background: #FFCD00;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-body);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--color-charcoal);
        }

        .transport-icon-rer {
            width: 48px;
            height: 48px;
            background: #E3051C;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-body);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--color-white);
        }

        .transport-icon-bus svg,
        .transport-icon-car svg {
            width: 36px;
            height: 36px;
            stroke: var(--color-olive);
            fill: none;
            stroke-width: 1.5;
        }

        .transport-card h3 {
            font-family: var(--font-body);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--color-charcoal);
            margin-bottom: 0.75rem;
        }

        .transport-card p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: var(--color-earth);
        }

        .transport-card p strong {
            color: var(--color-charcoal);
            font-weight: 600;
        }

        /* ============================================
           TARIFS SECTION
        ============================================ */
        .tarifs-section {
            padding: 5rem 5%;
            background: var(--color-bg-warm);
        }

        .tarifs-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .tarifs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .tarif-card {
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 2.5rem 2rem;
            text-align: center;
            border: 1px solid var(--color-cream);
            transition: all 0.3s var(--ease-out);
        }

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

        .tarif-card.featured {
            background: var(--color-pink-light);
            border-color: var(--color-pink-border);
        }

        .tarif-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: var(--color-cream-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tarif-card.featured .tarif-icon {
            background: var(--color-white);
        }

        .tarif-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--color-olive);
            fill: none;
            stroke-width: 1.5;
        }

        .tarif-card h3 {
            font-family: var(--font-body);
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--color-charcoal);
            margin-bottom: 0.75rem;
        }

        .tarif-card p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--color-earth);
        }

        /* Tarifs Info */
        .tarifs-info {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 2rem;
            padding: 1.5rem 2rem;
            background: var(--color-white);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
        }

        .tarifs-info-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
        }

        .tarifs-info-label {
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--color-caramel);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .tarifs-info-value {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--color-charcoal);
        }

        @media (max-width: 600px) {
            .tarifs-info {
                flex-direction: column;
                gap: 1rem;
                padding: 1.25rem 1.5rem;
            }
            
            .tarifs-info-item {
                flex-direction: row;
                justify-content: space-between;
                width: 100%;
            }
        }

        /* ============================================
           URGENCE SECTION
        ============================================ */
        .urgence-section {
            padding: 4rem 5%;
            background: var(--color-bg-warm);
        }

        .urgence-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .urgence-card {
            background: var(--color-pink-light);
            border: 1px solid var(--color-pink-border);
            border-radius: var(--radius-lg);
            padding: 3rem;
            text-align: center;
        }

        .urgence-card h2 {
            font-size: 1.75rem;
            color: var(--color-terracotta);
            margin-bottom: 1rem;
        }

        .urgence-card p {
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .urgence-phone {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: var(--color-terracotta);
            color: var(--color-white);
            padding: 1rem 2rem;
            border-radius: var(--radius-full);
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s var(--ease-out);
        }

        .urgence-phone svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }

        .urgence-phone:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(184, 155, 122, 0.35);
        }

        /* ============================================
           CTA SECTION
        ============================================ */
        .cta-section {
            padding: 6rem 5%;
            background: var(--color-forest);
            position: relative;
            overflow: hidden;
        }

        .cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 30% 50%, rgba(125, 139, 111, 0.3) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta-container {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            color: var(--color-white);
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 2rem;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: var(--color-white);
            color: var(--color-forest);
            padding: 1rem 2rem;
            border-radius: var(--radius-full);
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.35s var(--ease-out);
        }

        .cta-btn svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.5;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* ============================================
           FOOTER
        ============================================ */
        .footer {
            background: var(--color-charcoal);
            color: var(--color-caramel);
            padding: 6rem 5% 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand p {
            font-size: 0.9rem;
            margin-top: 1rem;
            max-width: 280px;
            line-height: 1.7;
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.2rem;
            color: var(--color-white);
        }

        .footer-column h4 {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-white);
            margin-bottom: 1.25rem;
        }

        .footer-links {
            list-style: none;
        }

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

        .footer-links a {
            font-size: 0.9rem;
            transition: color 0.3s var(--ease-out);
        }

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

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-copyright {
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .footer-docto {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }

        .footer-docto-icon {
            width: 18px;
            height: 18px;
            background: #F1FCAC;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-docto-icon span {
            font-size: 10px;
            font-weight: 700;
            color: #000;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
        }

        .footer-legal a {
            font-size: 0.85rem;
            transition: color 0.3s var(--ease-out);
        }

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

        /* ============================================
           ANIMATIONS
        ============================================ */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s var(--ease-out);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }

        /* ============================================
           RESPONSIVE
        ============================================ */
        @media (max-width: 1024px) {
            .info-grid {
                grid-template-columns: 1fr;
            }

            .transport-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .tarifs-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
                margin: 0 auto;
            }

            .footer-top {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                max-width: 350px;
                height: 100vh;
                background: var(--color-bg);
                flex-direction: column;
                justify-content: center;
                gap: 2rem;
                transition: right 0.4s var(--ease-out);
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-toggle {
                display: flex;
            }

            .page-hero h1 {
                font-size: 2rem;
            }

            .page-hero-actions {
                flex-direction: column;
            }

            .page-hero-actions .btn {
                width: 100%;
                justify-content: center;
            }

            .transport-grid {
                grid-template-columns: 1fr;
                max-width: 350px;
                margin: 0 auto;
            }

            .map-info {
                flex-direction: column;
                text-align: center;
            }

            .map-address {
                flex-direction: column;
                text-align: center;
            }

            .map-actions {
                width: 100%;
                flex-direction: column;
            }

            .map-btn {
                width: 100%;
                justify-content: center;
            }

            .urgence-card {
                padding: 2rem 1.5rem;
            }

            .footer-top {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand p {
                max-width: 100%;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-copyright {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .page-hero {
                padding: calc(78px + 2rem) 4% 3rem;
            }

            .info-section {
                padding: 0 4% 4rem;
            }

            .info-card {
                padding: 1.5rem;
            }

            .horaire-row.today {
                margin: 0 -0.75rem;
                padding: 0.85rem 0.75rem;
            }

            .contact-item {
                flex-direction: column;
                text-align: center;
            }

            .transport-section,
            .tarifs-section {
                padding: 4rem 4%;
            }

            .urgence-section {
                padding: 3rem 4%;
            }

            .cta-section {
                padding: 4rem 4%;
            }
        }