/* ============================================
   RSP SERVICES - Custom CSS
   Design : Moderne, clair avec accent orange
   ============================================ */

:root {
    --primary: #1b2a4a;
    --primary-light: #243556;
    --primary-medium: #2d4068;
    --accent: #ff6b35;
    --accent-hover: #ff8555;
    --accent-dark: #e55a25;
    --accent-soft: rgba(255, 107, 53, 0.08);
    --text-dark: #1a1a2e;
    --text-body: #4a5568;
    --text-white: #ffffff;
    --text-muted: #718096;
    --bg-white: #ffffff;
    --bg-light: #f7f8fb;
    --bg-soft: #edf0f7;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-accent: 0 4px 20px rgba(255, 107, 53, 0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */

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

html,
body {
    overflow-x: clip;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

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

a:hover {
    color: var(--accent-hover);
}

.text-accent {
    color: var(--accent);
}

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

/* ===== SITE HEADER ===== */

.site-header {
    z-index: 1050;
}

/* ===== TOP BAR ===== */

.top-bar {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    padding: 8px 0;
}

.top-bar i {
    color: var(--accent);
    margin-right: 4px;
}

.top-bar-phone {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.85rem;
}

.top-bar-phone:hover {
    color: var(--accent);
}

/* ===== NAVBAR ===== */

.navbar {
    background: var(--bg-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    padding: 0.25rem 0;
}

.navbar-logo {
    height: 45px;
    width: auto;
}

.navbar-toggler {
    border: 1px solid var(--border-color);
    padding: 6px 10px;
}

.nav-link {
    color: var(--text-body) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent) !important;
}

.dropdown-menu {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 8px;
    box-shadow: var(--shadow-card-hover);
}

.dropdown-item {
    color: var(--text-body);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-item i {
    margin-right: 8px;
    color: var(--accent);
    width: 20px;
    text-align: center;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: var(--bg-light);
    color: var(--accent);
}

.btn-nav-cta {
    color: var(--accent) !important;
    font-weight: 600 !important;
}

.btn-phone-cta {
    background: var(--accent);
    color: var(--text-white) !important;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-phone-cta:hover {
    background: var(--accent-hover);
    color: var(--text-white) !important;
    box-shadow: var(--shadow-accent);
    transform: translateY(-1px);
}

/* ===== BUTTONS ===== */

.btn-accent {
    background: var(--accent);
    color: var(--text-white);
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    transition: var(--transition);
}

.btn-accent:hover {
    background: var(--accent-hover);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
    transform: translateY(-2px);
}

.btn-outline-light {
    border-radius: 50px;
    font-weight: 600;
    padding: 12px 32px;
}

/* ===== HERO SECTIONS (restent sombres) ===== */

.hero-home,
.hero-service,
.hero-contact {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #0f1b30 50%, var(--primary-medium) 100%);
    overflow: hidden;
}

.hero-home::before,
.hero-service::before,
.hero-contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-home::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title,
.hero-home h1,
.hero-service h1,
.hero-contact h1 {
    color: var(--text-white);
}

.min-vh-80 {
    min-height: 80vh;
    padding: 40px 0;
}

.min-vh-60 {
    min-height: 60vh;
    padding: 40px 0;
}

.min-vh-50 {
    min-height: 50vh;
    padding: 40px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 107, 53, 0.25);
}

.hero-badge i {
    margin-right: 6px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    font-weight: 400;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Image */
.hero-image-wrapper {
    text-align: center;
}

.hero-image {
    width: 100%;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-image-mobile img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Hero Stats Card */
.hero-stats-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 2px;
}

.stat-unit {
    font-size: 0.9rem;
    font-weight: 600;
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== SECTIONS COMMUNES ===== */

.section-services,
.section-about,
.section-zones,
.section-service-detail,
.section-zones-service,
.section-advantages,
.section-other-services,
.section-contact-form,
.section-404 {
    padding: 100px 0;
}

.section-services {
    background: var(--bg-light);
}

.section-zones-service {
    background: var(--bg-light);
}

.section-other-services {
    background: var(--bg-light);
}

.section-about {
    background: var(--bg-white);
}

.section-zones {
    background: var(--bg-light);
}

.section-header {
    margin-bottom: 60px;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICE CARDS (HOME) ===== */

.service-card {
    display: block;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.service-card-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-soft);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card-icon i {
    font-size: 1.8rem;
    color: var(--accent);
}

.service-card:hover .service-card-icon {
    background: var(--accent);
}

.service-card:hover .service-card-icon i {
    color: var(--text-white);
}

.service-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.service-card-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.service-card-link {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}

.service-card-link i {
    transition: var(--transition);
}

.service-card:hover .service-card-link i {
    transform: translateX(4px);
}

/* ===== ABOUT SECTION ===== */

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    max-height: 500px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    object-position: top;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--text-white);
    border-radius: var(--radius);
    padding: 20px 28px;
    text-align: center;
    box-shadow: var(--shadow-accent);
}

.exp-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 8px;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 14px 18px;
    transition: var(--transition);
}

.advantage-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.advantage-item i {
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.advantage-item span {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-body);
}

/* ===== ZONES ===== */

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.zone-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    color: var(--text-body);
    transition: var(--transition);
}

.zone-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.zone-card-img {
    width: 100%;
    height: auto;
}

.zone-card-body {
    padding: 12px 16px;
    font-size: 0.95rem;
}

.zone-card-body i {
    color: var(--accent);
    margin-right: 6px;
}

.zone-card-body small {
    color: var(--text-muted);
    margin-left: 2px;
}

.zone-card:hover .zone-card-body {
    color: var(--accent);
}

.zone-card-active {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent);
    pointer-events: none;
}

/* ===== SERVICE INTRO SECTION ===== */

.section-service-intro {
    padding: 100px 0;
    background: var(--bg-white);
}

.intro-text p {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.intro-highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 18px 22px;
    transition: var(--transition);
}

.intro-highlight-item:hover {
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.intro-highlight-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--accent-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-highlight-icon i {
    font-size: 1.3rem;
    color: var(--accent);
}

.intro-highlight-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.intro-highlight-item span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.intro-image-block {
    position: relative;
}

.intro-city-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.intro-image-placeholder {
    background: linear-gradient(135deg, var(--bg-soft), var(--bg-light));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.intro-image-placeholder i {
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.4;
}

.intro-image-placeholder span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.intro-image-placeholder small {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.intro-price-floating {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--accent);
    color: var(--text-white);
    border-radius: var(--radius);
    padding: 16px 24px;
    text-align: center;
    box-shadow: var(--shadow-accent);
}

.intro-price-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.9;
}

.intro-price-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.1;
}

/* ===== PRESTATIONS CARDS ===== */

.section-prestations {
    padding: 100px 0;
    background: var(--bg-light);
}

.prestation-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.prestation-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.prestation-card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.prestation-card:hover .prestation-card-icon {
    background: var(--accent);
}

.prestation-card-icon i {
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.prestation-card:hover .prestation-card-icon i {
    color: var(--text-white);
}

.prestation-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.prestation-card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.prestation-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
    margin-top: auto;
}

.prestation-card-cta:hover {
    color: var(--accent-hover);
    gap: 12px;
}

/* ===== SERVICE EXTRA SECTIONS ===== */

.section-service-extra {
    padding: 80px 0;
    background: var(--bg-white);
}

/* ===== INLINE CTA ===== */

.section-inline-cta {
    padding: 60px 0;
    background: var(--bg-white);
}

.inline-cta-box {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

.inline-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.inline-cta-box h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--text-white);
}

