/*
Theme Name: Swiss Limo Elite
Theme URI: https://swiss-limo-elite.ch
Author: Swiss Limo Development
Author URI: https://swiss-limo-elite.ch
Description: Template WordPress premium mobile-first pour marketplace de réservation de limousines en Suisse. Design luxueux, système de commission intégré, gestion chauffeurs et véhicules.
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: swiss-limo
Tags: marketplace, limousine, booking, luxury, mobile-first, swiss

Swiss Limo Elite - Marketplace Premium de Limousines
*/

/* ============================================
   CSS VARIABLES & DESIGN TOKENS
============================================ */
:root {
    /* Colors - Luxury Palette */
    --color-black: #0a0a0a;
    --color-charcoal: #1a1a1a;
    --color-dark-grey: #2d2d2d;
    --color-medium-grey: #4a4a4a;
    --color-light-grey: #8a8a8a;
    --color-silver: #c5c5c5;
    --color-off-white: #f5f5f5;
    --color-white: #ffffff;
    --color-gold: #c9a962;
    --color-gold-light: #e0c88a;
    --color-gold-dark: #a68b4b;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    --gradient-dark: linear-gradient(180deg, var(--color-black) 0%, var(--color-charcoal) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(26,26,26,0.9) 100%);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    
    /* Font Sizes - Mobile First */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Layout */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1536px;
    
    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.25);
    --shadow-gold: 0 4px 20px rgba(201,169,98,0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-elegant: 600ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;
}

/* ============================================
   CSS RESET & BASE
============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-charcoal);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-black);
}

/* ============================================
   UTILITY CLASSES
============================================ */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-4);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-6);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-8);
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

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

.bg-dark {
    background-color: var(--color-black);
    color: var(--color-white);
}

.bg-light {
    background-color: var(--color-off-white);
}

/* ============================================
   TYPOGRAPHY
============================================ */
.heading-display {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 500;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .heading-display {
        font-size: var(--text-5xl);
    }
}

@media (min-width: 1024px) {
    .heading-display {
        font-size: var(--text-6xl);
    }
}

.heading-section {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 500;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .heading-section {
        font-size: var(--text-3xl);
    }
}

@media (min-width: 1024px) {
    .heading-section {
        font-size: var(--text-4xl);
    }
}

.subtitle {
    font-family: var(--font-accent);
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--color-gold);
    letter-spacing: 0.05em;
}

.label-elegant {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
}

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-black);
    border: none;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,169,98,0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-black);
    border: 1px solid var(--color-black);
}

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

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: var(--radius-full);
}

/* ============================================
   HEADER & NAVIGATION
============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-lg);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 var(--space-4);
}

@media (min-width: 1024px) {
    .header-inner {
        height: 90px;
        padding: 0 var(--space-8);
    }
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    z-index: var(--z-modal);
}

.logo-icon {
    width: 40px;
    height: 40px;
}

@media (min-width: 1024px) {
    .logo-icon {
        width: 50px;
        height: 50px;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.05em;
}

@media (min-width: 1024px) {
    .logo-main {
        font-size: var(--text-xl);
    }
}

.logo-sub {
    font-family: var(--font-accent);
    font-size: var(--text-xs);
    font-style: italic;
    color: var(--color-gold);
    letter-spacing: 0.1em;
}

/* Navigation */
.main-nav {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: var(--space-8);
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.nav-link {
    position: relative;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-2) 0;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

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

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    z-index: var(--z-modal);
}

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

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
    z-index: var(--z-modal-backdrop);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-white);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.mobile-nav.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.active .mobile-nav-link:nth-child(1) { transition-delay: 100ms; }
.mobile-nav.active .mobile-nav-link:nth-child(2) { transition-delay: 150ms; }
.mobile-nav.active .mobile-nav-link:nth-child(3) { transition-delay: 200ms; }
.mobile-nav.active .mobile-nav-link:nth-child(4) { transition-delay: 250ms; }
.mobile-nav.active .mobile-nav-link:nth-child(5) { transition-delay: 300ms; }
.mobile-nav.active .mobile-nav-link:nth-child(6) { transition-delay: 350ms; }

.mobile-nav-link:hover {
    color: var(--color-gold);
}

/* Header Phone */
.header-phone {
    display: none;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-gold);
    font-weight: 500;
}

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

