/* ============================================
   OCPD - Oslob Cebu Paragliding Development
   Custom Styles — Sky Theme
   ============================================ */

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

/* Lenis smooth scroll */
html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
}

/* Navigation — Glassmorphism */
#main-nav {
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

#main-nav.nav-scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(14, 165, 233, 0.06);
}

#main-nav.nav-scrolled .nav-link {
    color: #374151;
}

#main-nav.nav-scrolled .nav-link:hover {
    color: #0ea5e9;
    background-color: rgba(14, 165, 233, 0.06);
}

#main-nav.nav-scrolled .mobile-nav-link {
    color: #374151;
}

#main-nav.nav-scrolled .mobile-nav-link:hover {
    color: #0ea5e9;
    background-color: rgba(14, 165, 233, 0.04);
}

#main-nav.nav-scrolled #mobile-menu-btn {
    color: #374151;
}

#main-nav.nav-scrolled #mobile-menu {
    border-color: rgba(0, 0, 0, 0.06);
}

.nav-link {
    color: #e2e8f0;
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.01em;
    position: relative;
}

.nav-link:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.08);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0ea5e9, #38bdf8);
    border-radius: 1px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 60%;
}

.nav-link-cta {
    color: #fff;
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 9999px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(14, 165, 233, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #e2e8f0;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.mobile-nav-link:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.08);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.65) 100%
    );
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    z-index: 10;
}

/* Wind Speed Lines */
.hero-wind-lines {
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
}

.hero-wind-lines span {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(-25deg);
    animation: windLine 5s linear infinite;
    opacity: 0;
}

.hero-wind-lines span:nth-child(1) { top: 12%; width: 160px; animation-delay: 0s; }
.hero-wind-lines span:nth-child(2) { top: 30%; width: 100px; animation-delay: 1s; }
.hero-wind-lines span:nth-child(3) { top: 48%; width: 130px; animation-delay: 2s; }
.hero-wind-lines span:nth-child(4) { top: 65%; width: 90px; animation-delay: 3s; }
.hero-wind-lines span:nth-child(5) { top: 22%; width: 140px; animation-delay: 3.8s; }
.hero-wind-lines span:nth-child(6) { top: 78%; width: 110px; animation-delay: 4.5s; }

@keyframes windLine {
    0%   { transform: rotate(-25deg) translateX(-10vw); opacity: 0; }
    10%  { opacity: 0.7; }
    85%  { opacity: 0.7; }
    100% { transform: rotate(-25deg) translateX(110vw); opacity: 0; }
}

@media (max-width: 768px) {
    .hero-wind-lines span {
        animation-duration: 3.5s;
    }
}

/* Floating Clouds */
.hero-cloud {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(10px);
    will-change: transform;
}

/* Scroll Progress Bar */
#scroll-progress {
    opacity: 0;
    transition: opacity 0.3s ease;
}

#scroll-progress.visible {
    opacity: 1;
}

#scroll-progress-bar {
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

/* Hero Word Reveal */
.hero-word {
    display: inline-block;
}

/* Image Clip Reveal */
.clip-reveal {
    clip-path: inset(0 100% 0 0);
}

/* Animated Paraglider */
.hero-paraglider {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    will-change: transform, opacity;
}

.hero-paraglider-1 {
    width: 120px;
    top: 18%;
    left: -140px;
}

.hero-paraglider-2 {
    width: 70px;
    top: 12%;
    left: -100px;
}

@media (max-width: 768px) {
    .hero-paraglider-1 {
        width: 80px;
    }
    .hero-paraglider-2 {
        display: none;
    }
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

.carousel-btn.prev {
    left: 1rem;
}

.carousel-btn.next {
    right: 1rem;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Page Hero (subpages) */
.page-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.3) 40%, rgba(15, 23, 42, 0.85) 100%);
}

.page-hero-content {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(14, 165, 233, 0.3);
}

.service-card .card-img-wrap {
    overflow: hidden;
    height: 200px;
}

.service-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .card-img-wrap img {
    transform: scale(1.1);
}

/* FAQ Accordion */
.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
}

.faq-item:hover {
    border-color: rgba(14, 165, 233, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #1f2937;
    background: transparent;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(14, 165, 233, 0.05);
}

.faq-question .faq-icon {
    transition: transform 0.3s ease;
    color: #0ea5e9;
}

.faq-item.open .faq-question .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: #4b5563;
    line-height: 1.7;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-grid-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-text-block {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    padding: 2rem;
}

.gallery-text-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    letter-spacing: 0.05em;
}

/* Gallery Carousel */
.gallery-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.gallery-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-carousel-slide {
    min-width: 100%;
    height: 500px;
}

.gallery-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .gallery-carousel-slide {
        height: 300px;
    }
}

