/* Dakak Beachside Golf & Resort - Main Stylesheet */
:root {
    --ocean-blue: #008ECC;
    --turquoise: #00C2CB;
    --white: #FFFFFF;
    --sand-beige: #F4E7D3;
    --palm-green: #3E8E41;
    --sunset-gold: #FFB347;
    --dark-navy: #003B5C;
    --gradient-ocean: linear-gradient(135deg, var(--dark-navy) 0%, var(--ocean-blue) 50%, var(--turquoise) 100%);
    --gradient-sunset: linear-gradient(135deg, var(--sunset-gold) 0%, #ff8c42 100%);
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.25);
    --shadow-soft: 0 8px 32px rgba(0, 59, 92, 0.12);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
    --radius: 16px;
    --radius-sm: 10px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --nav-height: 80px;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --sand-beige: #1a2a3a;
    --white: #0d1b2a;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: #333;
    background: var(--white);
    overflow-x: hidden;
    transition: background var(--transition), color var(--transition);
}

[data-theme="dark"] body { color: #e0e0e0; background: #0d1b2a; }

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: var(--font-display);
    font-weight: 600;
}

/* Navigation */
.navbar-dakak {
    padding: 0.75rem 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar-dakak.scrolled {
    background: rgba(0, 59, 92, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    padding: 0.5rem 0;
}

.navbar-dakak .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color var(--transition);
}

.navbar-dakak .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--sunset-gold);
    transition: all var(--transition);
    transform: translateX(-50%);
}

.navbar-dakak .nav-link:hover::after,
.navbar-dakak .nav-link.active::after { width: 60%; }

.nav-logo {
    border-radius: 8px;
    transition: transform var(--transition);
}

.nav-logo:hover { transform: scale(1.05); }

.btn-gold {
    background: var(--gradient-sunset);
    color: var(--dark-navy) !important;
    border: none;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    transition: all var(--transition);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 179, 71, 0.4);
}

.btn-ocean {
    background: var(--gradient-ocean);
    color: white !important;
    border: none;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.6rem 1.75rem;
}

.btn-icon {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== INTERACTIVE HERO ===== */
.hero-cinematic {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--dark-navy);
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 12s ease-in-out infinite alternate;
}

.hero-slide.active img { animation-play-state: running; }
.hero-slide:not(.active) img { animation-play-state: paused; }

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.12) translate(-1%, -1%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 59, 92, 0.4) 0%,
        rgba(0, 59, 92, 0.2) 40%,
        rgba(0, 59, 92, 0.7) 100%
    );
    z-index: 2;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.hero-waves svg {
    width: 100%;
    height: 80px;
    animation: waveMove 8s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
}

.hero-content {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--nav-height) 1rem 180px;
    color: white;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-content .hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    opacity: 0.95;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease 0.9s both;
}

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

/* Interactive Clip Selector */
.hero-clips {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 12px;
    padding: 12px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    max-width: 95vw;
    overflow-x: auto;
}

.hero-clip {
    flex-shrink: 0;
    width: 100px;
    height: 65px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    position: relative;
}

.hero-clip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.hero-clip::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    transition: opacity var(--transition);
}

.hero-clip.active {
    border-color: var(--sunset-gold);
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(255, 179, 71, 0.5);
}

.hero-clip.active::after { opacity: 0; }

.hero-clip:hover img { transform: scale(1.1); }

.hero-clip .clip-label {
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.6rem;
    color: white;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
    opacity: 0;
    transition: opacity var(--transition);
}

.hero-clip.active .clip-label,
.hero-clip:hover .clip-label { opacity: 1; }

.hero-progress {
    position: absolute;
    bottom: 88px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    z-index: 5;
    overflow: hidden;
}

.hero-progress-bar {
    height: 100%;
    background: var(--sunset-gold);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 3px;
}

/* Quick Booking Form in Hero */
.hero-booking {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: min(900px, 95%);
}

.booking-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255,255,255,0.5);
}

[data-theme="dark"] .booking-glass {
    background: rgba(13, 27, 42, 0.95);
    border-color: rgba(255,255,255,0.1);
}

/* Section Styles */
.section-padding { padding: 100px 0; }

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .section-title { color: var(--turquoise); }