/* ============================================
   HERO SECTION
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-black);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201,169,98,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201,169,98,0.03) 0%, transparent 50%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: var(--space-20) var(--space-4);
    max-width: 900px;
}

.hero-label {
    display: inline-block;
    margin-bottom: var(--space-4);
    padding: var(--space-2) var(--space-4);
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: var(--text-5xl);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: var(--text-7xl);
    }
}

.hero-title .highlight {
    display: block;
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--color-gold);
}

.hero-description {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-silver);
    max-width: 600px;
    margin: 0 auto var(--space-8);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: var(--text-lg);
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

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

.hero-scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-gold);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    animation: bounce 2s infinite;
}

.hero-scroll svg {
    width: 24px;
    height: 24px;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   BOOKING FORM (HERO)
============================================ */
.booking-form-hero {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin-top: var(--space-8);
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

@media (min-width: 768px) {
    .booking-form-hero {
        padding: var(--space-8);
    }
}

.booking-form-grid {
    display: grid;
    gap: var(--space-4);
}

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

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

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: var(--space-2);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-size: var(--text-base);
    transition: all var(--transition-base);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a962' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-4) center;
    padding-right: var(--space-10);
}

.form-group select option {
    background: var(--color-charcoal);
    color: var(--color-white);
}

/* ============================================
   SECTIONS
============================================ */
.section {
    padding: var(--space-16) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-24) 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-label {
    display: inline-block;
    margin-bottom: var(--space-3);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    .section-title {
        font-size: var(--text-4xl);
    }
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--color-medium-grey);
    max-width: 600px;
    margin: 0 auto;
}

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

.section-dark .section-subtitle {
    color: var(--color-silver);
}

/* ============================================
   SERVICES SECTION
============================================ */
.services-grid {
    display: grid;
    gap: var(--space-6);
}

@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 {
    position: relative;
    padding: var(--space-8);
    background: var(--color-white);
    border: 1px solid var(--color-off-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-elegant);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-elegant);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, rgba(201,169,98,0.1) 0%, rgba(201,169,98,0.05) 100%);
    border-radius: var(--radius-lg);
    color: var(--color-gold);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: var(--space-3);
    color: var(--color-black);
}

.service-description {
    font-size: var(--text-sm);
    color: var(--color-medium-grey);
    line-height: 1.7;
}

/* ============================================
   CHAUFFEURS GRID
============================================ */
.chauffeurs-grid {
    display: grid;
    gap: var(--space-6);
}

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

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

.chauffeur-card {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-elegant);
}

.chauffeur-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.chauffeur-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.chauffeur-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.chauffeur-card:hover .chauffeur-image img {
    transform: scale(1.05);
}

.chauffeur-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-3);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    color: var(--color-gold);
    font-size: var(--text-sm);
    font-weight: 600;
}

.chauffeur-badge svg {
    width: 14px;
    height: 14px;
    fill: var(--color-gold);
}

.chauffeur-info {
    padding: var(--space-6);
}

.chauffeur-name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: var(--space-2);
    color: var(--color-black);
}

.chauffeur-location {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-medium-grey);
    margin-bottom: var(--space-4);
}

.chauffeur-location svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
}

.chauffeur-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-off-white);
}

.chauffeur-price {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-black);
}

.chauffeur-price span {
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--color-medium-grey);
}

.chauffeur-vehicles {
    font-size: var(--text-sm);
    color: var(--color-medium-grey);
}

/* ============================================
   LIMOUSINES GRID
============================================ */
.limousines-grid {
    display: grid;
    gap: var(--space-6);
}

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

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

.limousine-card {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-elegant);
}

.limousine-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.limousine-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.limousine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.limousine-card:hover .limousine-image img {
    transform: scale(1.05);
}

.limousine-category {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    padding: var(--space-1) var(--space-3);
    background: var(--color-gold);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-black);
}

.limousine-info {
    padding: var(--space-6);
}

.limousine-name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: var(--space-2);
    color: var(--color-black);
}

.limousine-specs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.limousine-spec {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-medium-grey);
}

.limousine-spec svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
}

.limousine-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.limousine-feature {
    padding: var(--space-1) var(--space-3);
    background: var(--color-off-white);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    color: var(--color-medium-grey);
}

.limousine-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-off-white);
}

.limousine-price {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-black);
}

.limousine-price span {
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--color-medium-grey);
}

/* ============================================
   FILTERS
============================================ */
.filters-bar {
    background: var(--color-white);
    border: 1px solid var(--color-off-white);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    margin-bottom: var(--space-8);
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .filters-bar {
        padding: var(--space-6);
    }
}

.filters-grid {
    display: grid;
    gap: var(--space-4);
}

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

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

.filter-group label {
    display: block;
    margin-bottom: var(--space-2);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-medium-grey);
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: var(--color-off-white);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    color: var(--color-charcoal);
    font-size: var(--text-base);
    transition: all var(--transition-base);
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: var(--color-white);
}

/* ============================================
   SINGLE CHAUFFEUR / LIMOUSINE
============================================ */
.single-hero {
    position: relative;
    padding: var(--space-32) 0 var(--space-16);
    background: var(--gradient-dark);
}

