/* ========================================
   STELLAR INSPIRE - Main Stylesheet
   ======================================== */

/* Custom Font */
@font-face {
    font-family: 'Publica Play';
    src: url('/assets/fonts/PublicaPlay-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --primary-orange: #ff914d;
    --primary-yellow: #ffde59;
    --gradient-primary: linear-gradient(135deg, #ff914d, #ffde59);
    --gradient-text: linear-gradient(90deg, #ff914d, #ffde59);
    --dark: #000000;
    --dark-nav: rgba(0, 0, 0, 0.35);
    --white: #FFFFFF;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 40px;
    --border-radius-2xl: 56px;
    --border-radius-full: 9999px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .heading-font {
    font-family: 'Publica Play', 'PublicaPlay', 'Publica-Play', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Selection */
::selection {
    background-color: var(--primary-orange);
    color: var(--white);
}

/* Text Gradient */
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Background Gradient */
.bg-gradient {
    background: var(--gradient-primary);
}

/* Text Balance */
.text-balance {
    text-wrap: balance;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm {
    max-width: 768px;
}

.container-lg {
    max-width: 1536px;
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: none;
    padding: 1.5rem 1rem 1rem;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.navbar {
    background: var(--dark-nav);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius-full);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: auto;
    transition: border-color var(--transition-normal);
}

.navbar:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-logo img {
    height: 2.5rem;
    width: auto;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-cta {
    display: none;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.625rem 1.75rem;
    border-radius: var(--border-radius-full);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: transform var(--transition-fast);
    box-shadow: 0 4px 15px rgba(255, 145, 77, 0.2);
}

@media (min-width: 1100px) {
    .nav-cta {
        display: inline-block;
    }
}

.nav-cta:hover {
    transform: scale(1.05);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

@media (min-width: 1100px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .navbar {
        padding: 0.75rem 1.5rem;
    }
}

@media (min-width: 1280px) {
    .nav-links {
        gap: 2rem;
    }

    .navbar {
        padding: 0.75rem 2rem;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    padding: 0.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-inner {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-2xl);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-bg-stars {
    background-image: url('https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?auto=format&fit=crop&q=80&w=2000');
}

.hero-bg-city {
    background-image: url('https://images.unsplash.com/photo-1529655683826-aba9b3e77383?auto=format&fit=crop&q=80&w=2000');
    mix-blend-mode: screen;
    opacity: 0.8;
}

.hero-bg-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2), rgba(0,0,0,0.4));
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

@media (max-width: 768px) {
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.hero-content {
    position: relative;
    z-index: 30;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    padding: 6rem 1.5rem 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: var(--border-radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.hero-badge-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: var(--primary-orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    color: var(--white);
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 32rem;
    margin: 0 auto 2.5rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.3;
}

.hero-scroll span {
    font-size: 0.5625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--white);
}

.hero-scroll-line {
    width: 1px;
    height: 2.5rem;
    background: linear-gradient(to bottom, var(--white), transparent);
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .hero {
        padding: 0.75rem;
    }

    .hero-inner {
        border-radius: var(--border-radius-lg);
    }

    .hero-content {
        padding-top: 0;
    }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--border-radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
    min-width: 150px;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 145, 77, 0.2);
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--primary-orange);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 0.875rem;
}

.btn-xl {
    padding: 1.5rem 3.5rem;
    font-size: 1.25rem;
}

.btn-icon {
    width: 3rem;
    height: 3rem;
    padding: 0;
    min-width: auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-icon:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
    padding: 8rem 1.5rem;
}

.section-sm {
    padding: 4rem 1.5rem;
}

.section-lg {
    padding: 10rem 1.5rem;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-gray {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: block;
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.section-dark .section-label {
    color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   CARDS
   ======================================== */

.card {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-normal);
}

.card:hover {
    transform: translateY(-5px);
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4), rgba(0,0,0,0.2));
}

.card-content {
    padding: 2rem;
}

/* Program Card */
.program-card {
    min-height: 560px;
    display: flex;
    flex-direction: column;
}

.program-card .card-image {
    position: absolute;
    inset: 0;
}

.program-card .card-content {
    position: relative;
    z-index: 10;
    margin-top: auto;
    padding: 2.5rem;
}

.program-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    letter-spacing: -0.05em;
}

.program-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.program-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

/* ========================================
   GRID
   ======================================== */

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-5 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-5 {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ========================================
   TEAM CARDS - PREMIUM
   ======================================== */

.team-card-premium {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.team-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.team-card-premium .team-photo {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.team-card-premium .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card-premium:hover .team-photo img {
    transform: scale(1.08);
}

.team-card-premium .team-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, white, transparent);
    pointer-events: none;
}

.team-card-premium .team-info {
    padding: 1.25rem 1rem 1.75rem;
    position: relative;
}

.team-card-premium .team-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--dark);
}

.team-card-premium .team-role {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin: 0;
}

.team-card-premium .team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 145, 77, 0.95), rgba(255, 222, 89, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card-premium:hover .team-overlay {
    opacity: 1;
}

.team-card-premium .team-overlay span {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0 1.5rem;
    text-align: center;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.team-card-premium:hover .team-overlay span {
    transform: translateY(0);
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-card-premium.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.team-card-premium:nth-child(1) { animation-delay: 0.1s; }
.team-card-premium:nth-child(2) { animation-delay: 0.2s; }
.team-card-premium:nth-child(3) { animation-delay: 0.3s; }
.team-card-premium:nth-child(4) { animation-delay: 0.4s; }
.team-card-premium:nth-child(5) { animation-delay: 0.5s; }

/* ========================================
   COLLABORATIONS
   ======================================== */

.collab-section {
    background: var(--dark);
    color: var(--white);
    border-radius: var(--border-radius-2xl);
    margin: 0 1rem 8rem;
    padding: 6rem 1.5rem;
    overflow: hidden;
}

.collab-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 3rem;
    opacity: 0.4;
}

.collab-logos span {
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 10rem 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-section h2 {
    margin-bottom: 2.5rem;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    padding: 6rem 1.5rem;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
}

.footer-brand img {
    height: 2.5rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    max-width: 24rem;
    font-size: 0.875rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-col h4 {
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col a {
    font-size: 0.75rem;
    font-weight: 700;
}

.footer-col a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.5625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-links {
        gap: 5rem;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

.reveal {
    animation: reveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   GALLERY / SLIDER
   ======================================== */

.gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-2xl);
}

.gallery::-webkit-scrollbar {
    display: none;
}

.gallery {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.gallery-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.gallery-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
}

.gallery-dot.active {
    background: var(--primary-orange);
}

/* ========================================
   FORMS
   ======================================== */

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    background: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* ========================================
   BOOKING SYSTEM
   ======================================== */

.booking-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.booking-header {
    background: var(--gradient-primary);
    padding: 2rem;
    color: var(--white);
}

.booking-header h3 {
    margin-bottom: 0.5rem;
}

.booking-body {
    padding: 2rem;
}

.booking-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.booking-option:hover,
.booking-option.selected {
    border-color: var(--primary-orange);
    background: rgba(255, 145, 77, 0.05);
}

.booking-option input[type="radio"] {
    display: none;
}

.booking-option-radio {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--gray-400);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.booking-option.selected .booking-option-radio {
    border-color: var(--primary-orange);
}

.booking-option.selected .booking-option-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.625rem;
    height: 0.625rem;
    background: var(--primary-orange);
    border-radius: 50%;
}

.booking-option-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.booking-option-content p {
    font-size: 0.875rem;
}

.booking-price {
    margin-left: auto;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-orange);
}

/* Calendar */
.calendar {
    background: var(--white);
    border-radius: var(--border-radius-md);
    border: 2px solid var(--gray-200);
    overflow: hidden;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--gray-50);
}

.calendar-nav {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--gray-600);
}

.calendar-nav:hover {
    color: var(--primary-orange);
}

.calendar-title {
    font-weight: 700;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    padding: 0.5rem;
}

.calendar-day-name {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    padding: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.calendar-day:hover:not(.disabled) {
    background: rgba(255, 145, 77, 0.1);
}

.calendar-day.selected {
    background: var(--primary-orange);
    color: var(--white);
}

.calendar-day.disabled {
    color: var(--gray-200);
    cursor: not-allowed;
}

.calendar-day.today {
    border: 2px solid var(--primary-orange);
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.time-slot {
    padding: 0.75rem;
    text-align: center;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.time-slot:hover:not(.disabled) {
    border-color: var(--primary-orange);
}

.time-slot.selected {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
}

.time-slot.disabled {
    background: var(--gray-50);
    color: var(--gray-400);
    cursor: not-allowed;
}

/* ========================================
   EVENTS
   ======================================== */

.event-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.event-image {
    position: relative;
    height: 200px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.event-date-day {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.event-date-month {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-orange);
}

.event-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.event-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.event-content p {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ========================================
   SHOP / PRODUCTS
   ======================================== */

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.product-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--gray-100);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-full);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-content {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.product-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 800;
}

.product-price-old {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

/* ========================================
   TEAM
   ======================================== */

.team-card {
    text-align: center;
}

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gray-100);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--primary-orange);
    font-size: 0.875rem;
    font-weight: 600;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* ========================================
   PAGE HERO (Interior Pages)
   ======================================== */

.page-hero {
    padding: 10rem 1.5rem 5rem;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 32rem;
    margin: 0 auto;
}

/* ========================================
   BREADCRUMB
   ======================================== */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--gray-400);
}

.breadcrumb a:hover {
    color: var(--primary-orange);
}

.breadcrumb span {
    color: var(--gray-400);
}

.breadcrumb .current {
    color: var(--dark);
    font-weight: 600;
}

/* ========================================
   UTILITIES
   ======================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }

.hidden { display: none; }

@media (min-width: 768px) {
    .md-show { display: block; }
    .md-flex { display: flex; }
}

@media (min-width: 1024px) {
    .lg-show { display: block; }
    .lg-flex { display: flex; }
}
/* Premium Footer Styles */
.footer-premium {
    background: linear-gradient(180deg, #0a0a0f 0%, #111118 100%);
    color: #ffffff;
    padding: 4rem 0 0;
    margin-top: 4rem;
}

.footer-premium .footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-premium .footer-brand-section {
    max-width: 280px;
}

.footer-premium .footer-logo img {
    height: 32px;
    margin-bottom: 1.25rem;
}

.footer-premium .footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-premium .footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-premium .footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.footer-premium .footer-social a:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-premium .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-premium .footer-col h4 {
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.footer-premium .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-premium .footer-col li {
    margin-bottom: 0.75rem;
}

.footer-premium .footer-col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-premium .footer-col a:hover {
    color: var(--primary-orange);
}

.footer-premium .footer-map-section h4 {
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-premium .footer-map {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.footer-premium .footer-map iframe {
    display: block;
}

.footer-premium .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-premium .footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    margin: 0;
}

.footer-premium .footer-contact-info a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-premium .footer-contact-info a:hover {
    color: var(--primary-orange);
}

.footer-premium .footer-contact-info svg {
    color: var(--primary-orange);
    flex-shrink: 0;
}

.footer-premium .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-premium .footer-bottom-left p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
    margin: 0;
}

.footer-premium .footer-bottom-left .company-number {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.25rem;
}

.footer-premium .footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
}

.footer-premium .footer-bottom-right svg {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-premium .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-premium .footer-brand-section {
        max-width: none;
    }

    .footer-premium .footer-map-section {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-premium {
        padding: 3rem 0 0;
    }

    .footer-premium .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-premium .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-premium .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-premium .footer-links-grid {
        grid-template-columns: 1fr;
    }
}