.section-subtitle {
    color: var(--ocean-blue);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.section-desc {
    color: #666;
    max-width: 650px;
    margin: 0 auto 3rem;
}

[data-theme="dark"] .section-desc { color: #aaa; }

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all var(--transition);
}

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

/* Room Cards */
.room-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    height: 100%;
}

[data-theme="dark"] .room-card { background: #1a2a3a; }

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 140, 204, 0.2);
}

.room-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover .room-card-img img { transform: scale(1.08); }

.room-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-sunset);
    color: var(--dark-navy);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

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

.room-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ocean-blue);
}

.room-price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: #888;
}

/* Amenity Cards */
.amenity-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    height: 100%;
}

[data-theme="dark"] .amenity-card { background: #1a2a3a; }

.amenity-card:hover {
    background: var(--gradient-ocean);
    color: white;
    transform: translateY(-5px);
}

.amenity-card:hover .amenity-icon { color: var(--sunset-gold); }

.amenity-icon {
    font-size: 2.5rem;
    color: var(--ocean-blue);
    margin-bottom: 1rem;
    transition: color var(--transition);
}

/* Promo Cards */
.promo-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    background: var(--gradient-ocean);
    color: white;
    padding: 2rem;
    transition: transform var(--transition);
}

.promo-card:hover { transform: scale(1.02); }

.promo-discount {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--sunset-gold);
    color: var(--dark-navy);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    height: 100%;
    position: relative;
}

[data-theme="dark"] .testimonial-card { background: #1a2a3a; }

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--turquoise);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-stars { color: var(--sunset-gold); }

/* Stats Counter */
.stats-section {
    background: var(--gradient-ocean);
    color: white;
    padding: 60px 0;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About / Experience */
.experience-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.experience-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Promo Story Section */
.promo-story-section {
    position: relative;
    overflow: hidden;
}

.promo-story-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 194, 203, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.promo-video-wrap {
    position: relative;
}

.promo-video-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 59, 92, 0.18);
    background: var(--dark-navy);
    aspect-ratio: 16 / 9;
}

.promo-story-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    vertical-align: middle;
}

.promo-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(to top, rgba(0, 59, 92, 0.75) 0%, rgba(0, 59, 92, 0.25) 50%, rgba(0, 59, 92, 0.4) 100%);
    border: none;
    cursor: pointer;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 2;
}

.promo-video-play.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.promo-play-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-sunset);
    color: var(--dark-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    padding-left: 4px;
    box-shadow: 0 8px 30px rgba(255, 179, 71, 0.45);
    transition: transform var(--transition);
}

.promo-video-play:hover .promo-play-icon {
    transform: scale(1.08);
}

.promo-play-label {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.promo-video-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.promo-story-content {
    padding: 0 0.5rem;
}

.promo-story-lead {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--ocean-blue);
    margin-bottom: 1rem;
    line-height: 1.5;
}

[data-theme="dark"] .promo-story-lead {
    color: var(--turquoise);
}

.promo-story-divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-sunset);
    border-radius: 3px;
    margin-bottom: 1.5rem;
}

.promo-story-text {
    color: #555;
    line-height: 1.85;
    margin-bottom: 1.1rem;
    font-size: 1.02rem;
}

[data-theme="dark"] .promo-story-text {
    color: #bbb;
}

.promo-story-closing {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-navy);
    line-height: 1.7;
    margin-bottom: 0;
    padding: 1rem 1.25rem;
    background: rgba(0, 140, 204, 0.06);
    border-left: 3px solid var(--turquoise);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

[data-theme="dark"] .promo-story-closing {
    color: var(--turquoise);
    background: rgba(0, 194, 203, 0.08);
}

.promo-emoji {
    font-style: normal;
}

.promo-story-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.promo-story-actions .btn {
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .promo-story-content {
        text-align: center;
        padding-top: 0.5rem;
    }

    .promo-story-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .promo-story-closing {
        text-align: left;
    }

    .promo-story-actions {
        justify-content: center;
    }

    .promo-play-icon {
        width: 64px;
        height: 64px;
        font-size: 1.25rem;
    }
}

