/*
=============================
   VARIABLES & DESIGN SYSTEM
=============================
*/
:root {
    --color-bg: #0A0A0A;
    --color-bg-light: #111111;
    --color-bg-lighter: #1A1A1A;
    --color-bg-card: #161616;
    --color-gold: #D4AF37;
    --color-gold-hover: #b59530;
    --color-gold-light: rgba(212, 175, 55, 0.12);
    --color-gold-glow: rgba(212, 175, 55, 0.25);
    --color-text: #D0D0D0;
    --color-text-muted: #888;
    --color-white: #FFFFFF;
    --color-green: #2ecc71;
    --color-yellow: #f1c40f;
    --color-red: #e74c3c;
    --color-grey: #555;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --nav-height: 75px;
    --container-width: 1200px;
    --radius: 12px;
    --radius-sm: 8px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-white);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
}

/* ── UTILITIES ── */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 100px 0;
}

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

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

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

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-3 {
    margin-top: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-subtitle {
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-subtitle i {
    margin-right: 8px;
}

.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-divider {
    height: 3px;
    width: 60px;
    background: var(--color-gold);
    margin: 1.2rem 0 2rem;
    border-radius: 10px;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

.btn-primary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.btn-gold {
    background: var(--color-gold);
    color: var(--color-bg);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
}

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

.btn-confirm {
    background: linear-gradient(135deg, var(--color-gold), #c9a02e);
    color: var(--color-bg);
    padding: 16px 35px;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: linear-gradient(135deg, #128C7E, #25D366);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

/* ── LOADER ── */
.loader-overlay {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
}

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

.loader-spinner {
    width: 45px;
    height: 45px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    border-top-color: var(--color-gold);
    animation: spin 0.9s ease-in-out infinite;
    margin: 0 auto 15px;
}

.loader-spinner.small {
    width: 25px;
    height: 25px;
    border-width: 2px;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 4px;
    color: var(--color-gold);
}

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

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: transparent;
    transition: var(--transition);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    color: var(--color-gold);
    font-size: 1.5rem;
}

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

.brand-the {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--color-gold);
    text-transform: uppercase;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

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

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

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

/* Hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 100%;
    height: 2px;
    background: var(--color-white);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    content: '';
    top: -8px;
}

.hamburger::after {
    content: '';
    top: 8px;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--color-bg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    transform: translateY(-150%);
    transition: transform var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border-bottom: 2px solid var(--color-gold);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-link {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* ── HERO ── */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(10, 10, 10, 0.45), rgba(10, 10, 10, 0.65)), url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?q=80&w=2074&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg) 85%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 1.5rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
    color: var(--color-gold);
    font-size: 0.8rem;
    letter-spacing: 4px;
    font-weight: 600;
}

.badge-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--color-gold);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--color-text);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-white);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
}

.mouse {
    width: 22px;
    height: 35px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 4px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 6px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

.scroll-indicator p {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* ── INFO BANNER ── */
.info-banner {
    background: var(--color-bg-lighter);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    flex-wrap: wrap;
    gap: 50px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--color-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-gold);
    font-size: 1.2rem;
}

.info-item h4 {
    margin: 0 0 2px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.info-item p {
    margin: 0;
    font-weight: 500;
    color: var(--color-white);
    font-size: 0.95rem;
}

/* ── ABOUT ── */
.image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-gold);
    z-index: -1;
    border-radius: var(--radius);
}

.image-wrapper img {
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--color-gold), #c9a02e);
    color: var(--color-bg);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.experience-badge .years {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3;
}

.features-list {
    margin-top: 1.5rem;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--color-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-gold);
    font-size: 0.7rem;
}

/* ── SERVICES ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--color-bg-card);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.15);
}

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    width: 55px;
    height: 55px;
    background: var(--color-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    color: var(--color-gold);
    font-size: 1.3rem;
}

.service-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-price {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 1.4rem;
    font-weight: 700;
}

.service-duration {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* ── GALLERY ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--color-gold);
    font-size: 1.5rem;
}

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

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BOOKING WIZARD
━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.booking-subtext {
    color: var(--color-text-muted);
    max-width: 550px;
    margin: 0 auto;
}

.wizard-container {
    max-width: 750px;
    margin: 3rem auto 0;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.wizard-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

/* Progress */
.wizard-progress {
    margin-bottom: 40px;
    position: relative;
}