.inline-cta-box p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-size: 1rem;
}

/* ===== SERVICE DETAIL PAGE ===== */

.detail-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.detail-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-card);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.detail-icon i {
    font-size: 1.3rem;
    color: var(--accent);
}

.detail-card h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.detail-card p {
    color: var(--text-body);
    margin-bottom: 0;
    line-height: 1.8;
}

/* Sidebar */
.sidebar-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.sidebar-card h3 i {
    color: var(--accent);
    margin-right: 8px;
}

.sidebar-cta {
    background: var(--primary);
    border-color: var(--primary);
}

.sidebar-cta h3 {
    color: var(--text-white);
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.75);
}

.sidebar-cta small {
    color: rgba(255, 255, 255, 0.6) !important;
}

.prestations-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prestations-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-body);
    font-size: 0.95rem;
}

.prestations-list li:last-child {
    border-bottom: none;
}

.prestations-list li i {
    color: var(--accent);
    margin-right: 10px;
    font-weight: bold;
}

.price-badge {
    background: var(--accent-soft);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius);
    padding: 14px 20px;
    text-align: center;
    margin-top: 20px;
    color: var(--accent-dark);
    font-size: 1.05rem;
}

.price-badge strong {
    font-size: 1.3rem;
}

/* Advantage Cards */
.advantage-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.advantage-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.advantage-card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.advantage-card-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.advantage-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.advantage-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 0;
}

/* Other services chips */
.other-service-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 10px 22px;
    color: var(--text-body);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.other-service-chip:hover {
    background: var(--accent);
    color: var(--text-white);
    border-color: var(--accent);
}

.other-service-chip i {
    color: var(--accent);
}

.other-service-chip:hover i {
    color: var(--text-white);
}

.other-service-chip.small {
    padding: 6px 14px;
    font-size: 0.82rem;
}

