@import url('variables.css');

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

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

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation - Floating Pill */
.nav-wrapper {
    position: fixed;
    top: 2rem;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    pointer-events: none;
    /* Let clicks pass through outside the pill */
}

.nav-pill {
    pointer-events: auto;
    background: rgba(18, 18, 26, 0.55);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-full);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--accent-secondary);
    text-shadow: 0 0 12px rgba(34, 211, 238, 0.5), 0 0 24px rgba(34, 211, 238, 0.25);
}

.btn-primary {
    background: var(--gradient-main);
    color: #ffffff;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.4);
    /* Blue glow */
}

/* Gradient Border Trick */
/* Gradient Border Trick Removed for Solid Fill */
.btn-primary::before {
    content: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-shadow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.15) 0%, rgba(10, 10, 10, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: pulse-glow 8s infinite alternate;
}

.hero-glow.right {
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(192, 132, 252, 0.15) 0%, rgba(10, 10, 10, 0) 70%);
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 5rem;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Partner Grid */
.partner-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.partner-logo {
    height: 50px;
    /* Standardized height */
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(200%);
    /* Make white/monochrome initially */
}

.partner-logo:hover {
    opacity: 1;
    filter: none;
    /* Show full color on hover */
    transform: translateY(-2px);
}

/* Subscription Plans Section */
.subscription-section {
    padding: 6rem 0;
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plans-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.plans-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(192, 132, 252, 0.2));
    border: 1px solid rgba(34, 211, 238, 0.3);
    color: var(--accent-cyan);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.plans-intro {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.plans-note {
    color: var(--text-secondary);
    font-size: 0.95rem;
    opacity: 0.8;
}

.plans-note a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.zf-widget-container {
    max-width: 100%;
    overflow-x: auto;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1rem;
}

/* Video Testimonial Section */
.video-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(34, 211, 238, 0.02) 50%, transparent 100%);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: var(--card-bg);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-hint {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.video-hint:hover {
    opacity: 1;
}

.mute-indicator {
    font-size: 1rem;
    border: none;
}


/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}


/* Bento Grid Services */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Even/Symmetrical Grid - 3 columns, 2 rows */
.bento-grid-even {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

/* Hover Glow Effect */
.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    padding: 1px;
    background: linear-gradient(135deg, transparent 0%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-card:hover::before {
    background: var(--gradient-main);
    opacity: 1;
}

.bento-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(34, 211, 238, 0.15),
        0 0 80px rgba(34, 211, 238, 0.08);
}

.bento-card.span-2 {
    grid-column: span 2;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Carousel Section */
.carousel-section {
    padding: 6rem 0;
    overflow: hidden;
}

/* Auto-scrolling Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    animation: marquee-scroll 40s linear infinite;
    width: max-content;
}

.marquee-container:hover .marquee-track {
    animation-duration: 120s; /* Slow down to 1/3 speed on hover */
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-slide {
    flex: 0 0 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.marquee-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.marquee-slide:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 40px rgba(34, 211, 238, 0.15);
}

/* Legacy carousel styles (kept for compatibility) */
.carousel-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2rem calc((100vw - var(--container-width)) / 2 + 1rem);
    /* Center align padding */
    padding-bottom: 3rem;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.carousel-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.carousel-slide {
    flex: 0 0 600px;
    /* Fixed width per slide */
    scroll-snap-align: center;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-slide:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
}

@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 85vw;
        /* Full width on mobile */
    }

    .marquee-slide {
        flex: 0 0 320px;
    }

    .marquee-track {
        animation-duration: 30s;
    }

    .marquee-container:hover .marquee-track {
        animation-duration: 90s;
    }

    .marquee-container::before,
    .marquee-container::after {
        width: 40px;
    }
}

/* Hero Badges */
.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

.badge-icon {
    font-size: 1rem;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(34, 211, 238, 0.03) 0%, transparent 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.stats-tagline {
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
}

/* Card Tags */
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    color: var(--accent-cyan);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Process Section */
.process-section {
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.process-step::after {
    content: '→';
    position: absolute;
    right: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    opacity: 0.3;
    font-size: 1.5rem;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.process-step h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Tech Stack Icon Gallery */
.tech-stack-section {
    text-align: center;
}

.tech-stack-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.tech-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.tech-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.tech-icon-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(34, 211, 238, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(34, 211, 238, 0.1);
}

.tech-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.tech-icon-item:hover .tech-icon {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(34, 211, 238, 0.5));
}

.tech-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.tech-icon-item:hover .tech-label {
    color: var(--text-primary);
}

/* API Icon (text-based) */
.api-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--accent-cyan);
    border: 2px solid currentColor;
    border-radius: 8px;
    letter-spacing: 0.05em;
}