.progress-track {
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--color-gold);
    border-radius: 10px;
    width: 0%;
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.progress-step.active .step-circle {
    background: var(--color-gold);
    color: var(--color-bg);
    border-color: var(--color-gold);
    box-shadow: 0 0 15px var(--color-gold-glow);
}

.progress-step.completed .step-circle {
    background: var(--color-gold);
    color: var(--color-bg);
    border-color: var(--color-gold);
}

.progress-step span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.progress-step.active span {
    color: var(--color-gold);
}

/* Steps */
.wizard-step {
    display: none;
    animation: fadeSlideIn 0.4s ease;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

/* Step 1: Service Selector */
.service-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.service-option input {
    display: none;
}

.option-card {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.02);
}

.option-card i {
    font-size: 1.8rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    display: block;
    transition: var(--transition);
}

.option-card h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.option-card p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0 0 10px;
}

.option-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-gold);
    font-weight: 700;
}

.service-option.selected .option-card,
.service-option input:checked+.option-card {
    border-color: var(--color-gold);
    background: var(--color-gold-light);
    box-shadow: 0 0 20px var(--color-gold-glow);
}

.service-option.selected .option-card i,
.service-option input:checked+.option-card i {
    color: var(--color-gold);
}

.option-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

/* Step 2: Calendar */
.calendar-container {
    max-width: 400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.calendar-header h4 {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
}

.cal-nav {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cal-nav:hover {
    background: var(--color-gold);
    color: var(--color-bg);
    border-color: var(--color-gold);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 10px;
}

.calendar-weekdays span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px;
}

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

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-text);
    border: none;
    background: none;
}

.cal-day:hover:not(.disabled):not(.empty) {
    background: var(--color-gold-light);
    color: var(--color-gold);
}

.cal-day.selected {
    background: var(--color-gold);
    color: var(--color-bg);
    font-weight: 700;
    box-shadow: 0 0 15px var(--color-gold-glow);
}

.cal-day.today {
    border: 1px solid var(--color-gold);
}

.cal-day.disabled {
    color: rgba(255, 255, 255, 0.15);
    cursor: not-allowed;
}

.cal-day.empty {
    cursor: default;
}

.selected-date-display {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.selected-date-display strong {
    color: var(--color-gold);
}

/* Step 3: Time Slots */
.capacity-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-dot.green {
    background: var(--color-green);
}

.legend-dot.yellow {
    background: var(--color-yellow);
}

.legend-dot.red {
    background: var(--color-red);
}

.legend-dot.grey {
    background: var(--color-grey);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 5px;
}

.time-slots-grid::-webkit-scrollbar {
    width: 4px;
}

.time-slots-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.time-slots-grid::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 10px;
}

.time-slot {
    padding: 12px 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.02);
}

.time-slot .slot-time {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.time-slot .slot-capacity {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-slot.green {
    border-color: rgba(46, 204, 113, 0.3);
}

.time-slot.green .slot-capacity {
    color: var(--color-green);
}

.time-slot.yellow {
    border-color: rgba(241, 196, 15, 0.3);
}

.time-slot.yellow .slot-capacity {
    color: var(--color-yellow);
}

.time-slot.red {
    border-color: rgba(231, 76, 60, 0.3);
}

.time-slot.red .slot-capacity {
    color: var(--color-red);
}

.time-slot.full {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.05);
}

.time-slot.full .slot-time {
    text-decoration: line-through;
    color: var(--color-text-muted);
}

.time-slot.full .slot-capacity {
    color: var(--color-grey);
}

.time-slot.selected {
    background: var(--color-gold-light);
    border-color: var(--color-gold);
    box-shadow: 0 0 15px var(--color-gold-glow);
}

.time-slot:hover:not(.full):not(.selected) {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.05);
}

