/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-light: #F4E5B8;
    --gold-dark: #B8941F;
    --black: #0A0A0A;
    --black-light: #1A1A1A;
    --black-lighter: #2A2A2A;
    --white: #FFFFFF;
    --gray: #CCCCCC;
    --gray-dark: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 10px 50px rgba(212, 175, 55, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    animation: fadeInLeft 1s ease;
}

.logo i {
    font-size: 2rem;
    animation: rotateIn 1s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

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

.nav-link:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.nav-link.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.nav-link.btn-gold::before {
    display: none;
}

.nav-link.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    color: var(--black);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.9)),
                url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?w=1920') center/cover;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
    animation: pulseOverlay 8s ease-in-out infinite;
}

@keyframes pulseOverlay {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Particles Background */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    animation: floatParticles 20s ease-in-out infinite;
}

.particles::before {
    background: var(--gold);
    top: -200px;
    left: -200px;
}

.particles::after {
    background: var(--gold);
    bottom: -200px;
    right: -200px;
    animation-delay: -10s;
}

@keyframes floatParticles {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -100px) scale(1.2); }
    66% { transform: translate(-100px, 100px) scale(0.8); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-icon {
    font-size: 6rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
    animation: float 4s ease-in-out infinite, rotateGlow 8s linear infinite;
}

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

@keyframes rotateGlow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6)) hue-rotate(0deg); }
    50% { filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.9)) hue-rotate(10deg); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 6px;
    text-shadow: 0 0 80px rgba(212, 175, 55, 0.5);
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 100%;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: var(--gray);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 2px;
    animation: fadeIn 2s ease;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-location:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 60px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 60px rgba(212, 175, 55, 0.4);
}

/* Glow Effect */
.glow-effect {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 15px 60px rgba(212, 175, 55, 0.7), 0 0 30px rgba(212, 175, 55, 0.5);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 32px;
    height: 52px;
    border: 3px solid var(--gold);
    border-radius: 25px;
    position: relative;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.mouse::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseWheel 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(15px); }
}

@keyframes mouseWheel {
    0% { top: 12px; opacity: 1; }
    100% { top: 32px; opacity: 0; }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-360deg) scale(0);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

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

.animate-fade-in {
    animation: fadeInUp 1s ease;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease 0.4s both;
}

.animate-fade-in-delay-3 {
    animation: fadeInUp 1s ease 0.6s both;
}

.animate-fade-in-delay-4 {
    animation: fadeInUp 1s ease 0.8s both;
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.glow-text {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5),
                 0 0 40px rgba(212, 175, 55, 0.3),
                 0 0 60px rgba(212, 175, 55, 0.2);
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.5),
                     0 0 40px rgba(212, 175, 55, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8),
                     0 0 60px rgba(212, 175, 55, 0.5),
                     0 0 90px rgba(212, 175, 55, 0.3);
    }
}

.title-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 2rem;
    position: relative;
}

.animated-underline {
    animation: expandWidth 2s ease-in-out infinite;
}

@keyframes expandWidth {
    0%, 100% { width: 120px; }
    50% { width: 180px; }
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Glass Effect */
.glass-effect {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Shine Effect */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%);
    transition: transform 0.8s ease;
}

.shine-effect:hover::before {
    transform: translateX(100%) translateY(100%);
}

/* Zoom Effect */
.zoom-effect {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.zoom-effect:hover {
    transform: scale(1.05);
}

/* Pulse Glow */
.pulse-glow {
    animation: pulseGlowBorder 3s ease-in-out infinite;
}

@keyframes pulseGlowBorder {
    0%, 100% {
        border-color: rgba(212, 175, 55, 0.2);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }
    50% {
        border-color: rgba(212, 175, 55, 0.5);
        box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    }
}

/* Booking Section */
.booking-section {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
    position: relative;
}

.booking-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--black-lighter);
    border: 3px solid var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--gray-dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.step.active .step-number {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
    color: var(--black);
    transform: scale(1.15);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.6),
                0 0 30px rgba(212, 175, 55, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1.15); }
    50% { transform: scale(1.25); }
}

