/* ==========================================================================
   CSS VARIABLES & RESET
   ========================================================================== */
:root {
    --color-primary-dark: #0B2E5F;
    --color-primary-light: #1687C9;
    --color-white: #FFFFFF;
    --color-bg-light: #F4F7FA;
    --color-accent: #F28C28;
    --color-text: #333333;
    --color-text-muted: #666666;
    --color-border: #E0E6ED;
    --color-success: #28A745;
    --color-danger: #DC3545;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(11, 46, 95, 0.15);
    
    --border-radius: 8px;
    --border-radius-lg: 16px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

/* ==========================================================================
   UTILITIES & LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 10px; }
.w-100 { width: 100%; }
.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 20px; }
.mt-5 { margin-top: 40px; }
.mb-2 { margin-bottom: 10px; }
.mb-3 { margin-bottom: 15px; }
.mb-4 { margin-bottom: 20px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-primary { color: var(--color-primary-light); }
.text-success { color: var(--color-success); }
.text-danger { color: var(--color-danger); }
.text-white { color: var(--color-white); }
.bg-light { background-color: var(--color-bg-light); }
.min-h-60vh { min-height: 60vh; }
.hidden { display: none !important; }

/* SPA Visibility */
.view-section {
    display: none;
    animation: fadeIn 0.4s ease;
    min-height: calc(100vh - 80px - 200px); /* rough header+footer subtraction */
    padding: 60px 0;
}

.view-section.active {
    display: block;
}

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

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-primary-dark);
    font-weight: 700;
    line-height: 1.3;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.1rem;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-primary-light);
    color: var(--color-primary-light);
}

.btn-outline:hover {
    background-color: var(--color-primary-light);
    color: var(--color-white);
}

.btn-outline-light {
    background-color: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.btn-outline-light:hover {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
}

.btn-text {
    background: transparent;
    color: var(--color-primary-light);
    padding: 0;
}

.btn-text:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.btn-success { background-color: var(--color-success); color: white; }
.btn-success:hover { background-color: #218838; }

.btn-danger { background-color: var(--color-danger); color: white; }
.btn-danger:hover { background-color: #c82333; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-primary-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 3px rgba(22, 135, 201, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .half { flex: 1; }
.form-row .third { flex: 1; }

.range-slider {
    width: 100%;
    margin-top: 10px;
}

.error-text {
    color: var(--color-danger);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
#main-header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    cursor: pointer;
}

.logo-text span {
    color: var(--color-primary-light);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--color-primary-dark);
    font-size: 1.05rem;
    position: relative;
}

.nav-links a:hover {
    color: var(--color-primary-light);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-primary-light);
    transition: width var(--transition-normal);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-bg-light);
    color: var(--color-primary-dark);
    transition: all var(--transition-fast);
}

.action-btn:hover {
    background-color: var(--color-primary-light);
    color: var(--color-white);
    transform: translateY(-2px);
}

.action-btn.whatsapp:hover {
    background-color: #25D366; /* WhatsApp Brand Color */
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1a6fc4;  /* ← bleu identique au bouton Réserver */
    cursor: pointer;
}

/* ==========================================================================
   HOME SECTION
   ========================================================================== */
#sec-home {
    padding: 0;
}

/* === IMAGE DE FOND HERO ===================================================
   Placez votre photo : project/assets/images/hero-bg.jpg
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-image: url('../images/hero-bg.jpg?v=1');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dégradé sombre par-dessus la photo pour que le texte soit lisible */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 46, 95, 0.75) 0%,
        rgba(22, 135, 201, 0.35) 100%
    );
    z-index: 1;
}

/* Le contenu (titre + bouton) passe AU-DESSUS de l'overlay */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 860px;
    margin: 0 auto;
}