.slots-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 0;
    color: var(--color-text-muted);
}

/* Step 4: Details Form */
.booking-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-white);
}

.details-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.input-group {
    position: relative;
}

.input-group input {
    width: 100%;
    padding: 16px 20px 16px 45px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.input-group input:focus {
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.06);
}

.input-group label {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 0.95rem;
    pointer-events: none;
    transition: var(--transition);
}

.input-group label i {
    margin-right: 6px;
}

.input-group input:focus+label,
.input-group input:valid+label,
.input-group input:not(:placeholder-shown)+label {
    top: -10px;
    left: 12px;
    font-size: 0.75rem;
    color: var(--color-gold);
    background: var(--color-bg-card);
    padding: 0 6px;
    border-radius: 4px;
}

/* Validation Error States */
.input-group input.input-error {
    border-color: var(--color-red) !important;
    background: rgba(231, 76, 60, 0.06);
    animation: shake 0.4s ease;
}

.field-error {
    display: block;
    color: var(--color-red);
    font-size: 0.75rem;
    margin-top: 6px;
    padding-left: 4px;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-6px);
    }

    40%,
    80% {
        transform: translateX(6px);
    }
}

/* Step 5: Confirmation */
.confirmation-screen {
    text-align: center;
    padding: 20px 0;
}

.confirmation-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.confirmation-text {
    color: var(--color-text-muted);
    margin-bottom: 25px;
}

.confirmation-summary {
    margin-bottom: 30px;
}

/* Success Checkmark Animation */
.success-checkmark {
    margin: 0 auto 25px;
}

.checkmark {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: var(--color-gold);
    stroke-miterlimit: 10;
    margin: 0 auto;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--color-gold);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

/* Wizard Navigation */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    align-items: center;
}

/* Wizard Error */
.wizard-error {
    text-align: center;
    padding: 30px;
    background: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: var(--radius-sm);
    margin-top: 20px;
}

.wizard-error h4 {
    margin: 15px 0 5px;
}

.wizard-error p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

/* ── FOOTER ── */
.footer {
    background: var(--color-bg-light);
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

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

.footer-text {
    color: var(--color-text-muted);
    max-width: 350px;
    margin: 1.5rem 0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--color-white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-gold);
    color: var(--color-bg);
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-gold);
}

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

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
}

.footer-links a i {
    font-size: 0.6rem;
    color: var(--color-gold);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-bottom {
    background: var(--color-bg);
    padding: 20px 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* ── ANIMATIONS ── */
.reveal {
    opacity: 0;
    visibility: hidden;
}

.fade-up {
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s;
}

.fade-right {
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s;
}

.fade-left {
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s;
}

.reveal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

.delay-4 {
    transition-delay: 0.6s;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

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

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

    .service-selector {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .info-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 25px 30px;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

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

    .wizard-container {
        padding: 25px 18px;
    }

    .service-selector {
        grid-template-columns: 1fr;
    }

    .booking-summary {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .time-slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .capacity-legend {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

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

    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── FLOATING WHATSAPP CHAT BUTTON ── */
.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    z-index: 9999;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    animation: waBounceIn 0.6s ease 1s both;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.wa-float i {
    position: relative;
    z-index: 2;
}

/* Pulse ring animation */
.wa-float-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: waPulse 2s ease-out infinite;
    z-index: 1;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Tooltip */
.wa-float-tooltip {
    position: absolute;
    right: 72px;
    background: var(--color-bg-card, #161616);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-family: var(--font-body, sans-serif);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.wa-float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--color-bg-card, #161616);
}

.wa-float:hover .wa-float-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Bounce in entrance */
@keyframes waBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(40px);
    }

    50% {
        transform: scale(1.08) translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .wa-float {
        bottom: 18px;
        right: 18px;
        width: 54px;
        height: 54px;
        font-size: 1.6rem;
    }

    .wa-float-tooltip {
        display: none;
    }
}