/* ==========================================
   Astra-X Core Styling System & Theme
========================================== */

:root {
    /* Color Palette */
    --bg-dark: #06060f;
    --bg-card: rgba(13, 13, 29, 0.65);
    --bg-glass: rgba(18, 18, 38, 0.45);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    --primary-cyan: #00f0ff;
    --primary-purple: #bd00ff;
    --primary-gold: #ffd700;
    
    --glow-cyan: 0 0 15px rgba(0, 240, 255, 0.4);
    --glow-purple: 0 0 15px rgba(189, 0, 255, 0.4);
    --glow-gold: 0 0 15px rgba(255, 215, 0, 0.3);
    
    --txt-main: #f3f3fa;
    --txt-muted: #a0a0cf;
    --txt-dark: #0a0a1a;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-code: 'Space Grotesk', sans-serif;
    
    /* Transition defaults */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--txt-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary-cyan);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(0, 240, 255, 0.2);
    margin-bottom: 12px;
}

.section-tag-gold {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 12px;
}

.section-desc {
    color: var(--txt-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 12px auto 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-glow {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(189, 0, 255, 0.3);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 240, 255, 0.5);
}

.btn-secondary {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--txt-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: var(--primary-cyan);
}

/* ==========================================
   Header & Navigation
========================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 6, 15, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo-accent {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-light {
    color: var(--txt-main);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--txt-muted);
}

.nav-link:hover {
    color: var(--primary-cyan);
}

.nav-btn-primary {
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary-cyan);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-btn-primary:hover {
    background: var(--primary-cyan);
    color: var(--txt-dark);
    box-shadow: var(--glow-cyan);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--txt-main);
    font-size: 1.8rem;
    cursor: pointer;
}

/* ==========================================
   Hero Section & Canvas
========================================== */

.hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(189, 0, 255, 0.1);
    border: 1px solid rgba(189, 0, 255, 0.25);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e58eff;
    margin-bottom: 24px;
    animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(189,0,255,0.1); }
    50% { box-shadow: 0 0 15px rgba(189,0,255,0.3); }
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.glow-text {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple) 60%, var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(189, 0, 255, 0.2));
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--txt-muted);
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 80px;
}

/* Floating features bar */
.quick-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 24px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.q-feat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.q-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
}

.cyan-glow {
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary-cyan);
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.purple-glow {
    background: rgba(189, 0, 255, 0.1);
    color: var(--primary-purple);
    border: 1px solid rgba(189, 0, 255, 0.2);
}

.gold-glow {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.q-feat-text h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.q-feat-text p {
    font-size: 0.85rem;
    color: var(--txt-muted);
}

/* ==========================================
   Experience Cards (About Section)
========================================== */

.about-section {
    padding: 100px 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.experience-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.experience-card:hover {
    transform: translateY(-8px);
}

.vr-card-glow:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15);
}

.magic-card-glow:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 10px 30px rgba(189, 0, 255, 0.15);
}

.experience-img-container {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.experience-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.experience-card:hover .experience-image {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bg-cyan {
    background: var(--primary-cyan);
    color: var(--txt-dark);
}

.bg-purple {
    background: var(--primary-purple);
    color: white;
}

.experience-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.experience-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.experience-content p {
    color: var(--txt-muted);
    margin-bottom: 24px;
}

.feat-list {
    margin-top: auto;
}

.feat-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.txt-cyan { color: var(--primary-cyan); }
.txt-purple { color: var(--primary-purple); }

/* ==========================================
   Details Tabs Section
========================================== */

.details-section {
    background: linear-gradient(180deg, var(--bg-dark), rgba(13, 13, 29, 0.4), var(--bg-dark));
    padding: 100px 0;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--txt-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    color: var(--txt-main);
    border-color: rgba(255,255,255,0.2);
}

.tab-btn.active {
    background: var(--txt-main);
    color: var(--txt-dark);
    border-color: var(--txt-main);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.tab-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.tab-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 32px;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.tab-info-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.tab-icon.cyan {
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary-cyan);
}

.tab-icon.purple {
    background: rgba(189, 0, 255, 0.1);
    color: var(--primary-purple);
}

.tab-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.tab-info-card p {
    color: var(--txt-muted);
    font-size: 0.95rem;
}

/* ==========================================
   Performer Section (Mentalist Shah)
========================================== */

.performer-section {
    padding: 100px 0;
}

.performer-container {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, rgba(13, 13, 29, 0.7), rgba(30, 10, 50, 0.3));
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 48px;
}

.performer-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
    box-shadow: var(--glow-gold);
}

.performer-img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1.1;
}

.performer-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 60%, rgba(6, 6, 15, 0.8));
    pointer-events: none;
}

