/* Book Me Page — Optimized Styles */

/* === KEYFRAMES (reduced set) === */
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes marquee-slide { 0% { transform: translateX(0%); } 100% { transform: translateX(-50%); } }
@keyframes text-glow-pulse {
    0%, 100% { text-shadow: 0 0 15px rgba(0, 219, 233, 0.25), 0 0 30px rgba(0, 219, 233, 0.1); }
    50% { text-shadow: 0 0 25px rgba(253, 24, 245, 0.4), 0 0 50px rgba(253, 24, 245, 0.2); }
}
@keyframes cosmic-aura {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 219, 233, 0.2); border-color: rgba(0, 219, 233, 0.4); }
    50% { box-shadow: 0 0 25px rgba(253, 24, 245, 0.35); border-color: rgba(253, 24, 245, 0.5); }
}
@keyframes note-float {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}
@keyframes ring-pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.5); opacity: 0; }
}
@keyframes gradient-border-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes neon-pulse {
    0%, 100% { box-shadow: 0 0 12px rgba(0, 219, 233, 0.4), 0 0 30px rgba(0, 219, 233, 0.15); }
    50% { box-shadow: 0 0 20px rgba(0, 219, 233, 0.6), 0 0 50px rgba(0, 219, 233, 0.25); }
}
@keyframes particle-drift {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    20% { opacity: 0.6; }
    80% { opacity: 0.6; }
    100% { transform: translate(var(--dx), var(--dy)) scale(0); opacity: 0; }
}

/* === BASE === */
html, body {
    background-color: #020205;
    color: #f0f0f0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

.editorial-font-serif { font-family: 'Playfair Display', serif; }

/* === REVEAL ANIMATION === */
.bm-reveal {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(.16, 1, .3, 1), transform 0.6s cubic-bezier(.16, 1, .3, 1);
}
.bm-reveal.visible { opacity: 1; transform: translateY(0); }

/* === HERO MUSIC NOTES === */
.hero-notes {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 1; overflow: hidden;
}
.hero-note {
    position: absolute; bottom: -30px;
    font-size: 1.1rem; color: rgba(0, 219, 233, 0.25);
    animation: note-float linear infinite;
    filter: blur(0.5px);
}
.hero-note:nth-child(1) { left: 10%; animation-duration: 14s; animation-delay: 0s; }
.hero-note:nth-child(2) { left: 25%; animation-duration: 16s; animation-delay: 2s; color: rgba(253, 24, 245, 0.2); }
.hero-note:nth-child(3) { left: 75%; animation-duration: 13s; animation-delay: 4s; }
.hero-note:nth-child(4) { left: 88%; animation-duration: 15s; animation-delay: 1s; color: rgba(253, 24, 245, 0.2); }

/* === PORTRAIT === */
.portrait-border {
    position: absolute; inset: -3px; border-radius: 4px;
    background: conic-gradient(from 0deg, #00dbe9, #fd18f5, #00dbe9, #fd18f5, #00dbe9);
    animation: gradient-border-spin 6s linear infinite;
    z-index: -1; opacity: 0.7;
}
.cosmic-aura-pulse {
    animation: cosmic-aura 6s ease-in-out infinite;
    border: 1px solid rgba(0, 219, 233, 0.4);
    transition: all 0.3s ease;
}

/* === HERO RINGS === */
.hero-rings {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 280px; height: 280px;
    pointer-events: none; z-index: 0;
}
.hero-ring {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%; border: 1px solid rgba(0, 219, 233, 0.25);
    animation: ring-pulse ease-out infinite;
    box-shadow: 0 0 15px rgba(0, 219, 233, 0.15), inset 0 0 15px rgba(0, 219, 233, 0.08);
}
.hero-ring:nth-child(1) { width: 180px; height: 180px; animation-duration: 3s; }
.hero-ring:nth-child(2) { width: 240px; height: 240px; animation-duration: 3s; animation-delay: 1s; }

/* === HERO PARTICLES === */
.hero-particles {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 1; overflow: hidden;
}
.hero-particle {
    position: absolute; width: 4px; height: 4px;
    border-radius: 50%; background: #00dbe9;
    animation: particle-drift linear infinite; opacity: 0;
    box-shadow: 0 0 6px currentColor;
}

/* === HERO VIDEO === */
.hero-video-bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; filter: brightness(0.35) contrast(1.1) saturate(0.8);
    z-index: 0;
}
.hero-video-overlay {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse at center, rgba(2,2,5,0.3) 0%, rgba(2,2,5,0.85) 100%),
        linear-gradient(to bottom, rgba(2,2,5,0.5) 0%, transparent 30%, transparent 70%, rgba(2,2,5,0.95) 100%);
    z-index: 1;
}