.single-hero-inner {
    display: grid;
    gap: var(--space-8);
    align-items: center;
}

@media (min-width: 1024px) {
    .single-hero-inner {
        grid-template-columns: 1fr 1.5fr;
    }
}

.single-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.single-content {
    color: var(--color-white);
}

.single-category {
    display: inline-block;
    margin-bottom: var(--space-4);
    padding: var(--space-2) var(--space-4);
    background: rgba(201, 169, 98, 0.2);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
}

.single-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 500;
    margin-bottom: var(--space-4);
    color: var(--color-white);
}

@media (min-width: 768px) {
    .single-title {
        font-size: var(--text-4xl);
    }
}

.single-rating {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.stars {
    display: flex;
    gap: var(--space-1);
    color: var(--color-gold);
}

.stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.rating-count {
    font-size: var(--text-sm);
    color: var(--color-silver);
}

.single-description {
    font-size: var(--text-base);
    color: var(--color-silver);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.single-price-box {
    display: inline-flex;
    flex-direction: column;
    padding: var(--space-4) var(--space-6);
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-lg);
}

.single-price-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: var(--space-1);
}

.single-price {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-white);
}

.single-price span {
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--color-silver);
}

/* ============================================
   RESERVATION FORM
============================================ */
.reservation-section {
    padding: var(--space-16) 0;
    background: var(--color-off-white);
}

.reservation-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .reservation-form {
        padding: var(--space-12);
    }
}

.form-section {
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--color-off-white);
}

.form-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.form-section-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: var(--space-6);
    color: var(--color-black);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.form-section-title svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}

.form-row {
    display: grid;
    gap: var(--space-4);
}

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

.form-row-3 {
    grid-template-columns: 1fr;
}

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

.form-group-light label {
    display: block;
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-charcoal);
}

.form-group-light input,
.form-group-light select,
.form-group-light textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: var(--color-off-white);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    color: var(--color-charcoal);
    font-size: var(--text-base);
    transition: all var(--transition-base);
}

.form-group-light input:focus,
.form-group-light select:focus,
.form-group-light textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.form-group-light textarea {
    min-height: 120px;
    resize: vertical;
}

/* Price Estimator */
.price-estimator {
    background: var(--color-charcoal);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    color: var(--color-white);
    margin-top: var(--space-6);
}

.price-estimator-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
    color: var(--color-gold);
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.price-line {
    display: flex;
    justify-content: space-between;
    font-size: var(--text-sm);
    color: var(--color-silver);
}

.price-total {
    display: flex;
    justify-content: space-between;
    padding-top: var(--space-4);
    margin-top: var(--space-4);
    border-top: 1px solid var(--color-medium-grey);
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-white);
}

.price-total span:last-child {
    color: var(--color-gold);
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-section {
    padding: var(--space-20) 0;
    background: var(--gradient-dark);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    text-align: center;
    padding: var(--space-8);
}

.testimonial-quote {
    position: relative;
    font-family: var(--font-accent);
    font-size: var(--text-xl);
    font-style: italic;
    color: var(--color-white);
    line-height: 1.8;
    margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
    .testimonial-quote {
        font-size: var(--text-2xl);
    }
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--color-gold);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-gold);
    overflow: hidden;
}

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

.testimonial-name {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--color-white);
}

.testimonial-role {
    font-size: var(--text-sm);
    color: var(--color-gold);
}

/* ============================================
   STATS SECTION
============================================ */
.stats-section {
    padding: var(--space-16) 0;
    background: var(--color-black);
}

.stats-grid {
    display: grid;
    gap: var(--space-8);
    text-align: center;
}

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

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

.stat-item {
    padding: var(--space-6);
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: var(--space-2);
}

@media (min-width: 768px) {
    .stat-number {
        font-size: var(--text-5xl);
    }
}

.stat-label {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-silver);
}

/* ============================================
   PRICING TABLE
============================================ */
.pricing-grid {
    display: grid;
    gap: var(--space-6);
}

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

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

.pricing-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-off-white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-elegant);
}

.pricing-card.featured {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.pricing-card.featured::before {
    content: 'Populaire';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-2) var(--space-4);
    background: var(--color-gold);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-black);
}

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

.pricing-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201,169,98,0.1) 0%, rgba(201,169,98,0.05) 100%);
    border-radius: var(--radius-lg);
    color: var(--color-gold);
}

.pricing-icon svg {
    width: 28px;
    height: 28px;
}

.pricing-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: var(--space-2);
    color: var(--color-black);
}

.pricing-description {
    font-size: var(--text-sm);
    color: var(--color-medium-grey);
    margin-bottom: var(--space-6);
}

.pricing-price {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: var(--space-6);
}

.pricing-price span {
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--color-medium-grey);
}