.step.completed .step-number {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.step.completed .step-number::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    animation: checkmarkPop 0.5s ease;
}

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

.step-label {
    font-size: 0.95rem;
    color: var(--gray-dark);
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.step.active .step-label {
    color: var(--gold);
    font-weight: 600;
    transform: translateY(-5px);
}

.step-line {
    flex: 1;
    height: 3px;
    background: var(--black-lighter);
    position: relative;
    margin: 0 15px;
}

.step-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px var(--gold);
}

.step.completed + .step-line .step-line-fill {
    width: 100%;
}

/* Booking Card */
.booking-card {
    border-radius: 30px;
    padding: 50px;
    position: relative;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.step-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Playfair Display', serif;
}

.step-title i {
    color: var(--gold);
    animation: iconSpin 3s ease-in-out infinite;
}

@keyframes iconSpin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.service-option {
    background: var(--black-lighter);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-option:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.service-option.selected {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.15));
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5),
                0 20px 50px rgba(212, 175, 55, 0.3);
    transform: translateY(-10px) scale(1.05);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    animation: iconFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

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

.premium-icon {
    animation: iconFloatRotate 4s ease-in-out infinite !important;
}

@keyframes iconFloatRotate {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(15deg); }
}

.service-option h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--white);
}

.service-duration {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 15px;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Date & Time Selection */
.datetime-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-bottom: 40px;
}

.date-picker,
.time-picker {
    border-radius: 20px;
    padding: 30px;
}

.date-picker h3,
.time-picker h3 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.calendar-wrapper {
    background: var(--black-lighter);
    border-radius: 15px;
    padding: 25px;
}

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

.calendar-header h4 {
    color: var(--white);
    font-size: 1.2rem;
}

.calendar-header button {
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 8px 15px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.calendar-header button:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.2);
}

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

.day-label {
    text-align: center;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

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

.calendar-date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--white);
    font-weight: 500;
    position: relative;
}

