:root {
    --bg-color: #091124;
    --navy-dark: #060c1a;
    --navy-main: #112663;
    --text-color: #ffffff;
    --text-muted: #b0c4de;
    --primary: #47b2e2;
    --primary-sky: #72b2e1;
    --primary-glow: rgba(71, 178, 226, 0.4);
    --secondary: #112663;
    --glass-bg: rgba(17, 38, 99, 0.45);
    --glass-border: rgba(71, 178, 226, 0.25);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

/* WUDUH Liquid Pill Buttons - Perfectly Proportioned */
.btn-primary, .glow-btn, .btn-liquid {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.95rem 2.2rem;
    overflow: hidden;
    z-index: 1;
    border-radius: 100px;
    border: 1px solid var(--primary);
    background-color: var(--navy-main);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 20px rgba(71, 178, 226, 0.25);
}

.btn-primary span, .glow-btn span, .btn-primary i, .glow-btn i {
    position: relative;
    z-index: 2;
    color: #ffffff !important;
}

.btn-primary::after, .glow-btn::after, .btn-liquid::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 50px;
    height: 52px;
    background-color: var(--primary);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.btn-primary:hover::after, .glow-btn:hover::after, .btn-liquid:hover::after {
    transform: translateX(-50%) scale(8);
}

.btn-primary:hover, .glow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(71, 178, 226, 0.4);
    border-color: #72b2e1;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.95rem 2.2rem;
    border-radius: 100px;
    border: 1px solid rgba(71, 178, 226, 0.4);
    background: rgba(17, 38, 99, 0.4);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(71, 178, 226, 0.2);
    border-color: var(--primary);
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Global Loader */
.global-loader {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: #05050A;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
    pointer-events: none;
    animation: forceHideLoader 0.5s ease 2.5s forwards;
}
@keyframes forceHideLoader {
    to { opacity: 0; visibility: hidden; }
}
.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(138, 43, 226, 0.3);
    border-top: 4px solid #00f0ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Fast Touch Response */
a, button, input, textarea, select {
    touch-action: manipulation;
}

/* Animations */
@keyframes floatGlow {
    0% {
        transform: translateY(0);
        filter: drop-shadow(0 0 5px rgba(138, 43, 226, 0.2));
    }
    50% {
        transform: translateY(-10px);
        filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.8));
    }
    100% {
        transform: translateY(0);
        filter: drop-shadow(0 0 5px rgba(138, 43, 226, 0.2));
    }
}

@keyframes dropIn {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fall-10x {
    position: absolute;
    top: -10%;
    font-weight: 900;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, rgba(17, 38, 99, 0.18), rgba(71, 178, 226, 0.35));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: rainDown 10s linear infinite;
    user-select: none;
    z-index: 0;
    white-space: nowrap;
}

@keyframes rainDown {
    0% {
        top: -10%;
        opacity: 0;
        transform: scale(0.8) rotate(0deg);
    }
    15% {
        opacity: 0.7;
    }
    85% {
        opacity: 0.7;
    }
    100% {
        top: 110%;
        opacity: 0;
        transform: scale(1.1) rotate(12deg);
    }
}

/* Background & Ambient Lighting for Luxury Dark Theme */
.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 20% 25%, rgba(71, 178, 226, 0.06), transparent 40%),
                radial-gradient(circle at 80% 75%, rgba(17, 38, 99, 0.4), transparent 50%);
    background-color: #060c1a;
    z-index: -2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(6, 12, 26, 0.3), rgba(6, 12, 26, 0.85));
}

.glow-orb {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

.orb-1 {
    background: radial-gradient(circle, rgba(71, 178, 226, 0.12) 0%, rgba(17, 38, 99, 0) 70%);
    opacity: 0.3;
}

.orb-2 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(114, 178, 225, 0.08) 0%, rgba(17, 38, 99, 0) 70%);
    opacity: 0.2;
}

/* Glassmorphism Utilities - Seamless Luxury Dark Styling */
.glass-panel {
    background: rgba(17, 38, 99, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(71, 178, 226, 0.25);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(6, 12, 26, 0.6);
}

.glass-card, .tilt-card, .card {
    background: linear-gradient(135deg, rgba(17, 38, 99, 0.55), rgba(6, 12, 26, 0.45));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(71, 178, 226, 0.2);
    border-top: 1px solid rgba(114, 178, 225, 0.35);
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow: 0 12px 35px rgba(6, 12, 26, 0.4);
    transform: none !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.glass-card:hover, .tilt-card:hover, .card:hover {
    transform: none !important;
    box-shadow: 0 15px 40px rgba(71, 178, 226, 0.15);
    border-color: rgba(71, 178, 226, 0.5);
}

/* Typography - Professional Scaling */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #72b2e1 55%, #47b2e2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Navigation - Floating Dark Glass Bar */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1240px;
    background: rgba(9, 17, 36, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(71, 178, 226, 0.25);
    border-radius: 100px;
    z-index: 100;
    padding: 0.65rem 1.8rem;
    box-shadow: 0 10px 40px rgba(6, 12, 26, 0.5);
    transition: all 0.4s ease;
}

.glass-nav.scrolled {
    top: 10px;
    padding: 0.55rem 1.8rem;
    background: rgba(9, 17, 36, 0.94);
    box-shadow: 0 15px 45px rgba(6, 12, 26, 0.7);
    border: 1px solid rgba(71, 178, 226, 0.35);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@keyframes spin3D {
    0% { transform: rotateY(0deg); filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.4)); }
    50% { transform: rotateY(180deg) scale(1.1); filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.8)); }
    100% { transform: rotateY(360deg); filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.4)); }
}