.performer-info h2 {
    font-size: 2.5rem;
    margin-bottom: 18px;
}

.performer-bio {
    font-size: 1.1rem;
    color: var(--txt-muted);
    margin-bottom: 24px;
}

blockquote {
    font-style: italic;
    border-left: 4px solid var(--primary-gold);
    padding-left: 20px;
    font-size: 1.15rem;
    color: var(--txt-main);
    margin-bottom: 32px;
}

.performer-stats {
    display: flex;
    gap: 40px;
}

.p-stat h3 {
    font-family: var(--font-code);
    font-size: 2.2rem;
    color: var(--primary-gold);
}

.p-stat p {
    font-size: 0.9rem;
    color: var(--txt-muted);
}

/* ==========================================
   Why Choose Us Section
========================================== */

.why-section {
    padding: 100px 0;
    background: rgba(13, 13, 29, 0.3);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-smooth);
}

.why-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-6px);
    box-shadow: var(--glow-gold);
}

.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
    margin-bottom: 24px;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--txt-muted);
}

/* ==========================================
   Interactive Calculator & Booking Form
========================================== */

.booking-section {
    padding: 100px 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 40px;
}

.booking-calc-card, .booking-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(10px);
}

.booking-calc-card h2, .booking-form-card h2 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.booking-calc-card > p, .booking-form-card > p {
    color: var(--txt-muted);
    margin-bottom: 36px;
}

.calc-group {
    margin-bottom: 28px;
}

.calc-label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--txt-main);
}

.pkg-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.pkg-btn {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 16px 12px;
    border-radius: 8px;
    color: var(--txt-muted);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
}

.pkg-btn strong {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--txt-main);
}

.pkg-btn span {
    font-size: 0.75rem;
}

.pkg-btn:hover {
    border-color: rgba(255,255,255,0.2);
}

.pkg-btn.active {
    border-color: var(--primary-cyan);
    background: rgba(0, 240, 255, 0.08);
    color: var(--primary-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.calc-flex-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.highlight-val {
    font-family: var(--font-code);
    font-weight: 700;
    color: var(--primary-cyan);
}

.custom-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
    outline: none;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-cyan);
    cursor: pointer;
    box-shadow: var(--glow-cyan);
}

.cohort-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chk-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
}

.chk-label input[type="checkbox"] {
    accent-color: var(--primary-cyan);
    width: 16px;
    height: 16px;
}

.live-metrics {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border-glass);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.m-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--txt-muted);
    margin-bottom: 4px;
}

.m-val {
    font-family: var(--font-code);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--txt-main);
}

.m-val-glow {
    font-family: var(--font-code);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

/* Form Fields */
.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--txt-muted);
}

.form-group input, .form-group textarea {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--txt-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-purple);
    background: rgba(255, 255, 255, 0.02);
}

.form-row.split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-purple), #9000ff);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

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

.form-feedback {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.form-feedback.success {
    background: rgba(0, 255, 100, 0.1);
    border: 1px solid rgba(0, 255, 100, 0.3);
    color: #4cff8f;
}

.form-feedback.error {
    background: rgba(255, 0, 50, 0.1);
    border: 1px solid rgba(255, 0, 50, 0.3);
    color: #ff556f;
}

.hidden {
    display: none;
}

/* ==========================================
   Footer
========================================== */

.footer {
    background: #030308;
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 40% 30% 30%;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--txt-muted);
    font-size: 0.95rem;
    margin-top: 16px;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--txt-muted);
}

.footer-socials a:hover {
    color: var(--primary-cyan);
    border-color: var(--primary-cyan);
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-cyan);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--txt-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-cyan);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--txt-muted);
    font-size: 0.95rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-cyan);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-glass);
    color: var(--txt-muted);
    font-size: 0.85rem;
}

/* ==========================================
   Scroll Reveal System
========================================== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Media Queries & Mobile Support
========================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.4rem;
    }
    
    .performer-container {
        grid-template-columns: 100%;
        gap: 40px;
        padding: 32px;
    }
    
    .performer-img-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .booking-grid {
        grid-template-columns: 100%;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .header-container {
        position: relative;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(6, 6, 15, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        border-bottom: 1px solid var(--border-glass);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .quick-features {
        grid-template-columns: 100%;
        text-align: center;
    }
    
    .q-feat-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .experience-grid {
        grid-template-columns: 100%;
    }
    
    .tab-grid {
        grid-template-columns: 100%;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 100%;
        gap: 32px;
    }
    
    .booking-calc-card, .booking-form-card {
        padding: 24px;
    }
    
    .pkg-options {
        grid-template-columns: 100%;
    }
}

@media (max-width: 480px) {
    .why-grid {
        grid-template-columns: 100%;
    }
    
    .form-row.split {
        grid-template-columns: 100%;
    }
}
