/* ===================================
   TARIFS TAXI MARSEILLE PAGE CSS
   =================================== */

/* Note: Base styles (navbar, footer, global) are in base.css */

/* Page Container */
.seo-content {
    padding: 4rem 0;
    background: var(--bg-primary);
}

/* Hero Section adjustment for fixed navbar */
.hero {
    padding-top: 160px;
}

/* Premium Page Header Style */
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}


.content-article {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-primary);
    padding: 0 1rem;
}

/* Lead Introduction */
.lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Typography */
.content-article h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    color: var(--text-primary);
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.content-article h2:first-of-type {
    margin-top: 2rem;
}

.content-article h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
}

.content-article p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pricing-table th,
.pricing-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
    background: var(--primary-dark);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr {
    transition: background 0.3s ease;
}

.pricing-table tbody tr:hover {
    background: var(--bg-primary);
}

.pricing-table .price-col {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.3rem;
}

/* Call to Action */
.cta-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-section h2 {
    color: white;
    margin-top: 0;
    font-size: 2.2rem;
    border-bottom: none;
    padding-bottom: 0;
}

.cta-section h2::after {
    display: none;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Specific button styles for CTA section to stand out against gradient */
.cta-section a.btn {
    text-decoration: none !important;
    /* Force remove underline */
}

.cta-section .btn-primary,
.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .btn-primary:hover,
.cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    /* Orange text on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}


.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
    }

    .seo-content {
        padding: 2rem 0;
    }

    .content-article h2 {
        font-size: 1.6rem;
        margin-top: 3rem;
    }

    .lead-paragraph {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 1rem;
    }

    .cta-section {
        padding: 2rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }
}

/* Dark Mode */
body.dark-mode .lead-paragraph {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-mode .pricing-table {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-mode .pricing-table th,
body.dark-mode .pricing-table td {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .pricing-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}