.calendar-date::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.calendar-date:hover:not(.disabled) {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.calendar-date.selected {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    transform: scale(1.15);
}

.calendar-date.disabled {
    color: var(--gray-dark);
    cursor: not-allowed;
    opacity: 0.3;
}

.calendar-date.other-month {
    opacity: 0.3;
}

/* Time Slots */
.time-picker {
    max-height: 450px;
    overflow-y: auto;
}

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

.time-slot {
    padding: 15px;
    background: var(--black-lighter);
    border: 2px solid transparent;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.time-slot:hover:not(.disabled) {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
}

.time-slot.selected {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-color: var(--gold);
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    transform: scale(1.1);
}

.time-slot.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    color: var(--gray-dark);
}

.info-message {
    text-align: center;
    color: var(--gray);
    padding: 25px;
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Personal Details Form */
.details-form {
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.floating-label {
    position: relative;
}

.floating-label input,
.floating-label textarea {
    width: 100%;
    padding: 18px 18px 18px 50px;
    background: var(--black-lighter);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
}

.floating-label input:focus,
.floating-label textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    background: rgba(26, 26, 26, 0.8);
}

.floating-label label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-label textarea + label {
    top: 25px;
    transform: translateY(0);
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label textarea:focus + label,
.floating-label textarea:not(:placeholder-shown) + label {
    top: -12px;
    left: 12px;
    font-size: 0.85rem;
    color: var(--gold);
    background: var(--black);
    padding: 0 8px;
}

.floating-label label i {
    color: var(--gold);
}

.form-group small {
    display: block;
    margin-top: 8px;
    color: var(--gray);
    font-size: 0.85rem;
    margin-left: 50px;
}

/* Booking Summary */
.booking-summary {
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 40px;
    border: 2px solid var(--gold);
}

.booking-summary h3 {
    color: var(--gold);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.summary-label {
    color: var(--gray);
}

.summary-value {
    color: var(--white);
    font-weight: 600;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 10px;
    font-size: 1.5rem;
    font-weight: 700;
    border-top: 2px solid var(--gold);
    margin-top: 15px;
}

.summary-total .summary-label,
.summary-total .summary-value {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Verification */
.verification-step {
    text-align: center;
}

.verification-step.hidden {
    display: none;
}

.code-input-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 35px 0;
}

.code-input {
    width: 55px;
    height: 65px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--black-lighter);
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.glow-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5),
                0 0 40px rgba(212, 175, 55, 0.3);
    transform: scale(1.1);
    background: rgba(26, 26, 26, 0.8);
}

/* Success Animation */
.success-animation {
    margin-bottom: 35px;
}

.success-checkmark {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
}

.check-icon {
    width: 120px;
    height: 120px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid var(--gold);
    animation: scaleIn 0.6s ease;
}

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

.icon-line {
    height: 5px;
    background-color: var(--gold);
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.line-tip {
    top: 56px;
    left: 24px;
    width: 30px;
    transform: rotate(45deg);
    animation: lineTip 0.75s 0.6s;
}

.line-long {
    top: 48px;
    right: 16px;
    width: 60px;
    transform: rotate(-45deg);
    animation: lineLong 0.75s 0.6s;
}

@keyframes lineTip {
    0% { width: 0; left: 24px; top: 56px; }
    100% { width: 30px; left: 24px; top: 56px; }
}

@keyframes lineLong {
    0% { width: 0; right: 46px; top: 48px; }
    100% { width: 60px; right: 16px; top: 48px; }
}

.icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(212, 175, 55, 0.2);
}

.icon-fix {
    top: 10px;
    width: 8px;
    left: 32px;
    z-index: 1;
    height: 100px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: var(--black-lighter);
}

.success-title {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    animation: fadeInUp 0.5s ease 0.8s both;
}

.success-text {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
    animation: fadeInUp 0.5s ease 1s both;
}

.btn-link {
    background: transparent;
    border: none;
    color: var(--gold);
    cursor: pointer;
    padding: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-link:hover {
    text-decoration: underline;
    transform: scale(1.05);
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.form-navigation button {
    flex: 1;
}

.btn-large {
    padding: 1.3rem 3rem;
    font-size: 1.2rem;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Services Showcase */
.services {
    background: var(--black-light);
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.service-showcase-card {
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-showcase-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.3);
}

.showcase-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 25px;
    animation: iconFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.service-showcase-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.service-showcase-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.showcase-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Gallery Section */
.gallery {
    background: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    height: 320px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(184, 148, 31, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay i {
    font-size: 3.5rem;
    color: var(--black);
}

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

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

/* Contact Section */
.contact {
    background: var(--black-light);
}

.contact-content {
    display: grid;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.contact-card {
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.contact-card i {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 20px;
    animation: iconFloat 3s ease-in-out infinite;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: var(--white);
    font-size: 1.3rem;
}

.contact-card p {
    color: var(--gray);
    line-height: 1.8;
}

.contact-cta {
    border-radius: 25px;
    padding: 55px;
    text-align: center;
    border: 2px solid var(--gold);
}

.contact-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.contact-cta p {
    color: var(--gray);
    margin-bottom: 35px;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--black);
    padding: 70px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: var(--gray);
    margin: 25px 0;
    line-height: 1.8;
    font-style: italic;
}

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

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--black-lighter);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-contact p {
    color: var(--gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--gray-dark);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.loading-overlay.hidden {
    display: none;
}

.loader {
    width: 70px;
    height: 70px;
    border: 6px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

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

.loading-overlay p {
    margin-top: 25px;
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
    animation: pulseText 1.5s ease-in-out infinite;
}

@keyframes pulseText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hidden {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .datetime-selection {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem;
        gap: 2rem;
        border-bottom: 2px solid var(--gold);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 3px;
    }

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

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

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

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

    .hero-buttons {
        flex-direction: column;
    }

    .booking-card {
        padding: 30px 20px;
    }

    .progress-steps {
        padding: 0 10px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .step-label {
        font-size: 0.8rem;
    }

    .code-input {
        width: 45px;
        height: 55px;
        font-size: 1.3rem;
    }

    .form-navigation {
        flex-direction: column;
    }
}
