/*
Theme Name: BOUKHARS DRIVER
Theme URI: https://boukhars.fr
Author: BOUKHARS DRIVER
Author URI: https://boukhars.fr
Description: Thème WordPress premium pour BOUKHARS DRIVER - Transport privé premium à Lille. Design corporate noir, blanc et or. Optimisé SEO.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: boukhars-driver
Tags: one-column, custom-menu, featured-images, translation-ready, custom-logo

BOUKHARS DRIVER WordPress Theme
Transport Privé Premium à Lille - VTC Lille, Transfert Aéroport, Chauffeur Privé
*/

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    --bg-primary: #0A0A0A;
    --bg-secondary: #141414;
    --bg-tertiary: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #A1A1AA;
    --text-muted: #71717A;
    --brand-gold: #D4AF37;
    --brand-gold-hover: #B5952F;
    --brand-gold-light: #F3E5AB;
    --border-default: rgba(255, 255, 255, 0.1);
    --border-focus: #D4AF37;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container { padding: 0 2rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 3rem; }
}

.section-dark { background-color: var(--bg-primary); }
.section-darker { background-color: var(--bg-secondary); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--brand-gold);
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.875rem 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--brand-gold-hover);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: transparent;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.875rem 2rem;
    border: 1px solid var(--border-default);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--brand-gold);
    color: var(--brand-gold);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-default);
    padding: 0.75rem 0;
}

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

.site-logo {
    display: flex;
    flex-direction: column;
}

.site-logo .brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.site-logo .brand-tagline {
    font-size: 0.625rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--brand-gold);
}

.main-navigation {
    display: none;
}

@media (min-width: 1024px) {
    .main-navigation {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.main-navigation a {
    position: relative;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.main-navigation a:hover,
.main-navigation a.current {
    color: var(--text-primary);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--brand-gold);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation a.current::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.header-phone:hover { color: var(--text-primary); }

@media (min-width: 768px) {
    .header-phone { display: flex; }
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle { display: none; }
}

/* Mobile Navigation */
.mobile-navigation {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    padding: 2rem;
    z-index: 999;
}

.mobile-navigation.active { display: block; }

.mobile-navigation a {
    display: block;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-default);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(10, 10, 10, 0.5) 0%, 
        rgba(10, 10, 10, 0.7) 50%, 
        rgba(10, 10, 10, 1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 8rem 1.5rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--brand-gold);
}

.stat-label {
    display: block;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.centered { max-width: 800px; margin: 0 auto 4rem; }

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 10rem 0 5rem;
    background-color: var(--bg-primary);
}

.page-header .section-label { margin-bottom: 1rem; }
.page-header h1 { margin-bottom: 1.5rem; }

.page-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-section {
    padding: 5rem 0 6rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.service-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--brand-gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand-gold);
    transition: gap 0.3s ease;
}

.service-link:hover { gap: 0.75rem; }

/* ============================================
   TWO COLUMN LAYOUT
   ============================================ */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .two-column-layout {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
    
    .two-column-layout.reverse .column-content { order: 1; }
    .two-column-layout.reverse .column-image { order: 2; }
}

.column-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ============================================
   ADVANTAGES GRID
   ============================================ */
.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.advantage-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--brand-gold);
}

.advantage-text h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

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

/* ============================================
   DESTINATIONS GRID
   ============================================ */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.destination-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-default);
}

.destination-card strong {
    color: var(--text-primary);
}

.destination-card small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   MAP PLACEHOLDER
   ============================================ */
.map-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
}

.map-placeholder > * { position: relative; z-index: 1; }

/* ============================================
   BOOKING PLACEHOLDER
   ============================================ */
.booking-section {
    padding: 5rem 0 6rem;
}

.booking-placeholder {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: var(--bg-secondary);
    border: 2px dashed rgba(212, 175, 55, 0.4);
    text-align: center;
}

.booking-notice {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .booking-buttons { flex-direction: row; }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 5rem 0 6rem;
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, 
        var(--bg-primary), 
        rgba(10, 10, 10, 0.9), 
        var(--bg-primary)
    );
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.cta-content h2 { margin-bottom: 1.5rem; }

.cta-content > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cta-buttons { flex-direction: row; }
}

.cta-section-simple {
    padding: 5rem 0 6rem;
    text-align: center;
}

.cta-section-simple h2 { margin-bottom: 1rem; }
.cta-section-simple > .container > p { max-width: 600px; margin: 0 auto 2rem; }
.cta-section-simple .cta-buttons { justify-content: center; }

/* ============================================
   SERVICE DETAIL SECTIONS
   ============================================ */
.service-detail {
    padding: 5rem 0 6rem;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .feature-list { grid-template-columns: repeat(2, 1fr); }
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ============================================
   AIRPORTS GRID
   ============================================ */
.airports-section {
    padding: 5rem 0 6rem;
}

.airports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .airports-grid { grid-template-columns: repeat(4, 1fr); }
}

.airport-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-default);
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.airport-card:hover { border-color: rgba(212, 175, 55, 0.3); }
.airport-card h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 500; margin-bottom: 0.25rem; }
.airport-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
    padding: 5rem 0 6rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .values-grid { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-default);
    padding: 2rem;
    transition: border-color 0.3s ease;
}