/* === COSMIC HEADLINE === */
.cosmic-headline {
    font-family: 'Playfair Display', serif;
    font-weight: 900; letter-spacing: -0.04em;
    text-transform: uppercase; line-height: 0.9;
}
.cosmic-headline .headline-prefix { display: block; color: #ffffff; }
.cosmic-headline .headline-accent {
    display: block;
    background: linear-gradient(90deg, #00dbe9 0%, #00dbe9 60%, rgba(0, 219, 233, 0.7) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gradient-text {
    background: linear-gradient(135deg, #00dbe9 0%, #fd18f5 50%, #00dbe9 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}
.text-glow-cosmic { animation: text-glow-pulse 4s ease-in-out infinite; }

/* === HERO CTA BUTTONS === */
.hero-cta-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 1rem 2.5rem; background: #00dbe9; color: #020205;
    font-weight: 800; font-size: 0.75rem; letter-spacing: 0.15em;
    text-transform: uppercase; text-decoration: none;
    transition: all 0.3s cubic-bezier(.16, 1, .3, 1);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.hero-cta-primary:hover {
    background: #fd18f5; color: #ffffff;
    box-shadow: 0 0 40px rgba(253, 24, 245, 0.4);
    transform: translateY(-2px);
}
.hero-cta-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 1rem 2.5rem; background: transparent;
    border: 2px solid rgba(255,255,255,0.3); color: #ffffff;
    font-weight: 700; font-size: 0.75rem; letter-spacing: 0.15em;
    text-transform: uppercase; font-family: inherit;
    transition: all 0.3s cubic-bezier(.16, 1, .3, 1);
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}
.hero-cta-secondary:hover {
    border-color: #00dbe9; color: #00dbe9;
    background: rgba(0, 219, 233, 0.08);
    transform: translateY(-2px);
}
.hero-cta-secondary:active {
    border-color: #00dbe9; color: #00dbe9;
    background: rgba(0, 219, 233, 0.15);
}
@media (max-width: 640px) {
    .hero-cta-secondary {
        padding: 1.25rem 2rem; font-size: 0.7rem;
        touch-action: manipulation;
    }
}

/* === MARQUEE === */
.marquee-track {
    display: flex; width: max-content;
    animation: marquee-slide 25s linear infinite;
}

/* === STAT COUNTER === */
.stat-counter {
    position: relative; text-align: center; padding: 1.5rem 1rem;
}
.stat-counter::after {
    content: ''; position: absolute; top: 20%; right: 0;
    height: 60%; width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.08), transparent);
}
.stat-counter:last-child::after { display: none; }
.stat-number {
    font-family: 'Playfair Display', serif; font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1;
    background: linear-gradient(135deg, #00dbe9 0%, #ffffff 50%, #fd18f5 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    font-family: 'JetBrains Mono', monospace; font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35); margin-top: 0.5rem;
}

/* === EDITORIAL SECTION === */
.red-marker {
    display: inline-block; background: #dc2626; color: #ffffff;
    font-family: 'JetBrains Mono', monospace; font-size: 10px;
    font-weight: 700; letter-spacing: 0.15em; padding: 0.25rem 0.5rem;
}
.marker-strip {
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid rgba(24, 24, 27, 0.6);
    padding-bottom: 1rem; margin-bottom: 1.5rem;
    font-family: 'JetBrains Mono', monospace; font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}
.marker-strip .marker-coord { color: rgba(0, 219, 233, 0.5); }
.dossier-box {
    position: relative; background: rgba(9, 9, 11, 0.4);
    border: 1px solid rgba(24, 24, 27, 0.6);
}

/* === CTA BUTTON === */
.cta-btn {
    display: inline-block; padding: 1rem 3rem;
    background: transparent; border: 2px solid #00dbe9; color: #00dbe9;
    font-weight: 700; text-transform: uppercase; letter-spacing: .15em;
    text-decoration: none; transition: all .3s ease; cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}
.cta-btn:hover {
    background: #00dbe9; color: #020205;
    box-shadow: 0 0 30px rgba(0,219,233,.4);
}

/* === FORM FIELDS === */
.bm-input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f0f0f0; font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s ease;
}
.bm-input:focus {
    outline: none; border-color: #00dbe9;
    box-shadow: 0 0 0 3px rgba(0, 219, 233, 0.12);
}
.bm-input::placeholder { color: rgba(255, 255, 255, 0.35); }
select.bm-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
input[type="date"].bm-input::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(0.8);
    cursor: pointer;
}
.event-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.event-chip {
    position: relative; padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.05em;
    cursor: pointer; transition: all 0.3s cubic-bezier(.16, 1, .3, 1);
}
.event-chip:hover {
    border-color: rgba(0, 219, 233, 0.3);
    color: rgba(255, 255, 255, 0.7);
}
.event-chip.active {
    border-color: #00dbe9; color: #00dbe9;
    background: rgba(0, 219, 233, 0.1);
    box-shadow: 0 0 15px rgba(0, 219, 233, 0.1);
}
.event-chip.active::after {
    content: ''; position: absolute; top: -1px; right: -1px;
    width: 6px; height: 6px; background: #00dbe9;
    border-radius: 50%; box-shadow: 0 0 6px #00dbe9;
}
.event-chip input[type="radio"] { display: none; }
.form-step-label { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.25rem; }
.form-step-num {
    width: 24px; height: 24px; border: 1px solid rgba(0, 219, 233, 0.4);
    display: flex; align-items: center; justify-content: center;
    font-family: 'JetBrains Mono', monospace; font-size: 10px;
    font-weight: 700; color: #00dbe9;
}
.form-step-text {
    font-family: 'JetBrains Mono', monospace; font-size: 10px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}