/* ===== CONTACT FORM ===== */

.section-contact-form {
    background: var(--bg-white);
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-form-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.form-control,
.form-select {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-body);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    background: var(--bg-white);
    border-color: var(--accent);
    color: var(--text-dark);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-info-item i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.88rem;
    margin-bottom: 2px;
}

.contact-info-item p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.contact-info-item a {
    color: var(--text-muted);
}

.contact-info-item a:hover {
    color: var(--accent);
}

/* ===== CTA BANNER ===== */

.cta-banner {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-hover) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: var(--text-white);
}

.cta-banner .lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
}

.btn-cta-large {
    background: var(--text-white);
    color: var(--accent-dark);
    font-weight: 800;
    font-size: 1.15rem;
    padding: 16px 40px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-cta-large:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER (reste sombre) ===== */

.site-footer {
    background: var(--primary);
    padding: 60px 0 30px;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-list i {
    color: var(--accent);
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-list a:hover {
    color: var(--accent);
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links li i {
    color: var(--accent);
    margin-right: 6px;
    font-size: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

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

.footer-bottom strong {
    color: var(--accent);
}

/* ===== 404 ===== */

.section-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* ===== ANIMATIONS ===== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ===== RESPONSIVE ===== */

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .min-vh-80,
    .min-vh-60,
    .min-vh-50 {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .navbar-collapse {
        background: var(--bg-white);
        border-radius: var(--radius);
        padding: 16px;
        margin-top: 12px;
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-card-hover);
    }

    .btn-phone-cta {
        margin-top: 8px;
        display: inline-block;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .hero-badge {
        font-size: 0.8rem;
    }

    .section-services,
    .section-about,
    .section-zones,
    .section-service-detail,
    .section-service-intro,
    .section-prestations,
    .section-service-extra,
    .section-zones-service,
    .section-advantages,
    .section-other-services,
    .section-contact-form,
    .section-inline-cta,
    .section-404 {
        padding: 60px 0;
    }

    .intro-image-placeholder {
        height: 320px;
    }

    .intro-city-image {
        height: 320px;
    }

    .inline-cta-box {
        padding: 32px 24px;
    }

    .inline-cta-box h3 {
        font-size: 1.3rem;
    }

    .cta-banner {
        padding: 50px 0;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }

    .about-experience-badge {
        bottom: -10px;
        right: 10px;
    }

    .top-bar {
        font-size: 0.75rem;
    }

    .top-bar .d-flex.gap-4 {
        gap: 8px !important;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.7rem;
    }

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

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== ASSURANCES TABLE (Landing) ===== */

.section-assurances {
    padding: 100px 0;
    background: var(--primary);
}

.section-assurances .section-tag {
    color: var(--accent);
}

.section-assurances .section-title {
    color: var(--text-white);
}

.section-assurances .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.section-assurances .text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}

.table-assurances {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}

.table-assurances thead {
    background: var(--bg-light);
}

.table-assurances thead th {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 16px 20px;
    border: none;
    white-space: nowrap;
}

.table-assurances thead th i {
    color: var(--accent);
}

.table-assurances tbody tr {
    transition: var(--transition);
}

.table-assurances tbody tr:hover {
    background: var(--accent-soft);
}

.table-assurances tbody td {
    padding: 14px 20px;
    font-size: 0.92rem;
    color: var(--text-body);
    border-color: var(--border-color);
    vertical-align: middle;
}

.table-assurances tbody td strong {
    color: var(--text-dark);
}

.plafond-badge {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

@media (max-width: 767.98px) {
    .section-assurances {
        padding: 60px 0;
    }

    .table-assurances thead th,
    .table-assurances tbody td {
        padding: 10px 12px;
        font-size: 0.82rem;
    }

    .plafond-badge {
        font-size: 0.78rem;
        padding: 3px 10px;
    }
}

/* ===== LANDING MOBILE : Logo centré + Sticky footer ===== */

@media (max-width: 991.98px) {
    .is-landing .navbar .container {
        justify-content: center !important;
    }

    .is-landing .navbar .btn-phone-cta {
        display: none;
    }

    .landing-sticky-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1040;
        padding: 12px 16px;
        background: var(--bg-white);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-color);
    }

    .landing-sticky-footer .btn-phone-cta {
        display: block;
        text-align: center;
        padding: 14px 20px;
        font-size: 1.1rem;
        border-radius: var(--radius);
    }

    /* Éviter que le contenu soit caché derrière le sticky footer */
    .is-landing .site-footer {
        padding-bottom: 80px;
    }
}

/* ===== SCROLLBAR ===== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: #c4cad4;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ===== SELECTION ===== */

::selection {
    background: var(--accent);
    color: var(--text-white);
}