.logo-wrapper {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active {
    color: #47b2e2;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 165px 5% 4rem;
    text-align: center;
    margin-top: 0;
}

.hero-content {
    max-width: 900px;
    padding: 2rem 1rem;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.4rem;
    background: rgba(71, 178, 226, 0.15);
    border: 1px solid rgba(71, 178, 226, 0.35);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    color: #47b2e2;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: #ffffff;
}

.hero p {
    font-size: 1.15rem;
    color: #b0c4de;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

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

/* Sections */
.section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
}

.section-header p {
    color: #b0c4de;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Flex & Grid Layouts for Dense Content */
.content-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.content-split > div {
    flex: 1;
    min-width: 300px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

/* 3D Tilt Utility Class */
.tilt-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.tilt-card .icon-wrapper {
    transform: translateZ(30px);
}
.tilt-card h3 {
    transform: translateZ(20px);
}
.tilt-card p {
    transform: translateZ(10px);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(71, 178, 226, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #47b2e2;
    border: 1px solid rgba(71, 178, 226, 0.35);
}

.card h3 {
    font-size: 1.5rem;
    color: #ffffff;
}

.card p {
    color: #b0c4de;
    font-size: 0.95rem;
}

/* Clients */
.clients-section {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.trusted-by {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 2rem;
}

.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.client-logo {
    height: 40px;
    filter: grayscale(100%) brightness(200%);
    transition: filter 0.3s, transform 0.3s;
}

.client-logo:hover {
    filter: grayscale(0%) brightness(100%);
    transform: scale(1.05);
}

.client-logo-svg {
    height: 35px;
    width: auto;
    color: #666677;
    transition: color 0.3s, transform 0.3s, filter 0.3s;
}

.client-logo-svg:hover {
    color: #00f0ff;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.6));
    transform: scale(1.08);
}


/* CTA */
.cta-panel {
    text-align: center;
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden;
}

.cta-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138,43,226,0.1) 0%, transparent 60%);
    z-index: -1;
}

.cta-panel h2 {
    font-size: 2.5rem;
}

.cta-panel p {
    color: #b0c4de;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.cta-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 100px;
    border: 1px solid rgba(71, 178, 226, 0.3);
    background: rgba(6, 12, 26, 0.7);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    box-shadow: 0 4px 15px rgba(6, 12, 26, 0.4);
}

.cta-form input:focus {
    border-color: var(--primary);
}

.form-success-msg {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 208, 132, 0.1);
    border: 1px solid rgba(0, 208, 132, 0.4);
    color: #00d084;
    border-radius: 8px;
    font-weight: 600;
    transition: opacity 0.5s ease;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* Footer */
footer {
    border-top: 1px solid rgba(71, 178, 226, 0.15);
    background: #060c1a;
    padding: 4rem 5% 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #b0c4de;
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
    margin-top: 1rem;
}

.social-link {
    color: #b0c4de;
    transition: color 0.3s, transform 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: #47b2e2;
    transform: translateY(-3px);
}

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

.footer-links a {
    color: #b0c4de;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    color: #6a7f9a;
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 0.8rem 0.5rem;
    padding-bottom: calc(0.8rem + env(safe-area-inset-bottom));
    justify-content: space-around;
    align-items: center;
}
.mobile-bottom-nav .nav-item {
    color: #a0a0b5;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}
.mobile-bottom-nav .nav-item i {
    width: 22px;
    height: 22px;
}
.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item:active {
    color: #00f0ff;
}


/* Booking Wizard Styles */
.wizard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}
.step-indicator {
    color: #505065;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.step-indicator.active {
    color: #00f0ff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}
.step-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 1rem;
}
.wizard-step {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}
.wizard-step.active {
    display: block;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    border-color: rgba(138, 43, 226, 0.4);
    background: rgba(138, 43, 226, 0.05);
}
.service-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}
.service-card:has(input:checked) {
    border-color: #00f0ff;
    background: rgba(0, 240, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}
.service-card:has(input:checked) i {
    color: #00f0ff;
}
.service-card i {
    width: 32px;
    height: 32px;
    color: #8a2be2;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}
.service-card h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}
.service-card p {
    color: #808090;
    font-size: 0.85rem;
    margin: 0;
}
.calendar-container {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
}
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}
.calendar-header button {
    background: transparent;
    border: none;
    color: #00f0ff;
    cursor: pointer;
    padding: 0.5rem;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}
.calendar-day-header {
    color: #606075;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}
.calendar-day {
    padding: 0.8rem 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}
.calendar-day:hover:not(.disabled) {
    background: rgba(138, 43, 226, 0.3);
}
.calendar-day.disabled {
    color: #303040;
    cursor: not-allowed;
}
.calendar-day.selected {
    background: #00f0ff;
    color: #000;
    font-weight: 700;
}
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
}
.time-slot {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.8rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #b0b0c0;
}
.time-slot:hover {
    border-color: rgba(138, 43, 226, 0.5);
    color: #fff;
}
.time-slot input {
    display: none;
}
.time-slot:has(input:checked) {
    background: #8a2be2;
    border-color: #8a2be2;
    color: #fff;
    font-weight: 600;
}
.form-label {
    display: block;
    color: #b0b0c0;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.form-input {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: border-color 0.3s ease;
}
.form-input:focus {
    border-color: #00f0ff;
    outline: none;
}


/* Bookly Style Booking Layout - Ultra Luxury Dark Theme */
.bookly-wrapper {
    max-width: 900px;
    margin: 0 auto 3rem auto;
    padding: 2.5rem;
    background: rgba(11, 22, 44, 0.7);
    border: 1px solid rgba(71, 178, 226, 0.25);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(71, 178, 226, 0.1);
    color: #ffffff;
    font-family: var(--font-body);
}

.bookly-progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.b-step-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.b-step-item.active {
    color: #47b2e2;
}

.b-step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 700;
    color: #94a3b8;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.b-step-item.active .b-step-num {
    background: #47b2e2;
    color: #060c1a;
    border-color: #47b2e2;
    box-shadow: 0 0 15px rgba(71, 178, 226, 0.5);
}

