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

:root {
    --primary-color: #2ecc71;
    --secondary-color: #27ae60;
    --accent-color: #1abc9c;
    --bg-dark: #0a0e13;
    --bg-secondary: #131820;
    --bg-card: #1a2030;
    --text-primary: #e4e6eb;
    --text-secondary: #b0b3b8;
    --border-color: #2d3748;
    --danger-color: #e74c3c;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --shadow: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.6);
    --shadow-glow: 0 0 20px rgba(46, 204, 113, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    border-bottom: 2px solid transparent;
}

.navbar-transparent {
    background-color: transparent;
}

.navbar-scrolled {
    background-color: rgba(10, 14, 19, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    border-bottom-color: var(--primary-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 24px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    min-width: 120px;
    text-align: center;
    display: inline-block;
}

.nav-links a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
    color: var(--bg-dark);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

/* Hamburger */
.hamburger {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    width: 44px;
    height: 44px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
}

.hamburger:active {
    transform: scale(0.92);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hamburger span:nth-child(1) {
    top: 13px;
}

.hamburger span:nth-child(2) {
    top: 21px;
}

.hamburger span:nth-child(3) {
    top: 29px;
}

.hamburger.active {
    background: rgba(231, 76, 60, 0.15);
    border-color: rgba(231, 76, 60, 0.3);
}

.hamburger.active span:nth-child(1) {
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
}

.hamburger.active span:nth-child(3) {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
}

/* ==================== HERO FULLSCREEN ==================== */
.hero {
    background: linear-gradient(to bottom, rgba(10,14,19,0.3), rgba(10,14,19,0.75)),
                url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1920&q=80') center/cover no-repeat;
    color: #fff;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-fullscreen {
    min-height: 100vh;
    padding: 120px 24px 80px;
}

.hero-reservation {
    min-height: 55vh;
    padding: 120px 24px 80px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.85);
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 12px 24px;
}

.hero-stat-value {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    cursor: pointer;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
    z-index: 2;
}

.scroll-indicator:hover {
    color: #fff;
}

.scroll-indicator span {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    margin: 0 auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(8px); }
    60% { transform: rotate(45deg) translateY(4px); }
}

/* ==================== SECTION TITLES ==================== */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
    filter: brightness(1.1);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

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

.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.btn-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    padding: 8px 0;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--primary-color);
    border-bottom-color: #fff;
    transform: translateX(5px);
}

/* ==================== FULLWIDTH BANNER ==================== */
.fullwidth-banner {
    min-height: 55vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-overlay {
    background: linear-gradient(135deg, rgba(10,14,19,0.7), rgba(10,14,19,0.5));
    width: 100%;
    height: 100%;
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.banner-overlay h2 {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    letter-spacing: -0.5px;
}

.banner-overlay p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.7;
}

/* ==================== EXPERIENCE SECTION ==================== */
.experience-section {
    padding: 100px 24px;
    background: var(--bg-dark);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.experience-card {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.experience-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,14,19,0.95) 0%, rgba(10,14,19,0.4) 50%, rgba(10,14,19,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem 2rem;
    transition: background 0.4s ease;
}

.experience-card-overlay h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.experience-card-overlay p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.experience-card-overlay .btn-link {
    font-size: 0.85rem;
    align-self: flex-start;
}

/* ==================== RIDES SECTION ==================== */
.rides-section {
    padding: 100px 24px;
    background-color: var(--bg-secondary);
}

.rides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.ride-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.ride-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.ride-content {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ride-content h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.ride-stats {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.ride-stats span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    background-color: var(--bg-secondary);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.ride-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    flex: 1;
}

.ride-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.ride-price {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.ride-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-secondary);
    transition: transform 0.5s ease;
}

.ride-card:hover .ride-image {
    transform: scale(1.08);
}

.ride-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.ride-features li {
    font-size: 0.82rem;
    color: var(--primary-color);
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.25);
    padding: 4px 12px;
    border-radius: 20px;
}

.ride-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-end;
}

.ride-actions .btn-link {
    font-size: 0.85rem;
}

/* ==================== DETAIL PAGE (Article) ==================== */
.detail-hero {
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-secondary);
    position: relative;
    display: flex;
    align-items: flex-end;
}

.detail-hero-overlay {
    width: 100%;
    padding: 60px 0 50px;
    background: linear-gradient(to top, rgba(10,14,19,0.97) 0%, rgba(10,14,19,0.5) 50%, transparent 100%);
}

.detail-back {
    display: inline-block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    transition: color 0.3s;
    padding-top: 80px;
}

.detail-back:hover {
    color: var(--primary-color);
}

.detail-hero-overlay h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.1;
}

.detail-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.5;
}

/* Article layout */
.detail-article {
    background: var(--bg-dark);
    padding: 0 0 60px;
}

.detail-article-container {
    max-width: 820px;
}

/* Intro */
.detail-intro {
    padding: 50px 0 40px;
}

.detail-intro p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-secondary);
}

/* Key facts bandeau */
.detail-keyfacts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 50px;
}

.keyfact {
    background: var(--bg-card);
    padding: 1.5rem 1rem;
    text-align: center;
}

.keyfact-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.keyfact-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section headings */
.detail-section-article {
    margin-bottom: 50px;
}

.detail-section-article h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