.value-card:hover { border-color: rgba(212, 175, 55, 0.3); }
.value-card h3 { margin: 1.5rem 0 0.75rem; }
.value-card p { font-size: 0.875rem; margin: 0; }

/* ============================================
   NETWORK FEATURES
   ============================================ */
.network-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.network-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.network-feature > span {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--brand-gold);
}

.network-feature h4 { font-family: var(--font-body); font-size: 1rem; margin-bottom: 0.25rem; }
.network-feature p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ============================================
   BUSINESS SECTION
   ============================================ */
.business-section {
    padding: 5rem 0 6rem;
}

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

@media (min-width: 768px) {
    .business-cards { grid-template-columns: repeat(3, 1fr); }
}

.business-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-default);
    padding: 2rem;
    text-align: center;
}

.business-card h3 { font-family: var(--font-body); font-size: 1rem; margin: 1rem 0 0.5rem; }
.business-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

.centered-cta { text-align: center; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-cards {
    padding: 3rem 0;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 1024px) {
    .info-cards-grid { grid-template-columns: repeat(4, 1fr); }
}

.info-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-default);
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.info-card:hover { border-color: rgba(212, 175, 55, 0.3); }
.info-card h3 { font-family: var(--font-body); font-size: 1rem; margin: 1rem 0 0.25rem; }
.info-card a { color: var(--brand-gold); }
.info-card a:hover { color: var(--brand-gold-hover); }
.info-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0.25rem 0 0; }

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0 6rem;
}

.column-form h2 { margin-bottom: 1rem; }
.column-form > p { margin-bottom: 2rem; }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-default);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea { resize: none; }

/* Info Boxes */
.info-box, .urgent-box {
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.info-box {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-default);
}

.urgent-box {
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.info-box h3, .urgent-box h3 { margin-bottom: 1rem; }
.info-box ul { list-style: none; margin-top: 1.5rem; }
.info-box li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 0.75rem; }

/* FAQ Section */
.faq-section {
    padding: 5rem 0 6rem;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-content h2 { text-align: center; margin-bottom: 3rem; }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-default);
    padding: 1.5rem;
}

.faq-item h4 { font-family: var(--font-body); font-size: 1rem; margin-bottom: 0.75rem; }
.faq-item p { font-size: 0.875rem; margin: 0; }

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-coming-soon {
    padding: 3rem 0;
}

.coming-soon-box {
    background-color: var(--bg-primary);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 3rem 2rem;
    text-align: center;
}

.coming-soon-box h2 { margin: 1rem 0; }
.coming-soon-box p { max-width: 500px; margin: 0 auto; }

.seo-content {
    padding: 5rem 0 6rem;
}

.seo-content h2 { text-align: center; margin-bottom: 3rem; }

.seo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .seo-grid { grid-template-columns: repeat(2, 1fr); }
}

.seo-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-default);
    padding: 1.5rem;
}

.seo-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.seo-card p { font-size: 0.875rem; margin: 0; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-default);
}

.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 2rem; }
}

.footer-brand .site-logo { margin-bottom: 1.5rem; }
.footer-brand > p { font-size: 0.875rem; margin-bottom: 1.5rem; }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact a, .footer-contact span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-contact a:hover { color: var(--brand-gold); }

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-column ul { list-style: none; }

.footer-column li { margin-bottom: 0.75rem; }

.footer-column a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-column a:hover { color: var(--brand-gold); }

.footer-cta p { font-size: 0.875rem; margin-bottom: 1.5rem; }

.footer-bottom {
    border-top: 1px solid var(--border-default);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}

.footer-copyright { font-size: 0.75rem; color: var(--text-muted); }

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

/* ============================================
   ICONS (Font Awesome placeholders)
   ============================================ */
.icon-phone::before { content: '📞'; }
.icon-mail::before { content: '✉️'; }
.icon-map-pin::before { content: '📍'; }
.icon-clock::before { content: '🕐'; }
.icon-plane::before { content: '✈️'; }
.icon-train::before { content: '🚆'; }
.icon-calendar::before { content: '📅'; }
.icon-users::before { content: '👥'; }
.icon-shield::before { content: '🛡️'; }
.icon-award::before { content: '🏆'; }
.icon-check::before { content: '✓'; color: var(--brand-gold); }
.icon-heart::before { content: '❤️'; }
.icon-zap::before { content: '⚡'; }
.icon-target::before { content: '🎯'; }

/* ============================================
   UTILITIES
   ============================================ */
.text-gold { color: var(--brand-gold); }
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }

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

.animate-fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.wp-block-button__link { @extend .btn-primary; }
.wp-block-separator { border-color: var(--border-default); }

/* Elementor Compatibility */
.elementor-widget-container h1,
.elementor-widget-container h2,
.elementor-widget-container h3 {
    font-family: var(--font-heading);
}

.elementor-section.section-dark { background-color: var(--bg-primary); }
.elementor-section.section-darker { background-color: var(--bg-secondary); }