/* Bouton Réserver — bleu vif, visible sur toutes les photos */
.btn-reserver {
    background-color: #1a6fc4 !important;
    border-color: #1a6fc4 !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(26, 111, 196, 0.45);
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-reserver:hover,
.btn-reserver:focus {
    background-color: #155a9e !important;
    border-color: #155a9e !important;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(26, 111, 196, 0.55);
}

.hero-content h1 {
    color: var(--color-white);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.home-info {
    display: flex;
    gap: 30px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.info-card {
    flex: 1;
    background-color: var(--color-white);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: transform var(--transition-normal);
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--color-primary-light);
    margin-bottom: 15px;
}

.info-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-card p {
    color: var(--color-text-muted);
}

/* ==========================================================================
   CATALOG SECTION
   ========================================================================== */
.catalog-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.catalog-filters {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
}

.filter-card {
    background-color: var(--color-white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.filter-card h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.catalog-main {
    flex: 1;
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.car-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
    display: flex;
    flex-direction: column;
}

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

.car-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.car-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.car-card:hover .car-img-wrap img {
    transform: scale(1.05);
}

.car-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.car-badge.unavailable {
    background-color: var(--color-danger);
}

.car-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.car-title {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.car-price {
    color: var(--color-primary-light);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.car-price span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.car-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.car-features div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.car-features i {
    color: var(--color-primary-dark);
}

.car-card .btn {
    margin-top: auto;
}

.no-results {
    text-align: center;
    padding: 50px;
    background: var(--color-white);
    border-radius: var(--border-radius);
}

.no-results i {
    font-size: 3rem;
    color: var(--color-border);
    margin-bottom: 15px;
}

/* ==========================================================================
   CAR DETAILS SECTION
   ========================================================================== */
.details-layout {
    display: flex;
    gap: 40px;
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.detail-img {
    flex: 1;
    min-height: 400px;
}

.detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info {
    flex: 1;
    padding: 40px;
}

.detail-info h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.detail-price {
    font-size: 2rem;
    color: var(--color-primary-light);
    font-weight: 700;
    margin-bottom: 20px;
}

.detail-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.detail-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-bg-light);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    min-width: 100px;
}

.detail-feature i {
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

.reservation-box {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.reservation-grid {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.date-picker-wrap {
    flex: 1;
}

.price-calculator {
    background: var(--color-bg-light);
    padding: 20px;
    border-radius: var(--border-radius);
}

.calc-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.calc-row.total {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

/* ==========================================================================
   RESERVATION FORM SECTION
   ========================================================================== */
.form-layout {
    display: flex;
    gap: 30px;
}

.form-card {
    flex: 2;
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.summary-card {
    flex: 1;
    background: var(--color-primary-dark);
    color: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.summary-card h3 {
    color: var(--color-white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-item.total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--color-white);
    background-color: var(--color-primary-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   ADMIN SECTION
   ========================================================================== */
.login-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 400px;
}

.admin-container {
    display: flex;
    padding: 0;
    min-height: 100vh;
    margin-top: -60px; /* Offset the section padding */
}

.admin-sidebar {
    width: 250px;
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 30px 0;
    display: flex;
    flex-direction: column;
}

.admin-brand {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0 20px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.admin-tab {
    padding: 15px 20px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-fast);
}

.admin-tab:hover, .admin-tab.active {
    background-color: rgba(255,255,255,0.1);
    color: var(--color-white);
    border-left: 4px solid var(--color-primary-light);
}

.admin-tab .badge {
    background: var(--color-accent);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-left: auto;
}

.admin-content {
    flex: 1;
    background-color: var(--color-bg-light);
    padding: 40px;
}

.admin-panel {
    display: none;
    animation: fadeIn 0.3s;
}

.admin-panel.active {
    display: block;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.table-responsive {
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.table th {
    background-color: var(--color-bg-light);
    color: var(--color-primary-dark);
    font-weight: 600;
}

.table tr:last-child td {
    border-bottom: none;
}

.table img {
    width: 80px;
    border-radius: 4px;
}

.status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-pending { background: #FFF3CD; color: #856404; }
.status-accepted { background: #D4EDDA; color: #155724; }
.status-confirmed { background: var(--color-primary-light); color: white; }
.status-rejected { background: #F8D7DA; color: #721C24; }

.settings-form-wrapper {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    max-width: 800px;
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(11, 46, 95, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-lg);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content.admin-modal {
    max-width: 700px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.close-modal:hover {
    color: var(--color-danger);
}

.modal-icon-success {
    font-size: 4rem;
    color: var(--color-success);
    margin-bottom: 20px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
#main-footer {
    background-color: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a:hover {
    color: var(--color-primary-light);
}

.footer-col p {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 992px) {
    .catalog-layout {
        flex-direction: column;
    }
    .catalog-filters {
        width: 100%;
        position: static;
    }
    .details-layout {
        flex-direction: column;
    }
    .form-layout {
        flex-direction: column;
    }
    .summary-card {
        position: static;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        text-align: center;
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .header-actions .action-btn:not(.admin-btn) {
        display: none;
    }
    
    .home-info {
        flex-direction: column;
        gap: 15px;
        margin-top: -30px;
    }
    .hero {
        height: 60vh;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-cta {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .admin-container {
        flex-direction: column;
    }
    .admin-sidebar {
        width: 100%;
        padding: 15px;
    }
    .admin-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .admin-tab {
        padding: 10px;
        font-size: 0.9rem;
    }
    .admin-brand {
        text-align: center;
        padding: 0 0 15px;
    }
}

/* ==========================================================================
   LRB FOOTER (Bootstrap layout)
   ========================================================================== */
.lrb-footer {
    background: linear-gradient(135deg, #0b1a2e 0%, #1a2f50 100%);
    color: rgba(255,255,255,0.75);
    padding: 56px 0 0;
    font-size: 0.92rem;
}
.lrb-footer h4.lrb-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}
.lrb-footer h4.lrb-logo span,
.lrb-footer .lrb-logo span {
    color: #4db3ff;
}
.lrb-footer h5 {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}
.lrb-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 32px; height: 2px;
    background: #1a6fc4;
    border-radius: 2px;
}
.lrb-footer p {
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 8px;
}
.lrb-footer p i {
    color: #4db3ff;
    width: 18px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links a::before {
    content: '›';
    color: #1a6fc4;
    font-size: 1.1em;
}
.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}
.footer-hr {
    border-color: rgba(255,255,255,0.1);
    margin: 36px 0 20px;
}
.footer-copy {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
    padding-bottom: 20px;
}

/* ==========================================================================
   INFO CARDS CLIQUABLES (Accueil)
   ========================================================================== */
.info-card a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.info-card a:hover {
    color: var(--color-primary-light, #1a6fc4);
}
.info-card.clickable {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.info-card.clickable:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26,111,196,0.18);
}

/* ==========================================================================
   ADMIN PHOTO MULTIPLE
   ========================================================================== */
.photos-preview-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.photos-preview-grid .photo-thumb {
    position: relative;
    width: 90px; height: 70px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #dee2e6;
}
.photos-preview-grid .photo-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.photos-preview-grid .photo-thumb .remove-btn {
    position: absolute; top: 2px; right: 2px;
    width: 20px; height: 20px;
    background: rgba(220,53,69,0.9);
    color: #fff; border: none;
    border-radius: 50%;
    font-size: 11px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}