/* Timeline / Déroulement */
.detail-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 44px;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-marker {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding-top: 2px;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.timeline-header h4 {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.timeline-time {
    font-size: 0.85rem;
    color: var(--primary-color);
    background: rgba(46, 204, 113, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Full-width photo break */
.detail-fullphoto {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    margin-bottom: 50px;
    background-color: var(--bg-secondary);
}

/* Highlights */
.detail-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.8rem;
    transition: border-color 0.3s;
}

.highlight-card:hover {
    border-color: var(--primary-color);
}

.highlight-card h4 {
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.highlight-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Bon à savoir */
.detail-know-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.detail-know-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.detail-know-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.6rem;
}

.detail-know-item h4 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.detail-know-item p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* CTA bar */
.detail-cta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    margin-top: 20px;
}

.detail-cta-bar p {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
}

/* Responsive detail */
@media (max-width: 768px) {
    .detail-hero-overlay h1 {
        font-size: 2rem;
    }

    .detail-hero-subtitle {
        font-size: 1rem;
    }

    .detail-intro p {
        font-size: 1.05rem;
    }

    .detail-keyfacts {
        grid-template-columns: 1fr 1fr;
    }

    .detail-highlights,
    .detail-know-grid {
        grid-template-columns: 1fr;
    }

    .detail-fullphoto {
        height: 220px;
    }

    .detail-cta-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
}

/* ==================== INFO SECTION ==================== */
.info-section {
    padding: 100px 24px;
    background: var(--bg-dark);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.8rem;
}

.info-item h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.info-note {
    color: var(--text-secondary) !important;
    font-size: 0.9rem !important;
    margin-top: 0.3rem;
}

.info-item ul {
    list-style: none;
    padding: 0;
}

.info-item ul li {
    color: var(--text-secondary);
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.info-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.info-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

/* ==================== REVIEWS SECTION (Home) ==================== */
.reviews-section {
    padding: 80px 24px;
    background: var(--bg-secondary);
}

.reviews-section .section-title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.reviews-section .section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.home-review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.home-review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

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

.home-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    flex-shrink: 0;
}

.home-review-info {
    flex: 1;
}

.home-review-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.home-review-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.home-review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.home-review-stars svg {
    width: 18px;
    height: 18px;
}

.home-review-stars svg.filled {
    fill: #ffc107;
    stroke: #ffc107;
}

.home-review-stars svg.empty {
    fill: none;
    stroke: var(--border-color);
}

.home-review-comment {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.home-review-comment::before {
    content: '"';
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.home-review-comment::after {
    content: '"';
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.no-reviews-message {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 16px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== GOOGLE REVIEWS SECTION ==================== */
.google-reviews-section {
    padding: 60px 24px;
    background: var(--bg-primary);
}

.google-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.google-logo svg {
    flex-shrink: 0;
}

.google-rating-summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.google-stars {
    display: flex;
    gap: 2px;
}

.google-stars svg {
    width: 20px;
    height: 20px;
}

.google-rating-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.google-reviews-coming-soon {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(66,133,244,0.1), rgba(52,168,83,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

.google-reviews-coming-soon h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.google-reviews-coming-soon p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.google-notify-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ==================== NEWSLETTER SECTION ==================== */
.newsletter-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.08), rgba(46, 204, 113, 0.04));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.newsletter-text p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.newsletter-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
}

.newsletter-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.newsletter-field input,
.newsletter-field select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-field input:focus,
.newsletter-field select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.newsletter-field input::placeholder {
    color: var(--text-secondary);
}

.newsletter-field-select {
    grid-column: span 2;
}

.newsletter-interests {
    text-align: left;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 10px;
}

.newsletter-interests-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.newsletter-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.nl-checkbox {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 6px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.2s ease;
}

.nl-checkbox:hover {
    border-color: var(--primary-color);
}

.nl-checkbox input {
    accent-color: var(--primary-color);
}

.nl-checkbox input:checked + span,
.nl-checkbox:has(input:checked) {
    background: rgba(39, 174, 96, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.newsletter-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 16px;
    font-size: 1rem;
}

.newsletter-privacy {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .google-reviews-header {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-fields {
        grid-template-columns: 1fr;
    }

    .newsletter-field-select {
        grid-column: span 1;
    }

    .newsletter-checkboxes {
        flex-direction: column;
    }

    .newsletter-section {
        padding: 60px 16px;
    }
}

/* ==================== PAGE HERO (sub-pages) ==================== */
.page-hero {
    background: linear-gradient(to bottom, rgba(10,14,19,0.3), rgba(10,14,19,0.75)),
                url('https://images.unsplash.com/photo-1440342359743-84fcb8c21f21?w=1920&q=80') center/cover no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
}

.page-hero-content h1 {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* ==================== RESERVATION PAGE ==================== */
.reservation-page {
    padding: 60px 24px 80px;
    background: var(--bg-secondary);
    min-height: calc(100vh - 300px);
}

.step-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.step-login-hint {
    text-align: center;
    color: var(--warning-color);
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.step-login-required {
    text-align: center;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.step-login-required h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.step-login-required p {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.step-login-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem !important;
}

/* Selected circuit banner */
.circuit-selected-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-dark);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.circuit-selected-banner h3 {
    margin: 0 0 0.3rem 0;
    font-size: 1.2rem;
}

.circuit-selected-banner p {
    margin: 0;
    font-weight: 600;
}

/* Booking form */
.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.booking-total {
    padding: 1.2rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.booking-total p:first-child {
    font-size: 1.2rem;
}

.booking-total-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

.booking-credit-display {
    margin: 0.5rem 0;
}

.credit-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(46, 204, 113, 0.15);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.form-hint {
    display: block;
    margin-top: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Booking conditions checkbox */
.booking-conditions-checkbox {
    margin-bottom: 1.5rem;
    padding: 10px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.booking-conditions-checkbox.error {
    background: rgba(231, 76, 60, 0.15);
    border-color: #e74c3c;
    animation: shake 0.5s ease-in-out;
}

.booking-conditions-checkbox.error .checkbox-text,
.booking-conditions-checkbox.error .checkbox-text a {
    color: #e74c3c !important;
}

.booking-conditions-checkbox.error .checkmark {
    border-color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.3) !important;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-container:hover .checkmark {
    border-color: var(--primary-color);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--bg-dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.checkbox-text {
    color: var(--text-secondary);
    line-height: 1.4;
}

.checkbox-text a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

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

/* Checkbox error state */
.checkbox-container.error .checkmark {
    border-color: var(--danger-color);
    background: rgba(231, 76, 60, 0.15);
    animation: shake 0.5s ease-in-out;
}

.checkbox-container.error .checkbox-text {
    color: var(--danger-color);
}

.checkbox-container.error .checkbox-text a {
    color: var(--danger-color);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
    20%, 40%, 60%, 80% { transform: translateX(4px); }
}

/* Conditions Page */
.conditions-page {
    padding: 100px 24px 60px;
    background: var(--bg-dark);
    min-height: 100vh;
}

.conditions-header {
    text-align: center;
    margin-bottom: 3rem;
}

.conditions-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.conditions-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.conditions-content {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.condition-card {
    display: flex;
    gap: 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.condition-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.condition-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.condition-icon.danger {
    background: rgba(231, 76, 60, 0.15);
    color: var(--danger-color);
}

.condition-icon.warning {
    background: rgba(243, 156, 18, 0.15);
    color: #f39c12;
}

.condition-icon.info {
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
}

.condition-icon.success {
    background: rgba(46, 204, 113, 0.15);
    color: var(--primary-color);
}

.condition-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.condition-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.condition-content strong {
    color: #fff;
}

.conditions-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    max-width: 800px;
    margin: 0 auto;
}

.conditions-footer p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.conditions-footer .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ==================== FOOTER RICH ==================== */
.footer-rich {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 24px 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.footer-about p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.35rem 0;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

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

.footer-legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

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


/* ==================== SOCIAL SHARE BAR ==================== */
.social-share-bar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 998;
}

.social-share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.social-share-btn:hover {
    transform: scale(1.15);
}

.social-facebook {
    background: #1877F2;
}

.social-facebook:hover {
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.5);
}

.social-whatsapp {
    background: #25D366;
}

.social-whatsapp:hover {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
}

.social-instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-instagram:hover {
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.5);
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.35);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    box-shadow: 0 6px 30px rgba(46, 204, 113, 0.5);
    transform: translateY(-3px);
}

/* ==================== SCROLL REVEAL ==================== */

/* Active nav link indicator */
.nav-links a.active {
    position: relative;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Variantes d'animation */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Delai en cascade pour les grilles */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==================== SECTION EQUIPE ==================== */
.team-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.team-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.team-photo {
    width: 220px;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.team-photo img,
.team-photo .team-avatar-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}

.team-info {
    flex: 1;
}

.team-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.team-role svg {
    stroke: var(--primary-color);
}

.team-bio {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-highlights {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.team-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 12px;
    font-size: 0.88rem;
    color: var(--text-primary);
    font-weight: 500;
}

.team-highlight svg {
    stroke: var(--primary-color);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .team-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .team-photo {
        width: 160px;
        height: 160px;
    }

    .team-name {
        font-size: 1.5rem;
    }

    .team-role {
        justify-content: center;
    }

    .team-highlights {
        justify-content: center;
    }
}

/* ==================== COOKIE BANNER ==================== */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9997;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.cookie-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 90%;
    max-width: 440px;
    background: linear-gradient(145deg, var(--bg-card), rgba(30, 36, 48, 0.98));
    border: 1px solid rgba(46, 204, 113, 0.15);
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(46, 204, 113, 0.08);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.cookie-banner-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.15), rgba(46, 204, 113, 0.05));
    border: 1px solid rgba(46, 204, 113, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cookiePulse 2s ease-in-out infinite;
}

@keyframes cookiePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.15); }
    50% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
}

.cookie-banner-icon svg {
    width: 30px;
    height: 30px;
}

.cookie-banner-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 0 0.5rem;
}

.cookie-banner-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed var(--primary-color);
    transition: color 0.2s;
}

.cookie-banner-text a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    margin-top: 0.5rem;
}

.cookie-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(46, 204, 113, 0.45);
}

.cookie-btn-refuse {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.cookie-btn-refuse:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .cookie-banner {
        width: 92%;
        padding: 2rem 1.5rem 1.5rem;
    }

    .cookie-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* ==================== EMAIL CONFIRMATION MODAL ==================== */
.email-preview-modal .modal-content {
    max-width: 580px;
}

.email-preview {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.email-header {
    background: linear-gradient(135deg, #27ae60, #1abc9c);
    padding: 2rem;
    text-align: center;
    color: #fff;
}

.email-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.email-header p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.email-body {
    padding: 2rem;
}

.email-greeting {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 1rem;
}

.email-booking-card {
    background: #f8faf9;
    border: 1px solid #e8ece9;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.email-booking-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.92rem;
}

.email-booking-row:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 1rem;
    color: #27ae60;
    padding-top: 12px;
    margin-top: 4px;
    border-top: 2px solid #27ae60;
}

.email-booking-label {
    color: #777;
}

.email-booking-value {
    color: #333;
    font-weight: 600;
}

.email-info-box {
    background: #fff8e6;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
    color: #856404;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.email-footer-section {
    text-align: center;
    padding: 1.5rem 2rem;
    background: #f5f5f5;
    font-size: 0.8rem;
    color: #999;
}

/* ==================== CONFIRMATION MODAL ==================== */
.confirmation-modal-content {
    max-width: 520px;
    padding: 0 !important;
    overflow: hidden;
}

.confirmation-header {
    text-align: center;
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.08), rgba(46, 204, 113, 0.05));
}

.confirmation-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(39, 174, 96, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    animation: confirmPulse 0.6s ease;
}

@keyframes confirmPulse {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.confirmation-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 0.25rem;
}

.confirmation-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.confirmation-details {
    padding: 1.5rem 2rem;
}

.confirmation-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.confirmation-detail-row:last-of-type {
    border-bottom: none;
}

.confirmation-detail-row.total {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 2px solid var(--primary-color);
    border-bottom: none;
}

.confirmation-detail-row.credit {
    padding-top: 4px;
    border-bottom: none;
    font-size: 0.85rem;
}

.confirmation-detail-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.confirmation-detail-value {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.confirmation-price {
    font-size: 1.2rem !important;
    color: #27ae60 !important;
}

.confirmation-detail-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(241, 196, 15, 0.1);
    border: 1px solid rgba(241, 196, 15, 0.3);
    border-radius: 10px;
    font-size: 0.82rem;
    color: #856404;
}

.confirmation-actions {
    display: flex;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-card);
}

.confirmation-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.85rem;
    padding: 10px 12px;
}

@media (max-width: 480px) {
    .confirmation-actions {
        flex-direction: column;
    }
    .confirmation-modal-content {
        margin: 10% 1rem !important;
    }
}

/* ==================== EMAIL PREVIEW MODAL (Reservation) ==================== */
.email-preview-modal-content {
    max-width: 600px;
    padding: 1.5rem !important;
}

.email-preview-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.email-preview-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #f0f0f0;
    border-bottom: 1px solid #ddd;
}

.email-preview-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
}