/* Legacy Integration Tags (keeping for fallback) */
.integrations-section {
    text-align: center;
}

.integration-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

.integration-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.integration-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-step:nth-child(3)::after {
        display: none;
    }

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

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

    .tech-icons-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .tech-icons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .tech-icon-item {
        padding: 1rem 0.5rem;
    }

    .tech-icon {
        width: 36px;
        height: 36px;
    }

    .tech-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero {
        padding-top: 100px;
    }

    .hero-content {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 2rem !important;
        text-align: center;
    }

    .hero-content > div:last-child {
        /* Profile picture container */
        max-width: 200px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

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

    .hero-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .credential-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-content div[style*="display: flex"] {
        flex-direction: column !important;
        align-items: center !important;
    }

    /* Navigation Mobile */
    .nav-wrapper {
        top: 0.5rem;
        padding: 0 0.5rem;
    }

    .nav-pill {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
        width: 100%;
        justify-content: space-between;
    }

    .nav-logo img {
        height: 35px !important;
    }

    .nav-links {
        display: none;
    }

    .nav-pill .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    /* Sections */
    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    /* Bento Grid Mobile */
    .bento-grid,
    .bento-grid-even {
        grid-template-columns: 1fr;
    }

    .bento-card.span-2 {
        grid-column: span 1;
    }

    .bento-card {
        min-height: auto;
        padding: 1.5rem;
    }

    /* Stats Grid Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

    .stat-label {
        font-size: 0.75rem;
    }

    /* Process Grid Mobile */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .process-step::after {
        display: none;
    }

    .process-step {
        text-align: left;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: var(--radius-md);
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

    .step-number {
        font-size: 1.5rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .process-step h4,
    .process-step p {
        text-align: left;
    }

    /* Tech Stack Mobile */
    .tech-stack-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .tech-icons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .tech-icon-item {
        padding: 0.75rem 0.25rem;
    }

    .tech-icon {
        width: 32px;
        height: 32px;
    }

    .tech-label {
        font-size: 0.65rem;
    }

    /* Video Section Mobile */
    .video-container {
        padding: 1rem;
    }

    .video-container h3 {
        font-size: 1.2rem;
    }

    /* Subscription Plans Mobile */
    .subscription-section {
        padding: 3rem 0;
    }

    .plans-header h3 {
        font-size: 1.5rem;
    }

    /* Contact Section Mobile */
    #contact .container {
        padding: 0 0.5rem;
    }

    #contact h3 {
        font-size: 1.5rem;
    }

    /* Footer Mobile */
    footer .container > div:first-child {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .upwork-hire-link {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .upwork-logo {
        height: 16px;
    }

    /* Booking Modal Mobile */
    .booking-modal-content {
        width: 98%;
        height: 95vh;
        border-radius: var(--radius-md);
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

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

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

    .nav-pill .btn-primary {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Upwork Hire Link */
.upwork-hire-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(20, 163, 0, 0.15) 0%, rgba(20, 163, 0, 0.05) 100%);
    border: 1px solid rgba(20, 163, 0, 0.4);
    border-radius: var(--radius-md);
    color: #14a800;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.upwork-hire-link:hover {
    background: linear-gradient(135deg, rgba(20, 163, 0, 0.25) 0%, rgba(20, 163, 0, 0.1) 100%);
    border-color: rgba(20, 163, 0, 0.7);
    box-shadow: 0 0 20px rgba(20, 163, 0, 0.3);
    transform: translateY(-2px);
}

.upwork-logo {
    height: 20px;
    width: auto;
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    justify-content: center;
    align-items: center;
}

.booking-modal.active {
    display: flex;
    opacity: 1;
}

.booking-modal-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    height: 85vh;
    max-height: 800px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(34, 211, 238, 0.3);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(34, 211, 238, 0.15);
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.booking-modal.active .booking-modal-content {
    transform: scale(1) translateY(0);
}

.booking-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.booking-modal-close:hover {
    background: rgba(249, 115, 22, 0.8);
    transform: scale(1.1);
}

.booking-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 640px) {
    .booking-modal-content {
        width: 95%;
        height: 90vh;
    }
}