.form-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(24, 24, 27, 0.8), rgba(0, 219, 233, 0.08), rgba(24, 24, 27, 0.8));
}

/* === VIDEO TESTIMONIALS === */
.video-card {
    position: relative; background: transparent;
    border: none; overflow: visible;
    transition: all 0.5s cubic-bezier(.16, 1, .3, 1);
}
.video-card:hover { transform: translateY(-6px); }
.video-card .video-placeholder {
    aspect-ratio: 9/16; max-height: 420px; margin: 0 auto;
    width: 100%; max-width: 220px; background: #0a0a0f;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; border-radius: 12px;
    margin-top: 1rem; margin-bottom: 0.5rem;
    border: 1px solid rgba(0, 219, 233, 0.15);
}
.video-card .video-placeholder .testimonial-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; border-radius: 12px;
}
.video-card .play-btn {
    width: 52px; height: 52px; border: 2px solid rgba(0, 219, 233, 0.7);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: rgba(0, 219, 233, 0.08); backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(.16, 1, .3, 1);
    cursor: pointer; position: relative; z-index: 2;
    animation: neon-pulse 3s ease-in-out infinite;
}
.video-card:hover .play-btn {
    border-color: #00dbe9; background: rgba(0, 219, 233, 0.2);
    transform: scale(1.1);
}
.video-card.is-playing .play-btn { opacity: 0; pointer-events: none; }
.video-card.is-playing:hover .play-btn { opacity: 1; pointer-events: auto; }
.video-card .video-label {
    position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
    background: rgba(0, 219, 233, 0.85); padding: 3px 8px;
    font-family: 'JetBrains Mono', monospace; font-size: 8px;
    font-weight: 700; color: #020205; letter-spacing: 0.12em;
    text-transform: uppercase; z-index: 2; border-radius: 4px;
}
.video-card .video-duration {
    position: absolute; bottom: 10px; right: 10px;
    background: rgba(0,0,0,0.75); padding: 3px 6px;
    font-family: 'JetBrains Mono', monospace; font-size: 9px;
    color: rgba(255,255,255,0.7); z-index: 2; border-radius: 4px;
}

/* === CAROUSEL === */
.testimonial-carousel-wrap { position: relative; overflow: visible; padding: 0 60px; }
.testimonial-carousel {
    display: flex; gap: 1.25rem; overflow-x: auto;
    scroll-behavior: smooth; scrollbar-width: none;
    padding: 0.5rem 0 1rem;
}
.testimonial-carousel::-webkit-scrollbar { display: none; }
.testimonial-carousel .video-card { min-width: calc(25% - 0.9375rem); flex-shrink: 0; }
.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(2, 2, 5, 0.7); backdrop-filter: blur(8px);
    color: #00dbe9; display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10; transition: all 0.3s ease;
}
.carousel-btn:hover {
    border-color: #00dbe9; background: rgba(0, 219, 233, 0.15);
}
.carousel-btn.carousel-prev { left: 0; }
.carousel-btn.carousel-next { right: 0; }
.carousel-dots { display: none; justify-content: center; gap: 6px; padding-top: 12px; }
.carousel-dots .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.2); transition: all 0.3s ease; cursor: pointer;
}
.carousel-dots .dot.active {
    background: #00dbe9; box-shadow: 0 0 8px rgba(0, 219, 233, 0.5);
    width: 20px; border-radius: 4px;
}

/* === MODAL === */
.booking-modal-backdrop {
    position: fixed; inset: 0; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    padding: 1rem; opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
}
.booking-modal-backdrop.active { opacity: 1; pointer-events: auto; }
.booking-modal-content {
    position: relative; width: 100%; max-width: 48rem;
    max-height: 90vh; overflow-y: auto;
    background: #09090b; border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.6);
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s cubic-bezier(.16, 1, .3, 1);
}
.booking-modal-backdrop.active .booking-modal-content {
    transform: scale(1) translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 767px) {
    .hero-notes { font-size: 0.9rem; }
    .hero-rings { width: 180px; height: 180px; }
    .hero-ring:nth-child(1) { width: 120px; height: 120px; }
    .hero-ring:nth-child(2) { width: 160px; height: 160px; }
    .testimonial-carousel .video-card { min-width: 100%; }
    .testimonial-carousel-wrap { padding: 0 16px; }
    .testimonial-carousel { scroll-snap-type: x mandatory; gap: 0; }
    .testimonial-carousel .video-card { scroll-snap-align: center; }
    .carousel-dots { display: flex; }
    .carousel-btn { display: none; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .testimonial-carousel .video-card { min-width: calc(33.333% - 0.833rem); }
}