.b-step-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0.8rem;
}

.bookly-step {
    display: none;
}

.bookly-step.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

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

.bookly-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: var(--font-heading);
}

.bookly-form-row {
    margin-bottom: 1.5rem;
}

.bookly-field {
    margin-bottom: 1.2rem;
}

.bookly-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

.bookly-select, .bookly-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(6, 12, 26, 0.7);
    border: 1px solid rgba(71, 178, 226, 0.25);
    border-radius: 10px;
    font-size: 0.95rem;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.bookly-select:focus, .bookly-input:focus {
    border-color: #47b2e2;
    box-shadow: 0 0 15px rgba(71, 178, 226, 0.3);
    background: rgba(6, 12, 26, 0.9);
}

.bookly-select option {
    background: #060c1a;
    color: #ffffff;
}

.filters-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: flex-end;
}

.bookly-date-field { width: 160px; }
.bookly-days-field { flex: 1; min-width: 220px; }
.bookly-time-field { width: 130px; }

.days-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
}

.days-labels span {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
    width: 28px;
    text-align: center;
}

.bookly-weekdays {
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
    margin-top: 6px;
}

.b-day {
    position: relative;
    cursor: pointer;
}

.b-day input {
    position: absolute;
    opacity: 0;
}

.b-check {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: transparent;
    transition: all 0.25s ease;
}

.b-day input:checked + .b-check {
    background: #47b2e2;
    border-color: #47b2e2;
    color: #060c1a;
    box-shadow: 0 0 10px rgba(71, 178, 226, 0.4);
}

.bookly-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: right;
}

.bookly-footer.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bookly-btn {
    padding: 0.8rem 2.2rem;
    border: none;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.next-btn {
    background: linear-gradient(135deg, #47b2e2, #112663);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(71, 178, 226, 0.3);
}

.next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(71, 178, 226, 0.5);
}

.back-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.bookly-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* Time Slots Grid */
.bookly-slots-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
    margin-top: 1rem;
}

.bookly-time-slot {
    display: inline-block;
    cursor: pointer;
}

.bookly-time-slot input {
    display: none;
}

