/* Advanced CSS with Glassmorphism & Neon Accents */
:root {
    /* Color Palette */
    --bg-primary: #0a0e17;
    --bg-secondary: #0f1623;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;

    --accent-orange: #ff6b35;
    --accent-pink: #f03e8e;
    --accent-blue: #3b82f6;

    --glass-bg: rgba(15, 23, 42, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    --gradient-1: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-pink) 100%);
    --gradient-2: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-pink) 100%);
    --gradient-3: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);

    --radius-lg: 24px;
    --radius-round: 50px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Blobs for Visual Interest */
.blob {
    position: fixed;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.6;
    border-radius: 50%;
    animation: drift 20s infinite alternate cubic-bezier(0.5, 0, 0.5, 1);
}

.blob-1 {
    width: 50vw;
    height: 50vw;
    background: var(--accent-orange);
    top: -20vh;
    left: -10vw;
}

.blob-2 {
    width: 40vw;
    height: 40vw;
    background: var(--accent-blue);
    bottom: -10vh;
    right: -5vw;
    animation-delay: -5s;
}

.blob-3 {
    width: 30vw;
    height: 30vw;
    background: var(--accent-pink);
    top: 30vh;
    right: 20vw;
    animation-duration: 25s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(10vw, 10vh) scale(1.2);
    }
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-orange);
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
}

/* Typography */
h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: var(--radius-round);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    filter: brightness(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.8rem;
    font-weight: 900;
}

.logo-icon {
    color: var(--accent-orange);
    width: 28px;
    height: 28px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-orange);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.schedule-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-right: 10px;
}

.schedule-info i {
    width: 18px;
    height: 18px;
    color: var(--accent-orange);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 5px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-round);
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    align-items: center;
    background: var(--glass-bg);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.stat-item h4 {
    font-size: 2rem;
    margin-bottom: 4px;
    font-weight: 800;
}

.stat-item p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-visual {
    position: relative;
}

.main-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.main-img img {
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(1.1) saturate(1.2);
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Overlapping Glass Card */
.floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: 10;
    padding: 20px;
    width: 250px;
    animation: float 5s ease-in-out infinite reverse;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-orange);
}

.info h5 {
    font-size: 1.1rem;
    color: white;
}

.info p {
    font-size: 0.85rem;
    margin: 0;
    color: #10b981;
    font-weight: 500;
}

/* Services */
.services {
    padding: 120px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    padding: 40px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
}

.gradient-bg {
    background: var(--gradient-1);
}

.gradient-bg-2 {
    background: var(--gradient-2);
}

.gradient-bg-3 {
    background: var(--gradient-3);
}

.service-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-orange);
    gap: 12px;
}

/* About Section */
.about {
    padding: 120px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.grid-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.grid-gallery img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.img-1 {
    height: 400px;
    transform: translateY(40px);
}

.img-2 {
    height: 350px;
}

.experience-badge {
    position: absolute;
    top: 10%;
    left: -10%;
    padding: 20px;
    text-align: center;
    width: 180px;
    z-index: 5;
}

.experience-badge h3 {
    font-size: 2.5rem;
    margin-bottom: 0;
}

.experience-badge p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.feature-list {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.feature-item p {
    margin: 0;
    font-size: 1rem;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    margin-top: 80px;
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-radius: 40px 40px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 20px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.glass-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.glass-icon:hover {
    background: var(--gradient-1);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Modal Booking */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 500px;
    padding: 30px;
    background: rgba(15, 23, 42, 0.85);
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-orange);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.modal-header p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.booking-form .input-group {
    margin-bottom: 15px;
}

.booking-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: var(--accent-orange);
}

.booking-form select option {
    background: var(--bg-secondary);
    color: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.booking-selection {
    margin-bottom: 20px;
}

.booking-selection label {
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.date-slider {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 10px;
}

.date-slider::-webkit-scrollbar {
    height: 6px;
}

.date-slider::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.date-card {
    flex: 0 0 75px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 5px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.date-card.active {
    background: var(--gradient-1);
    border-color: transparent;
    color: white;
}

.date-card span.day {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
}

.date-card span.date {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
    gap: 12px;
}

.time-slot {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.time-slot:hover:not(.unavailable) {
    border-color: rgba(255, 107, 53, 0.4);
}

.time-slot.active {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
}

.time-slot.unavailable {
    opacity: 0.3;
    text-decoration: line-through;
    cursor: not-allowed;
    background: transparent;
}

/* Responsive tweaks */
@media (max-width: 992px) {

    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 14, 23, 0.95);
        backdrop-filter: blur(20px);
        padding: 30px 0;
        gap: 20px;
        text-align: center;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links,
    .footer-contact li {
        justify-content: center;
    }

    .experience-badge {
        left: 50%;
        top: -10%;
        transform: translateX(-50%);
    }

    .img-1 {
        transform: translateY(0);
    }
}

@media (max-width: 500px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }
}