@media (max-width: 575px) {
    .promo-story-lead {
        font-size: 1.15rem;
    }

    .promo-story-text {
        font-size: 0.95rem;
    }

    .promo-story-actions {
        flex-direction: column;
    }

    .promo-story-actions .btn {
        width: 100%;
        margin: 0 !important;
    }
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 59, 92, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Footer */
.footer-dakak {
    background: var(--dark-navy);
    color: white;
    position: relative;
    margin-top: 60px;
}

.footer-wave {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    color: var(--dark-navy);
}

.footer-dakak h5 {
    color: var(--sunset-gold);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color var(--transition);
    font-size: 0.9rem;
}

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

.footer-contact li {
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--turquoise);
    width: 20px;
    margin-right: 8px;
}

.footer-contact a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-contact a:hover { color: var(--turquoise); }

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    margin-right: 8px;
    transition: all var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--turquoise);
    transform: translateY(-3px);
}

/* Floating Action Button */
.fab-book {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    background: var(--gradient-sunset);
    color: var(--dark-navy);
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 25px rgba(255, 179, 71, 0.5);
    transition: all var(--transition);
    animation: pulse 2s infinite;
}

.fab-book:hover {
    transform: scale(1.05);
    color: var(--dark-navy);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(255, 179, 71, 0.5); }
    50% { box-shadow: 0 6px 35px rgba(255, 179, 71, 0.8); }
}

/* Quick Contact */
.quick-contact {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1000;
}

.qc-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-ocean);
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition);
}

.qc-toggle:hover { transform: scale(1.1); }

.qc-panel {
    position: absolute;
    bottom: 60px;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 8px;
}

.quick-contact.open .qc-panel { display: flex; }

.qc-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border-radius: 50px;
    text-decoration: none;
    color: var(--dark-navy);
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: var(--shadow-card);
    white-space: nowrap;
    transition: all var(--transition);
}

.qc-item:hover {
    background: var(--ocean-blue);
    color: white;
}

/* Page Header */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--gradient-ocean);
    color: white;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero/hero-3.jpg') center/cover;
    opacity: 0.25;
}

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

/* Forms */
.form-control, .form-select {
    border-radius: var(--radius-sm);
    border: 1px solid #ddd;
    padding: 0.65rem 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 3px rgba(0, 140, 204, 0.15);
}

/* Blog Cards */
.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    height: 100%;
}

[data-theme="dark"] .blog-card { background: #1a2a3a; }

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

.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }

/* Flash Alert */
.flash-alert {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    animation: slideInRight 0.5s ease;
}

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

/* Booking Steps */
.booking-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
}

.booking-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.25rem;
    color: #999;
    font-size: 0.85rem;
    position: relative;
}

.booking-step.active { color: var(--ocean-blue); font-weight: 600; }
.booking-step.completed { color: var(--palm-green); }

.booking-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.booking-step.active .booking-step-num {
    background: var(--ocean-blue);
    color: white;
}

.booking-step.completed .booking-step-num {
    background: var(--palm-green);
    color: white;
}

/* Admin overrides */
.admin-sidebar {
    background: var(--dark-navy);
    min-height: 100vh;
    width: 260px;
    position: fixed;
    left: 0;
    top: 0;
    padding-top: 1rem;
    z-index: 100;
}

.admin-content {
    margin-left: 260px;
    padding: 2rem;
    min-height: 100vh;
    background: #f4f6f9;
}

.admin-stat-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-clips { bottom: 90px; }
    .hero-clip { width: 80px; height: 52px; }
    .fab-book span { display: none; }
    .fab-book { padding: 14px; border-radius: 50%; }
    .admin-content { margin-left: 0; }
    .admin-sidebar { transform: translateX(-100%); }
}

@media (max-width: 767px) {
    .section-padding { padding: 60px 0; }
    .hero-booking { bottom: -60px; }
    .booking-glass { padding: 1rem; }
    .hero-clips { display: none; }
    .hero-progress { display: none; }
}

/* Lazy load fade */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s;
}

img[loading="lazy"].loaded { opacity: 1; }

/* Sand beige section bg */
.bg-sand { background: var(--sand-beige); }
[data-theme="dark"] .bg-sand { background: #152535; }

/* Gradient text */
.gradient-text {
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