.pricing-features {
    text-align: left;
    margin-bottom: var(--space-8);
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    font-size: var(--text-sm);
    color: var(--color-medium-grey);
    border-bottom: 1px solid var(--color-off-white);
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
    flex-shrink: 0;
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact-section {
    padding: var(--space-16) 0;
}

.contact-grid {
    display: grid;
    gap: var(--space-8);
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

.contact-info {
    background: var(--color-charcoal);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    color: var(--color-white);
}

.contact-info-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 500;
    margin-bottom: var(--space-6);
    color: var(--color-white);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border-radius: var(--radius-lg);
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-item-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.contact-item-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
}

.contact-item-value {
    font-size: var(--text-base);
    color: var(--color-white);
}

.contact-form-wrapper {
    background: var(--color-white);
    border: 1px solid var(--color-off-white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
}

/* ============================================
   DASHBOARD (CHAUFFEUR)
============================================ */
.dashboard-section {
    padding: var(--space-32) 0 var(--space-16);
    background: var(--color-off-white);
    min-height: 100vh;
}

.dashboard-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
    .dashboard-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.dashboard-welcome {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--color-black);
}

.dashboard-grid {
    display: grid;
    gap: var(--space-6);
}

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

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

.dashboard-stat {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
}

.dashboard-stat-label {
    font-size: var(--text-sm);
    color: var(--color-medium-grey);
    margin-bottom: var(--space-2);
}

.dashboard-stat-value {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-black);
}

.dashboard-stat-change {
    font-size: var(--text-sm);
    margin-top: var(--space-2);
}

.dashboard-stat-change.positive {
    color: #22c55e;
}

.dashboard-stat-change.negative {
    color: #ef4444;
}

.dashboard-table-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin-top: var(--space-8);
    box-shadow: var(--shadow-sm);
    overflow-x: auto;
}

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

.dashboard-table th,
.dashboard-table td {
    padding: var(--space-4);
    text-align: left;
    border-bottom: 1px solid var(--color-off-white);
}

.dashboard-table th {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-medium-grey);
    background: var(--color-off-white);
}

.dashboard-table td {
    font-size: var(--text-sm);
    color: var(--color-charcoal);
}

.status-badge {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-confirmed {
    background: #d1fae5;
    color: #065f46;
}

.status-completed {
    background: #dbeafe;
    color: #1e40af;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
    background: var(--gradient-dark);
    color: var(--color-white);
    padding-top: var(--space-16);
}

.footer-top {
    display: grid;
    gap: var(--space-8);
    padding-bottom: var(--space-12);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

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

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--color-white);
}

.footer-description {
    font-size: var(--text-sm);
    color: var(--color-silver);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: var(--radius-full);
    color: var(--color-gold);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-column-title {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 500;
    margin-bottom: var(--space-6);
    color: var(--color-white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-link {
    font-size: var(--text-sm);
    color: var(--color-silver);
    transition: color var(--transition-base);
}

.footer-link:hover {
    color: var(--color-gold);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
    color: var(--color-silver);
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    padding: var(--space-6) 0;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

.footer-copyright {
    font-size: var(--text-sm);
    color: var(--color-light-grey);
}

.footer-legal {
    display: flex;
    gap: var(--space-6);
}

.footer-legal a {
    font-size: var(--text-sm);
    color: var(--color-light-grey);
    transition: color var(--transition-base);
}

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

/* ============================================
   BREADCRUMBS
============================================ */
.breadcrumbs {
    padding: var(--space-4) 0;
    background: var(--color-off-white);
}

.breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
}

.breadcrumbs-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-medium-grey);
}

.breadcrumbs-item a {
    color: var(--color-medium-grey);
    transition: color var(--transition-base);
}

.breadcrumbs-item a:hover {
    color: var(--color-gold);
}

.breadcrumbs-item.current {
    color: var(--color-charcoal);
}

.breadcrumbs-separator {
    color: var(--color-light-grey);
}

/* ============================================
   PAGINATION
============================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-12);
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-white);
    border: 1px solid var(--color-off-white);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-charcoal);
    transition: all var(--transition-base);
}

.pagination-link:hover,
.pagination-link.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

.pagination-link.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

.animate-slide-down {
    animation: slideDown 0.6s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.4s ease-out forwards;
}

/* Staggered animations */
[data-animate] {
    opacity: 0;
}

[data-animate].animated {
    animation: slideUp 0.6s ease-out forwards;
}

/* ============================================
   LOADING STATES
============================================ */
.skeleton {
    background: linear-gradient(
        90deg,
        var(--color-off-white) 25%,
        #e8e8e8 50%,
        var(--color-off-white) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-off-white);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   ACCESSIBILITY
============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
============================================ */
@media print {
    .site-header,
    .site-footer,
    .hero-scroll,
    .filters-bar,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
}