.bookly-time-slot span {
    display: block;
    padding: 0.85rem;
    text-align: center;
    background: rgba(6, 12, 26, 0.7);
    border: 1px solid rgba(71, 178, 226, 0.2);
    border-radius: 10px;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.bookly-time-slot:hover span {
    border-color: #47b2e2;
    color: #ffffff;
    transform: translateY(-1px);
}

.bookly-time-slot input:checked + span {
    background: #47b2e2;
    border-color: #47b2e2;
    color: #060c1a;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(71, 178, 226, 0.4);
}

@media (max-width: 768px) {
    .bookly-wrapper { padding: 1.5rem; }
    .bookly-progress-bar { flex-direction: row; gap: 0.5rem; overflow-x: auto; padding-bottom: 1rem; }
    .b-step-text { display: none; }
    .filters-row { flex-direction: column; align-items: stretch; }
    .bookly-date-field, .bookly-days-field, .bookly-time-field { width: 100%; }
}
@media (max-width: 768px) {
    .filters-row { flex-direction: column; align-items: flex-start; }
    .bookly-date-field, .bookly-days-field, .bookly-time-field { width: 100%; }
    .days-labels { justify-content: flex-start; gap: 15px; }
    .bookly-weekdays { justify-content: flex-start; gap: 15px; }
}

/* Responsive */
@media (min-width: 769px) and (max-width: 1080px) {
    .nav-links {
        gap: 1rem;
    }
    .nav-links a {
        font-size: 0.86rem;
    }
    .glass-nav {
        padding: 0.6rem 1.2rem;
        width: 95%;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 5%;
    }

    .content-split {
        gap: 2rem;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(71, 178, 226, 0.15);
        border: 1px solid rgba(71, 178, 226, 0.35);
        color: #47b2e2;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        padding: 0;
        cursor: pointer;
        transition: background 0.3s ease, border-color 0.3s ease;
    }

    .mobile-menu-btn:active {
        background: rgba(71, 178, 226, 0.3);
    }
    
    .nav-links {
        display: flex;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(9, 17, 36, 0.96);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(71, 178, 226, 0.3);
        border-radius: 20px;
        flex-direction: column;
        padding: 1.2rem 0.8rem;
        gap: 0.5rem;
        box-shadow: 0 15px 40px rgba(6, 12, 26, 0.85);
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        will-change: transform, opacity;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    body.menu-open {
        overflow: hidden;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links li a {
        display: block;
        padding: 0.8rem 1rem;
        font-size: 1.05rem;
        font-weight: 600;
        color: #ffffff;
        border-radius: 12px;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .nav-links li a:hover, .nav-links li a:active {
        background: rgba(71, 178, 226, 0.15);
        color: #47b2e2;
    }
    
    .nav-links li a.btn-primary {
        display: inline-flex;
        width: 90%;
        justify-content: center;
        margin-top: 0.4rem;
        padding: 0.85rem 1.5rem;
    }

    .hero-content {
        padding: 3rem 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    /* Mobile Animation Optimizations */
    .falling-10x-container {
        transform: scale(0.6);
        transform-origin: top center;
    }
    
    .mobile-orb-anim {
        animation: floatOrb 8s ease-in-out infinite alternate;
        left: -100px !important;
        top: 100px !important;
    }
    
    .mobile-orb-anim-alt {
        animation: floatOrb 10s ease-in-out infinite alternate-reverse;
        right: -200px !important;
        bottom: -100px !important;
    }
    
    @keyframes floatOrb {
        0% { transform: translate(0, 0) scale(1); }
        100% { transform: translate(50px, -50px) scale(1.1); }
    }
    
    /* Hide Bottom Nav Completely */
    .mobile-bottom-nav {
        display: none !important;
    }
    body {
        padding-bottom: 0 !important;
    }
    .hero {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 3rem;
    }
    .section {
        padding: 3rem 5%;
    }
    footer {
        padding-bottom: 3rem;
    }
}


.bookly-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(15, 15, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    color: #fff;
    font-family: var(--font-body);
}
.bookly-title {
    color: #fff;
    font-size: 1.2rem;
}
.bookly-field label {
    color: #00f0ff;
}
.bookly-select, .bookly-input {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}
.bookly-select:focus, .bookly-input:focus {
    border-color: #00f0ff;
    outline: none;
}
.bookly-select option {
    background: #0f0f19;
    color: #fff;
}
.days-labels span {
    color: #00f0ff;
}
.b-check {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.b-day input:checked + .b-check {
    background: #00f0ff;
    color: #000;
    border-color: #00f0ff;
}
.bookly-btn.next-btn {
    background: #8a2be2;
    color: #fff;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
}
.bookly-btn.back-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.bookly-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.bookly-time-slot span {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0b5;
}
.bookly-time-slot input:checked + span {
    background: #8a2be2;
    border-color: #8a2be2;
    color: #fff;
    font-weight: bold;
}
/* Progress Bar */
.bookly-progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.b-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.b-step-item.active {
    opacity: 1;
}
.b-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.9rem;
}
.b-step-item.active .b-step-num {
    background: #00f0ff;
    color: #000;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}
.b-step-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #a0a0b5;
}
.b-step-item.active .b-step-text {
    color: #fff;
}
.b-step-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 10px;
    position: relative;
    top: -12px;
}
@media (max-width: 600px) {
    .b-step-text { display: none; }
}