/* Cafe Gallery */
.cafe-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .cafe-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cafe-gallery-item {
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.cafe-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* Lightbox Modal */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    transition: background 0.2s ease;
    z-index: 2;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    transition: background 0.2s ease;
    z-index: 2;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-nav.prev {
    left: 1rem;
}

.lightbox-nav.next {
    right: 1rem;
}

/* PJAX Progress Bar */
#pjax-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#pjax-progress.active {
    opacity: 1;
}

#pjax-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #0ea5e9, #38bdf8, #0ea5e9);
    box-shadow: 0 0 8px rgba(14, 165, 233, 0.5);
    border-radius: 0 2px 2px 0;
}

/* PJAX Container */
#pjax-container {
    opacity: 1;
}

/* Scroll animations (GSAP handles transform/opacity, this is fallback) */
.animate-on-scroll {
    opacity: 0;
}

/* Vanilla Tilt glare border-radius fix */
.js-tilt-glare {
    border-radius: inherit;
}
.js-tilt-glare-inner {
    border-radius: inherit;
}

/* Booking Form */
.booking-form input,
.booking-form textarea,
.booking-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    outline: none;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    color: #1f2937;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #6b7280;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.booking-form label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

/* Booking Hero */
.booking-hero {
    min-height: 340px;
}

@media (min-width: 768px) {
    .booking-hero {
        min-height: 400px;
    }
}

/* Booking Two-Column Layout */
.booking-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .booking-layout {
        grid-template-columns: 3fr 2fr;
        gap: 2.5rem;
    }
}

/* Booking Sidebar */
.booking-sidebar {
    position: sticky;
    top: 120px;
}

/* Booking Package Card */
.booking-package-card {
    position: relative;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.booking-package-card:hover {
    transform: translateY(-2px);
}

.booking-package-card.border-sky-500 {
    border-left-color: #0ea5e9;
}

/* Booking Input override */
.booking-input {
    background: #ffffff !important;
    border: 1px solid #d1d5db !important;
    color: #1f2937 !important;
}

.booking-input:focus {
    border-color: #0ea5e9 !important;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15) !important;
}

.booking-input::placeholder {
    color: #9ca3af !important;
}

/* Mobile Booking Summary Bar */
.booking-summary-mobile {
    transition: transform 0.3s ease;
}

.booking-summary-mobile.visible {
    transform: translateY(0) !important;
}

/* Step bar icon pulse on active */
.booking-step-bar .wizard-step-indicator.active div:first-child {
    animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(14, 165, 233, 0); }
}

/* Staff Cards */
.staff-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.staff-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(14, 165, 233, 0.3);
}

.staff-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.staff-card:hover img {
    transform: scale(1.03);
}

/* About page image layout */
.about-images {
    position: relative;
}

.about-img-primary {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    width: 60%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: rotate(3deg);
    border: 4px solid white;
}

/* Utility */
.text-shadow {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
    font-weight: 700;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.section-heading {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    text-align: center;
}

.section-subheading {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    max-width: 600px;
    margin: 0.75rem auto 0;
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 1.75rem;
    }

    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        transform: none;
        margin-top: 1rem;
        border: none;
    }
}

/* Adventure / Sky Theme Styles */
.btn-adventure {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
    text-transform: uppercase;
}

.btn-adventure:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.5);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(14, 165, 233, 0.85);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== Print: Show only boarding pass ===== */
@media print {
    body * { visibility: hidden !important; }
    .boarding-pass-print,
    .boarding-pass-print * { visibility: visible !important; }
    .boarding-pass-print {
        position: absolute !important;
        left: 0; top: 0;
        width: 100% !important;
        margin: 0 !important;
        padding: 24px !important;
        border: none !important;
        box-shadow: none !important;
        background: #fff !important;
    }
    .boarding-pass-print button { display: none !important; }
    nav, footer, header, .navbar,
    #mobile-summary-bar { display: none !important; }
}

/* ===== EXTREME CEBU PLATFORM STYLES ===== */

/* Vendor Card */
.vendor-card {
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vendor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.vendor-card-img {
    overflow: hidden;
    aspect-ratio: 16/10;
}
.vendor-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.vendor-card:hover .vendor-card-img img {
    transform: scale(1.08);
}

/* Vendor Detail Hero */
.vendor-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.vendor-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vendor-hero .vendor-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

/* Category Badge */
.category-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.category-tabs::-webkit-scrollbar {
    display: none;
}
.category-tab-btn {
    flex-shrink: 0;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.category-tab-btn:hover {
    border-color: #0ea5e9;
    color: #0ea5e9;
}
.category-tab-btn.active {
    background: #0ea5e9;
    border-color: #0ea5e9;
    color: #fff;
}

/* Platform Hero */
.platform-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Payment Method Toggle */
.pay-method-btn {
    outline: none;
}
.pay-method-btn:focus {
    outline: none;
}
.pay-method-btn.active {
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}