.email-preview-dot:nth-child(1) { background: #ff5f57; }
.email-preview-dot:nth-child(2) { background: #ffbd2e; }
.email-preview-dot:nth-child(3) { background: #28c840; }

.email-preview-bar-title {
    margin-left: 10px;
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.email-preview-content {
    background: #fff;
    padding: 0;
    max-height: 70vh;
    overflow-y: auto;
}

/* ==================== SHARE REFERRAL ==================== */
.referral-share-btns {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #fff;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.share-btn-whatsapp, .share-whatsapp {
    background: #25D366;
}

.share-btn-sms, .share-sms {
    background: #5856D6;
}

.share-btn-link, .share-link {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

@media (max-width: 480px) {
    .referral-share-btns {
        flex-direction: column;
    }
    .share-btn {
        justify-content: center;
    }
}

/* ==================== NOTIFICATIONS HISTORY (Profil) ==================== */
.notif-history-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.notif-history-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    transition: border-color 0.2s ease;
}

.notif-history-item:hover {
    border-color: var(--primary-color);
}

.notif-history-item.unread {
    border-left: 3px solid var(--primary-color);
}

.notif-history-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notif-history-icon.notiftype-confirmation { background: rgba(46, 204, 113, 0.1); }
.notif-history-icon.notiftype-confirmation svg { stroke: #2ecc71; }
.notif-history-icon.notiftype-reminder { background: rgba(52, 152, 219, 0.1); }
.notif-history-icon.notiftype-reminder svg { stroke: #3498db; }
.notif-history-icon.notiftype-review_request { background: rgba(155, 89, 182, 0.1); }
.notif-history-icon.notiftype-review_request svg { stroke: #9b59b6; }
.notif-history-icon.notiftype-weather { background: rgba(241, 196, 15, 0.1); }
.notif-history-icon.notiftype-weather svg { stroke: #f1c40f; }
.notif-history-icon.notiftype-custom { background: rgba(231, 76, 60, 0.1); }
.notif-history-icon.notiftype-custom svg { stroke: #e74c3c; }
.notif-history-icon.notiftype-payment { background: rgba(52, 152, 219, 0.1); }
.notif-history-icon.notiftype-payment svg { stroke: #3498db; }
.notif-history-icon.notiftype-cancellation { background: rgba(231, 76, 60, 0.1); }
.notif-history-icon.notiftype-cancellation svg { stroke: #e74c3c; }

.notif-history-content {
    flex: 1;
    min-width: 0;
}

.notif-history-subject {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.notif-history-body {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notif-history-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 4px;
    opacity: 0.7;
}

.notif-history-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(39, 174, 96, 0.1);
    color: var(--primary-color);
    white-space: nowrap;
    flex-shrink: 0;
    align-self: center;
}

.notif-history-time {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 6px;
    opacity: 0.7;
}

/* ==================== MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--bg-card);
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    animation: slideDown 0.4s ease;
}

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

.modal-title {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.modal-switch {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-secondary);
}

.modal-switch a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.close {
    position: absolute;
    right: 1.2rem;
    top: 1.2rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    color: var(--danger-color);
    background-color: rgba(231, 76, 60, 0.2);
}

/* ==================== FORMS ==================== */
.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--bg-dark);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.15);
}

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

.error-message {
    color: var(--danger-color);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Google Sign-In */
.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background-color: white;
    color: #444;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.google-btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.2rem 0;
    color: var(--text-secondary);
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.divider span {
    padding: 0 10px;
    font-size: 0.85rem;
}

/* ==================== BOOKING STEPPER ==================== */
.booking-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.stepper-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    transition: all 0.4s ease;
}

.stepper-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.4s ease;
}

.stepper-line {
    flex: 1;
    height: 2px;
    background: var(--border-color);
    margin: 0 12px;
    margin-bottom: 28px;
    transition: background 0.4s ease;
    min-width: 40px;
    max-width: 120px;
}

/* Active step */
.stepper-step.active .stepper-circle {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 16px rgba(46, 204, 113, 0.4);
}

.stepper-step.active .stepper-label {
    color: var(--primary-color);
}

/* Completed step */
.stepper-step.completed .stepper-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.stepper-step.completed .stepper-label {
    color: var(--text-primary);
}

.stepper-line.completed {
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .booking-stepper {
        padding: 1rem;
        margin-bottom: 1.5rem;
        gap: 0;
    }

    .stepper-circle {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .stepper-label {
        font-size: 0.65rem;
    }

    .stepper-line {
        margin: 0 6px;
        margin-bottom: 24px;
        min-width: 24px;
    }
}

/* ==================== CONFIRMATION OVERLAY ==================== */
.confirmation-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 19, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    animation: confirmFadeIn 0.4s ease forwards;
}

@keyframes confirmFadeIn {
    to { opacity: 1; }
}

.confirmation-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.confirmation-check {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(46, 204, 113, 0.5);
    animation: confirmPop 0.5s 0.2s cubic-bezier(.34,1.56,.64,1) both;
}

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

.confirmation-check svg {
    width: 44px;
    height: 44px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: confirmDraw 0.6s 0.5s ease forwards;
}

@keyframes confirmDraw {
    to { stroke-dashoffset: 0; }
}

.confirmation-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    opacity: 0;
    animation: confirmSlideUp 0.5s 0.6s ease forwards;
}

.confirmation-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    opacity: 0;
    animation: confirmSlideUp 0.5s 0.75s ease forwards;
    max-width: 320px;
    line-height: 1.5;
}

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

/* Confetti */
.confetti-piece {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    z-index: 10001;
    pointer-events: none;
    animation: confettiFall linear forwards;
}

@keyframes confettiFall {
    0% { opacity: 1; transform: translateY(0) rotate(0deg); }
    100% { opacity: 0; transform: translateY(100vh) rotate(720deg); }
}

/* ==================== CALENDAR ==================== */
.calendar {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.calendar-header h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 700;
}

.calendar-header button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.calendar-header button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    text-align: center;
    font-weight: 700;
    padding: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.calendar-date {
    text-align: center;
    padding: 14px 8px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    position: relative;
}

.calendar-date:hover {
    background-color: var(--bg-card);
    border-color: var(--primary-color);
}

.calendar-date.available {
    background: rgba(46, 204, 113, 0.15);
    border-color: var(--primary-color);
}

.calendar-date.available::after {
    content: '✓';
    position: absolute;
    top: 2px;
    right: 5px;
    font-size: 0.7rem;
    color: var(--primary-color);
}

.calendar-date.available:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-dark);
}

.calendar-date.available:hover::after {
    color: var(--bg-dark);
}

.calendar-date.selected {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-dark);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.calendar-date.selected::after {
    color: var(--bg-dark);
}

.calendar-date.disabled {
    color: var(--text-secondary);
    cursor: not-allowed;
    background-color: var(--bg-dark);
    opacity: 0.3;
    border-color: transparent;
}

.calendar-date.disabled:hover {
    background-color: var(--bg-dark);
    transform: none;
    border-color: transparent;
}

/* Discount calendar styles */
.calendar-date.discounted {
    border-color: #0099ff;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.2), rgba(46, 204, 113, 0.15));
}

.calendar-date.discounted:hover {
    background: linear-gradient(135deg, #0099ff, var(--accent-color));
    color: white;
}

.calendar-date.discounted:hover .discount-badge {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.calendar-date.discounted.selected {
    background: linear-gradient(135deg, #0099ff, var(--accent-color));
    border-color: #0099ff;
    color: white;
}

.calendar-date.discounted.selected .discount-badge {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.discount-badge {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    color: #0099ff;
    font-weight: 700;
    background: rgba(0, 153, 255, 0.15);
    padding: 1px 4px;
    border-radius: 3px;
    white-space: nowrap;
}

.discount-banner {
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.15), rgba(46, 204, 113, 0.15));
    border: 1px solid #0099ff;
    border-radius: 10px;
    padding: 10px 16px;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-primary);
    font-size: 1rem;
}

.discount-banner strong {
    color: #0099ff;
}

/* ==================== WEATHER CALENDAR ==================== */
.cal-weather-icon {
    display: block;
    font-size: 0.85rem;
    line-height: 1;
    margin-top: 2px;
    pointer-events: none;
}

.calendar-date.bad-weather {
    border-color: rgba(251, 146, 60, 0.5) !important;
}

.calendar-date.bad-weather::after {
    content: '⚠' !important;
    color: #fb923c !important;
    font-size: 0.55rem !important;
}

.calendar-date.available.bad-weather:hover {
    background: linear-gradient(135deg, #fb923c, #f97316);
}

.weather-banner {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.12), rgba(245, 158, 11, 0.12));
    border: 1px solid rgba(251, 146, 60, 0.4);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.weather-banner strong {
    color: #fb923c;
}

/* ==================== TIME SLOTS ==================== */
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.time-slot {
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    white-space: pre-line;
    line-height: 1.5;
}

.time-slot::before {
    content: '🕐';
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.time-slot:hover {
    border-color: var(--primary-color);
    background: rgba(46, 204, 113, 0.15);
    transform: translateY(-2px);
}

.time-slot.selected {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-dark);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.time-slot.unavailable {
    opacity: 0.3;
    cursor: not-allowed;
    background-color: var(--bg-dark);
}

.time-slot.unavailable:hover {
    transform: none;
    box-shadow: none;
}

/* ==================== PROFILE ==================== */
.profile-section {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.profile-section h2, .profile-section h3 {
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
}

.reservations-list {
    display: grid;
    gap: 1rem;
}

.reservation-card {
    border: 2px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background-color: var(--bg-secondary);
}

.reservation-card:hover {
    border-color: var(--primary-color);
}

.reservation-info h3 {
    margin-bottom: 0.3rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.reservation-info p {
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.reservation-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.reservation-status.confirmed {
    background: rgba(46, 204, 113, 0.2);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.reservation-status.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

/* ==================== ADMIN STYLES ==================== */
.admin-tab {
    animation: fadeInUp 0.4s ease;
}

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

.tab-btn {
    font-size: 1rem !important;
    padding: 12px 24px !important;
    margin: 0 !important;
}

.admin-tab table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 10px;
}

.admin-tab thead {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(129, 140, 248, 0.2));
}

.admin-tab th {
    color: #fff !important;
    border-bottom: none !important;
    padding: 1rem !important;
    font-weight: 700;
}

.admin-tab tbody tr {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color) !important;
    transition: all 0.3s ease;
}

.admin-tab tbody tr:hover {
    background-color: var(--bg-secondary);
}

.admin-tab td {
    padding: 1rem !important;
    color: var(--text-primary) !important;
}

/* ==================== DETAILS SECTION (admin/other) ==================== */
.details {
    padding: 60px 20px;
    background: var(--bg-secondary);
}

.details h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.details-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.detail-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.detail-item h3 {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-item p {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.info-box {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.info-box h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.info-box ul {
    list-style-position: inside;
    line-height: 2;
}

.info-box li {
    color: var(--text-secondary);
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
}

::selection {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* ==================== RESPONSIVE ==================== */
/* ==================== PROFILE PAGE ==================== */
.profile-page {
    padding: 100px 24px 60px;
    background: var(--bg-dark);
    min-height: 100vh;
}

/* Profile Hero */
.profile-hero {
    position: relative;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.profile-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.9;
}

.profile-hero-content {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    padding: 80px 2rem 2rem;
}

.profile-avatar-container {
    position: relative;
    flex-shrink: 0;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    border: 4px solid var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.profile-avatar-badge {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--bg-card);
}

.profile-hero-info {
    flex: 1;
    padding-bottom: 0.5rem;
}

.profile-hero-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.profile-hero-subtitle {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.btn-logout {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid var(--danger-color);
    border-radius: 10px;
    color: var(--danger-color);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: var(--danger-color);
    color: #fff;
}

/* Profile Stats */
.profile-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.profile-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.profile-stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.profile-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(46, 204, 113, 0.15);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-stat-icon.upcoming {
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
}

.profile-stat-icon.completed {
    background: rgba(155, 89, 182, 0.15);
    color: #9b59b6;
}

.profile-stat-info {
    display: flex;
    flex-direction: column;
}

.profile-stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.profile-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Profile Content Grid */
.profile-content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
}

.profile-column-large {
    min-width: 0;
}

/* Profile Cards */
.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.profile-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.profile-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.profile-card-title svg {
    color: var(--primary-color);
}

.profile-card-body {
    padding: 1.5rem;
}

/* Profile Info Items */
.profile-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.profile-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.profile-info-item:first-child {
    padding-top: 0;
}

.profile-info-icon-small {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(46, 204, 113, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-info-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.profile-info-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.profile-info-value {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    word-break: break-word;
}

/* Help Links */
.profile-help-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.profile-help-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.profile-help-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Reservations List */
.profile-reservations-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-reservation-card {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.profile-reservation-card:hover {
    border-color: var(--primary-color);
}

.profile-reservation-card.past {
    opacity: 0.7;
}

.profile-reservation-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    color: var(--bg-dark);
}

.profile-reservation-day {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.profile-reservation-month {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 2px;
}

.profile-reservation-details {
    flex: 1;
    min-width: 0;
}

.profile-reservation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.profile-reservation-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-transform: capitalize;
}

.profile-reservation-status {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.profile-reservation-status.upcoming {
    background: rgba(46, 204, 113, 0.15);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.profile-reservation-status.completed {
    background: rgba(155, 89, 182, 0.15);
    color: #9b59b6;
    border: 1px solid #9b59b6;
}

.profile-reservation-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.profile-reservation-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.profile-reservation-price {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.profile-reservation-comment {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

.profile-reservation-actions {
    display: flex;
    align-items: center;
    padding-left: 0.5rem;
}

.btn-cancel {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid transparent;
    color: var(--danger-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: var(--danger-color);
    color: #fff;
}

/* Empty State */
.profile-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
}

.profile-empty-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border-color);
    margin-bottom: 1.5rem;
}

.profile-empty-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.profile-empty-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Small Button */
.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Modal Icon */
.modal-icon-danger {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--danger-color);
}

.modal-icon-success {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
}

/* Referral Code */
.referral-code-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-secondary);
    border: 2px dashed var(--primary-color);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
}

.referral-code {
    flex: 1;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-align: center;
}

.referral-copy-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--primary-color);
    border: none;
    color: var(--bg-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.referral-copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

/* Referral Credit Box */
.referral-credit-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.referral-credit-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.referral-credit-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.referral-credit-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.referral-credit-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.referral-credit-note {
    width: 100%;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-style: italic;
    padding-top: 0.5rem;
    border-top: 1px dashed rgba(46, 204, 113, 0.3);
}

.referral-stats {
    display: flex;
    gap: 1rem;
}

.referral-stat {
    flex: 1;
    text-align: center;
    padding: 0.8rem;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.referral-stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.referral-stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* Circuit History */
.circuits-history-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.circuit-history-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.circuit-history-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(46, 204, 113, 0.15);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.circuit-history-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.circuit-history-name {
    font-weight: 600;
    color: #fff;
}

.circuit-history-count {
    font-size: 0.85rem;
    color: var(--primary-color);
    background: rgba(46, 204, 113, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
}

/* Reviews */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-item {
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.review-stars {
    color: #f1c40f;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.review-comment {
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
}

.pending-reviews {
    margin-bottom: 1rem;
}

.pending-reviews-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
}

.pending-review-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.3);
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.pending-review-item span {
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 0.5rem 0;
}

.star-rating .star {
    font-size: 2rem;
    color: var(--border-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: #f1c40f;
    transform: scale(1.1);
}

/* Empty State Small */
.profile-empty-state-small {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-secondary);
}

.profile-empty-state-small p {
    margin: 0;
    font-size: 0.9rem;
}

/* Body lock when mobile menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    /* Hamburger visible */
    .hamburger {
        display: block;
        position: relative;
        z-index: 10002;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(160deg, rgba(10, 14, 19, 0.97), rgba(19, 24, 32, 0.98));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        z-index: 10001;
        padding: 100px 30px 60px;
        list-style: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        max-width: 320px;
        text-align: center;
        transform: translateY(20px);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.open li {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links.open li:nth-child(1) { transition-delay: 0.08s; }
    .nav-links.open li:nth-child(2) { transition-delay: 0.16s; }
    .nav-links.open li:nth-child(3) { transition-delay: 0.24s; }
    .nav-links.open li:nth-child(4) { transition-delay: 0.32s; }
    .nav-links.open li:nth-child(5) { transition-delay: 0.40s; }

    .nav-links a {
        font-size: 1.15rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        padding: 18px 30px;
        display: block;
        border-radius: 16px;
        color: rgba(255, 255, 255, 0.85);
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links a:hover {
        background: rgba(46, 204, 113, 0.12);
        border-color: rgba(46, 204, 113, 0.25);
        color: #fff;
        transform: scale(1.02);
    }

    .nav-links a.active {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        border-color: transparent;
        color: #fff;
        box-shadow: 0 4px 20px rgba(46, 204, 113, 0.3);
    }

    .nav-links .nav-notif-container {
        display: none !important;
    }

    /* Hero */
    .hero-fullscreen {
        min-height: 100vh;
        padding: 100px 20px 60px;
    }

    .hero-reservation {
        min-height: 45vh;
        padding: 100px 20px 60px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 0.6rem;
    }

    .hero-stat {
        padding: 8px 14px;
    }

    .hero-stat-value {
        font-size: 0.85rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    /* Sections */
    .section-title {
        font-size: 1.8rem;
    }

    .fullwidth-banner {
        min-height: 40vh;
        background-attachment: scroll;
    }

    .banner-overlay {
        min-height: 40vh;
        padding: 40px 20px;
    }

    .banner-overlay h2 {
        font-size: 1.8rem;
    }

    .banner-overlay p {
        font-size: 1rem;
    }

    /* Experience */
    .experience-section {
        padding: 60px 20px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-card {
        min-height: 300px;
    }

    /* Rides */
    .rides-section {
        padding: 60px 20px;
    }

    .rides-grid {
        grid-template-columns: 1fr;
    }

    /* Info */
    .info-section {
        padding: 60px 20px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    /* Page hero */
    .page-hero {
        padding: 100px 20px 50px;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    /* Forms */
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .modal-content {
        margin: 2% 15px;
        padding: 1.8rem;
        max-height: none;
    }

    .reservation-card {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

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

    /* Profile Responsive */
    .profile-page {
        padding: 80px 16px 40px;
    }

    .profile-hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 100px 1.5rem 1.5rem;
    }

    .profile-hero-info {
        padding-bottom: 0;
    }

    .profile-hero-subtitle {
        justify-content: center;
    }

    .profile-content-grid {
        grid-template-columns: 1fr;
    }

    .profile-reservation-card {
        flex-direction: column;
    }

    .profile-reservation-date {
        flex-direction: row;
        gap: 8px;
        width: 100%;
        justify-content: center;
    }

    .profile-reservation-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .profile-reservation-actions {
        width: 100%;
        justify-content: flex-end;
        padding-left: 0;
        padding-top: 0.5rem;
        border-top: 1px solid var(--border-color);
        margin-top: 0.5rem;
    }

    .profile-help-links {
        flex-direction: column;
    }

    .profile-help-link {
        justify-content: center;
    }
}

/* ==================== NOTIFICATION BELL ==================== */
.nav-notif-container {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-notif-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.nav-notif-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-notif-btn svg {
    width: 22px;
    height: 22px;
}

.nav-notif-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #e74c3c;
    color: white;
    font-size: 10px;
    font-weight: bold;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    animation: notifPulse 2s infinite;
}

@keyframes notifPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.nav-notif-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    max-height: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.nav-notif-dropdown.show {
    display: block;
    animation: dropdownFade 0.2s ease;
}

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

.nav-notif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-dark);
}

.nav-notif-header h4 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.nav-notif-mark-read {
    background: transparent;
    border: none;
    color: var(--accent-color);
    font-size: 0.75rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.nav-notif-mark-read:hover {
    background: rgba(39, 174, 96, 0.1);
}

.nav-notif-list {
    max-height: 320px;
    overflow-y: auto;
}

.nav-notif-empty {
    padding: 32px 16px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.nav-notif-item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background-color 0.2s;
}

.nav-notif-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.nav-notif-item.unread {
    background: rgba(39, 174, 96, 0.08);
}

.nav-notif-item.unread::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-color);
}

.nav-notif-item {
    position: relative;
}

.nav-notif-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-notif-icon.confirmation {
    background: rgba(39, 174, 96, 0.2);
    color: var(--accent-color);
}

.nav-notif-icon.reminder_24h {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

.nav-notif-icon.thank_you {
    background: rgba(155, 89, 182, 0.2);
    color: #9b59b6;
}

.nav-notif-icon.custom {
    background: rgba(241, 196, 15, 0.2);
    color: #f1c40f;
}

.nav-notif-icon.review_reminder {
    background: rgba(241, 196, 15, 0.2);
    color: #f1c40f;
}

.nav-notif-content {
    flex: 1;
    min-width: 0;
}

.nav-notif-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-notif-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav-notif-time {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .nav-notif-dropdown {
        position: fixed;
        top: 60px;
        left: 10px;
        right: 10px;
        width: auto;
        max-height: calc(100vh - 80px);
    }

    .nav-notif-container {
        margin-right: 8px;
    }
}

/* ============================
   PREMIUM REVIEW MODAL
   ============================ */

.review-modal-premium[style*="block"] {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.review-modal-premium .review-modal-content {
    background: linear-gradient(145deg, #1a1f2e 0%, #0f1318 100%);
    border-radius: 24px;
    padding: 0;
    max-width: 480px;
    width: 100%;
    margin: auto;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: reviewModalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.review-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
}

.review-modal-close:hover {
    background: rgba(231, 76, 60, 0.3);
    color: var(--danger-color);
    transform: rotate(90deg);
}

/* Header avec gradient */
.review-modal-header {
    position: relative;
    padding: 40px 30px 30px;
    text-align: center;
    background: linear-gradient(180deg, rgba(39, 174, 96, 0.15) 0%, transparent 100%);
}

.review-header-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.4) 0%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

.review-emoji-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: emojiFloat 3s ease-in-out infinite;
}

@keyframes emojiFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.review-emoji {
    font-size: 40px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.review-modal-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.review-modal-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Stars section */
.review-form {
    padding: 0 30px 30px;
}

.review-stars-section {
    text-align: center;
    margin-bottom: 28px;
}

.review-stars-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.review-star {
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.review-star svg {
    width: 100%;
    height: 100%;
    fill: rgba(255, 255, 255, 0.15);
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 1;
    transition: all 0.2s ease;
}

.review-star:hover {
    transform: scale(1.2);
}

.review-star:hover svg,
.review-star.active svg {
    fill: #ffc107;
    stroke: #ffc107;
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.5));
}

.review-star.active {
    animation: starPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes starPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.review-rating-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.review-rating-label.active {
    color: #ffc107;
}

/* Comment section */
.review-comment-section {
    margin-bottom: 24px;
}

.review-comment-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.review-comment-label svg {
    color: var(--primary-color);
}

.review-textarea-wrapper {
    position: relative;
}

.review-textarea-wrapper textarea {
    width: 100%;
    min-height: 120px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
}

.review-textarea-wrapper textarea::placeholder {
    color: var(--text-secondary);
}

.review-textarea-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(39, 174, 96, 0.05);
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.1);
}

.review-textarea-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-textarea-wrapper textarea:focus + .review-textarea-glow {
    opacity: 1;
}

/* Submit button */
.review-submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary-color), #1e8449);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.review-submit-btn:hover::before {
    left: 100%;
}

.review-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.4);
}

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

.review-btn-icon {
    display: flex;
    transition: transform 0.3s ease;
}

.review-submit-btn:hover .review-btn-icon {
    transform: translateX(4px);
}

/* Confetti */
.review-confetti {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    animation: confettiFall 3s ease-out forwards;
}

@keyframes confettiFall {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(400px) rotate(720deg);
    }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .review-modal-premium[style*="block"] {
        align-items: flex-end;
        padding: 0;
    }

    .review-modal-premium .review-modal-content {
        border-radius: 20px 20px 0 0;
        max-width: 100%;
        width: 100%;
        margin: 0;
        animation: reviewModalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @keyframes reviewModalSlideUp {
        from {
            opacity: 0;
            transform: translateY(100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .review-modal-header {
        padding: 30px 20px 20px;
    }

    .review-form {
        padding: 0 20px 20px;
    }

    .review-star {
        width: 40px;
        height: 40px;
    }

    .review-emoji-container {
        width: 70px;
        height: 70px;
    }

    .review-emoji {
        font-size: 35px;
    }
}

/* ============================
   NOTIFICATION DETAIL MODAL
   ============================ */

.notif-detail-modal {
    background: linear-gradient(145deg, #1a1f2e 0%, #0f1318 100%);
    border-radius: 20px;
    padding: 0;
    max-width: 480px;
    width: 95%;
    margin: auto;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: notifDetailSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.notif-detail-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.notif-detail-close:hover {
    background: rgba(231, 76, 60, 0.2);
    color: var(--danger-color);
    transform: rotate(90deg);
}

.notif-detail-header {
    padding: 32px 28px 24px;
    text-align: center;
    background: linear-gradient(180deg, rgba(39, 174, 96, 0.1) 0%, transparent 100%);
}

.notif-detail-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: notifIconPulse 2s ease-in-out infinite;
}

@keyframes notifIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.notif-detail-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.3px;
}

.notif-detail-body {
    margin: 0 28px 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    white-space: pre-line;
    line-height: 1.7;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.notif-detail-actions {
    display: flex;
    gap: 12px;
    padding: 0 28px 24px;
}

.notif-detail-cta {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary-color), #1e8449);
    color: #fff;
    border: none;
    position: relative;
    overflow: hidden;
}

.notif-detail-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.notif-detail-cta:hover::before {
    left: 100%;
}

.notif-detail-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.notif-detail-dismiss {
    flex: 1;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notif-detail-dismiss:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.notif-detail-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px 28px 20px;
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

/* Mobile responsive */
@media (max-width: 480px) {
    .notif-detail-modal {
        border-radius: 20px 20px 0 0;
        max-width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        animation: notifDetailSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @keyframes notifDetailSlideUp {
        from {
            opacity: 0;
            transform: translateY(100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .notif-detail-header {
        padding: 28px 20px 20px;
    }

    .notif-detail-body {
        margin: 0 20px 20px;
    }

    .notif-detail-actions {
        flex-direction: column;
        padding: 0 20px 20px;
    }

    .notif-detail-cta,
    .notif-detail-dismiss {
        flex: none;
    }
}

/* ==================== FORGOT PASSWORD ==================== */
.forgot-password-link {
    text-align: right;
    margin: -0.5rem 0 1rem 0;
}
.forgot-password-link a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
}
.forgot-password-link a:hover {
    color: var(--primary-color);
}

/* ==================== SITE DIALOG (replaces native prompt/confirm/alert) ==================== */
.site-dialog-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.site-dialog-overlay.visible {
    opacity: 1;
}
.site-dialog-box {
    background: var(--bg-primary, #fff);
    border-radius: 16px;
    padding: 2rem 1.8rem 1.5rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(-10px);
    transition: transform 0.25s ease;
}
.site-dialog-overlay.visible .site-dialog-box {
    transform: scale(1) translateY(0);
}
.site-dialog-title {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary, #333);
}
.site-dialog-message {
    margin: 0 0 1.2rem;
    font-size: 0.9rem;
    color: var(--text-secondary, #666);
    line-height: 1.5;
}
.site-dialog-input-wrap {
    margin-bottom: 1.2rem;
}
.site-dialog-input {
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
    border-radius: 10px;
    background: var(--bg-card, #f8f9fa);
    color: var(--text-primary, #333);
    border: 1px solid var(--border-color, #ddd);
    outline: none;
    transition: border-color 0.2s;
}
.site-dialog-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.15);
}
.site-dialog-actions {
    display: flex;
    gap: 0.75rem;
}
.site-dialog-cancel {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--bg-card, #f8f9fa);
    color: var(--text-secondary, #666);
    border: 1px solid var(--border-color, #ddd);
    cursor: pointer;
    transition: all 0.2s;
}
.site-dialog-cancel:hover {
    background: var(--border-color, #ddd);
    color: var(--text-primary, #333);
}
.site-dialog-actions .btn-primary {
    flex: 1;
}

/* ==================== MOBILE RESPONSIVE FIXES ==================== */

/* --- Social share: horizontal bottom bar on mobile --- */
@media (max-width: 768px) {
    .social-share-bar {
        left: 50% !important;
        right: auto !important;
        top: auto !important;
        bottom: 16px !important;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 12px;
        background: rgba(15, 19, 24, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 10px 20px;
        border-radius: 50px;
        border: 1px solid rgba(255,255,255,0.1);
    }

    .social-share-btn {
        width: 36px;
        height: 36px;
    }

    .social-share-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* --- Calendar: compact on mobile --- */
@media (max-width: 768px) {
    .calendar {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .calendar-header {
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
        flex-wrap: wrap;
        gap: 8px;
    }

    .calendar-header h3 {
        font-size: 1rem;
    }

    .calendar-header button {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .calendar-grid {
        gap: 3px;
    }

    .calendar-day {
        padding: 6px 2px;
        font-size: 0.7rem;
    }

    .calendar-date {
        padding: 6px 2px;
        font-size: 0.8rem;
        border-radius: 8px;
        border-width: 1px;
    }

    .calendar-date.available::after {
        top: 1px;
        right: 2px;
        font-size: 0.55rem;
    }

    .cal-weather-icon {
        font-size: 0.65rem;
        margin-top: 1px;
    }
}

@media (max-width: 480px) {
    .calendar {
        padding: 0.8rem;
    }

    .calendar-grid {
        gap: 2px;
    }

    .calendar-day {
        padding: 4px 1px;
        font-size: 0.6rem;
    }

    .calendar-date {
        padding: 5px 1px;
        font-size: 0.75rem;
        border-radius: 6px;
    }

    .cal-weather-icon {
        font-size: 0.55rem;
    }

    .calendar-header h3 {
        font-size: 0.9rem;
    }

    .calendar-header button {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

/* --- Experience cards: "En savoir plus" touch-friendly --- */
@media (hover: hover) {
    .experience-card:hover {
        transform: scale(1.02);
    }
    .experience-card:hover .experience-card-overlay {
        background: linear-gradient(to top, rgba(10,14,19,0.95) 0%, rgba(10,14,19,0.5) 60%, rgba(10,14,19,0.2) 100%);
    }
}

@media (max-width: 768px) {
    .experience-card {
        min-height: 280px;
    }

    .experience-card-overlay {
        padding: 1.5rem 1.2rem;
        background: linear-gradient(to top, rgba(10,14,19,0.95) 0%, rgba(10,14,19,0.6) 50%, rgba(10,14,19,0.2) 100%);
    }

    .experience-card-overlay h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .experience-card-overlay p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }

    .experience-card-overlay .btn-link {
        font-size: 0.9rem;
        padding: 12px 16px;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: var(--bg-dark);
        border-radius: 8px;
        border-bottom: none;
        text-align: center;
        align-self: stretch;
        font-weight: 700;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .experience-card-overlay .btn-link:hover {
        transform: none;
        color: var(--bg-dark);
    }
}

/* --- Profile page: better mobile layout --- */
@media (max-width: 768px) {
    .profile-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .profile-stat-card {
        padding: 0.8rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }

    .profile-stat-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .profile-stat-icon svg {
        width: 18px;
        height: 18px;
    }

    .profile-stat-value {
        font-size: 1.3rem;
    }

    .profile-stat-label {
        font-size: 0.7rem;
    }

    .profile-stat-info {
        align-items: center;
    }

    /* Profile cards */
    .profile-card-header {
        padding: 1rem 1.2rem;
    }

    .profile-card-title {
        font-size: 0.95rem;
    }

    /* Profile reservation cards */
    .profile-reservation-card {
        padding: 1rem;
    }

    .profile-reservation-info {
        gap: 0.3rem;
    }

    .profile-reservation-date .date-day {
        font-size: 1.5rem;
    }

    /* Profile hero */
    .profile-hero-content {
        padding: 90px 1.2rem 1.2rem;
    }

    .profile-hero-info h1 {
        font-size: 1.5rem;
    }

    .profile-hero-subtitle {
        font-size: 0.85rem;
    }

    /* Back to top: move up to not conflict with social bar */
    .back-to-top {
        bottom: 80px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .profile-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }

    .profile-stat-card {
        padding: 0.6rem 0.4rem;
    }

    .profile-stat-icon {
        width: 34px;
        height: 34px;
    }

    .profile-stat-value {
        font-size: 1.1rem;
    }

    .profile-stat-label {
        font-size: 0.6rem;
    }

    .profile-hero-info h1 {
        font-size: 1.3rem;
    }

    /* Reservation cards compact */
    .reservation-card {
        padding: 1rem;
    }

    /* Modal */
    .modal-content {
        margin: 0;
        padding: 1.2rem;
        border-radius: 16px 16px 0 0;
        max-height: 90vh;
        overflow-y: auto;
    }

    /* Social share bar even more compact */
    .social-share-bar {
        padding: 8px 16px !important;
        gap: 10px !important;
    }

    .social-share-btn {
        width: 32px !important;
        height: 32px !important;
    }

    .social-share-btn svg {
        width: 14px !important;
        height: 14px !important;
    }

    /* Back to top compact */
    .back-to-top {
        bottom: 70px;
        width: 36px;
        height: 36px;
    }
}

/* --- Rides section: better mobile cards --- */
@media (max-width: 768px) {
    .ride-card-content {
        padding: 1.2rem;
    }

    .ride-actions {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .ride-actions .btn {
        flex: 1;
        text-align: center;
        min-width: 120px;
    }

    .ride-actions .btn-link {
        padding: 10px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* --- Booking form: mobile --- */
@media (max-width: 768px) {
    .booking-summary {
        padding: 1rem;
    }

    .booking-form {
        padding: 1rem;
    }

    .time-slot-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .time-slot {
        padding: 10px;
        font-size: 0.85rem;
        min-height: 44px;
    }
}

/* --- Weather warning banner on mobile --- */
@media (max-width: 768px) {
    .weather-warning-banner {
        font-size: 0.85rem;
        padding: 10px 16px;
        margin: 0.5rem 0;
    }
}

/* --- General mobile spacing --- */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Banner */
    .fullwidth-banner .btn-link {
        padding: 12px 16px;
        background: rgba(46, 204, 113, 0.2);
        border: 1px solid var(--primary-color);
        border-radius: 8px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}
