/* Korku Evi Rezervasyon - Sleek Corporate Light Mode Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-lightest: #f8fafc;  /* Main page background: off-white/light slate */
    --bg-lighter: #ffffff;   /* Cards/Header/Footer background: pure white */
    --bg-light: #f1f5f9;     /* Highlight sections background */
    
    --primary-green: #e50914; /* Switched to bright red from theme request */
    --bright-green: #ff4d4d;  /* Switched to bright light red */
    --dark-green: #900;       /* Switched to blood red */
    --primary-red: #e50914;   /* Switched to match red */
    
    --text-dark: #0f172a;     /* Very dark slate primary text */
    --text-gray: #334155;     /* Dark grey secondary text */
    --text-muted: #64748b;    /* Slate-500 muted metadata text */
    
    --border-color: #e2e8f0;  /* Clean light border color */
    --glow-shadow: 0 10px 30px rgba(15, 23, 42, 0.04); /* Soft light shadow */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-lightest);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Typography & Titles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 70px;
}

.logo a {
    color: var(--text-dark);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--primary-green);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 550;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-green);
}

@media (min-width: 769px) {
    .mobile-drawer-header,
    .mobile-nav-backdrop,
    .nav-links a i {
        display: none !important;
    }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.3rem;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary-green);
    color: white !important;
}

.btn-primary:hover {
    background-color: var(--bright-green);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    border-color: var(--text-gray);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
    border-radius: 4px;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* 1. BRAND NEW HERO: Split Grid layout (No background images behind text!) */
.hero-split-container {
    background: radial-gradient(circle at top right, rgba(0, 135, 90, 0.05), transparent 70%), var(--bg-lighter);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.hero-split {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-content-left h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-content-left h1 span {
    color: var(--primary-green);
}

.hero-content-left p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.hero-visuals-right {
    position: relative;
}

/* Overlapping stacked image layout for hero with 3D rotations */
.hero-stack {
    position: relative;
    height: 380px;
    width: 100%;
    perspective: 1000px;
}

.hero-stack-img {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    border: 6px solid #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15), 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-stack-img.back {
    width: 62%;
    height: 250px;
    top: 5%;
    left: 2%;
    z-index: 1;
    transform: rotate(-6deg);
    filter: brightness(0.75) grayscale(20%);
}

.hero-stack-img.front {
    width: 72%;
    height: 270px;
    bottom: 5%;
    right: 2%;
    z-index: 2;
    transform: rotate(4deg);
}

.hero-stack-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero-stack:hover .hero-stack-img.front {
    transform: rotate(0deg) translate(-15px, -10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    z-index: 3;
}

.hero-stack:hover .hero-stack-img.back {
    transform: rotate(-12deg) translate(15px, 10px) scale(0.95);
    filter: brightness(0.95) grayscale(0%);
    box-shadow: 0 15px 30px rgba(0,0,0,0.18);
}

.hero-stack-img:hover img {
    transform: scale(1.08);
}

/* Live Stats Dashboard Counters */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    margin-top: 10px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Sections */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* 2. TABBED FILTER SYSTEM */
.filter-tabs-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab-btn {
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-lightest);
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tab-btn:hover {
    border-color: var(--text-muted);
    color: var(--text-dark);
}

.filter-tab-btn.active {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 135, 90, 0.15);
}

/* 3. ALTERNATING HORIZONTAL SHOWCASE ROWS (Ditches simple card grids!) */
.scenarios-list-showcase {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.scenario-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.scenario-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.scenario-row-img {
    height: 360px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--glow-shadow);
    position: relative;
}

.scenario-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.scenario-row:hover .scenario-row-img img {
    transform: scale(1.02);
}

.scenario-row-img .row-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #e50914;
    border: 1px solid #e50914;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 750;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(229, 9, 20, 0.3);
}

.scenario-row-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.scenario-row-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
}

.scenario-row-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Horizontal specs dashboard inside scenarios showcase */
.row-specs-bar {
    display: flex;
    gap: 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    margin: 5px 0;
}

.row-spec-item {
    display: flex;
    flex-direction: column;
}

.row-spec-item span.label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.row-spec-item span.value {
    font-size: 0.9rem;
    font-weight: 700;
}

/* CSS Swap template for alternating visual layout */
.scenario-row.reverse .scenario-row-img {
    order: 2;
}

.scenario-row.reverse .scenario-row-content {
    order: 1;
}

/* Intro grid (trust showcase) */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.intro-image {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    display: block;
}

/* 4. ASYMMETRIC TESTIMONIALS LAYOUT */
.featured-testimonial {
    background-color: var(--bg-lighter);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 40px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.featured-author-box {
    text-align: center;
    border-right: 1px solid var(--border-color);
    padding-right: 20px;
}

.featured-author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-green);
    margin-bottom: 12px;
}

.featured-quote-box blockquote {
    font-size: 1.2rem;
    font-weight: 550;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    position: relative;
}

.featured-quote-box blockquote::before {
    content: '“';
    font-size: 4rem;
    color: rgba(229, 9, 20, 0.15);
    position: absolute;
    top: -30px;
    left: -20px;
    font-family: serif;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.review-card {
    background-color: var(--bg-lightest);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.review-rating {
    color: #f1c40f;
    font-size: 0.8rem;
}

.review-body {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
    font-style: italic;
}

.review-date {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 12px;
    text-align: right;
}

/* FAQ Accordion */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-lightest);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-question i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.25s ease-out;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.faq-item.active .faq-answer {
    padding: 18px 24px;
    max-height: 200px;
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Contact Info & Map */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 38px;
    height: 38px;
    background-color: var(--bg-lighter);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-text p, .contact-text a {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-decoration: none;
}

.contact-text a:hover {
    color: var(--primary-green);
}

.map-wrapper {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    height: 320px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    background-color: var(--bg-lighter);
    border-top: 1px solid var(--border-color);
    padding: 60px 20px 20px;
    color: var(--text-gray);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 34px;
    height: 34px;
    background-color: var(--bg-lightest);
    border: 1px solid var(--border-color);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
}

.social-links a:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--text-white);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.85rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* 5. STICKY BOOKING SIDEBAR GRID FOR SCENARIO DETAILS */
.scenario-details-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 48px;
    align-items: start;
    margin: 40px auto;
}

.sticky-sidebar {
    position: sticky;
    top: 90px; /* Under navbar */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-widget-card {
    background-color: var(--bg-lightest);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.03);
}

.widget-price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--bg-light);
    padding-bottom: 15px;
}

.widget-price-tag span {
    font-size: 0.8rem;
    font-weight: normal;
    color: var(--text-gray);
    display: block;
    margin-bottom: 4px;
}

.widget-specs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.widget-spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--bg-light);
    padding-bottom: 8px;
}

.widget-spec-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget-spec-row .label {
    color: var(--text-muted);
    font-weight: 500;
}

.widget-spec-row .value {
    font-weight: 700;
    color: var(--text-dark);
}

.rules-box {
    background-color: rgba(0, 135, 90, 0.03);
    border-left: 3px solid var(--primary-green);
    padding: 24px;
    border-radius: 0 6px 6px 0;
    margin: 40px 0;
}

.rules-box h3 {
    color: var(--text-dark);
    margin-bottom: 12px;
}

.rules-list {
    list-style-position: inside;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* 6. MASONRY COLLAGE GALLERY (Ditches simple flat galleries) */
.collage-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 150px;
    gap: 15px;
    margin: 30px 0;
}

.collage-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.01);
}

.collage-item img, .collage-item video, .gallery-item img, .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.collage-item:hover img, .gallery-item:hover img {
    transform: scale(1.03);
}

.collage-item.big-2x2 {
    grid-column: span 2;
    grid-row: span 2;
}

.collage-item.long-2x1 {
    grid-column: span 2;
}

.collage-item.tall-1x2 {
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background-color: rgba(11, 15, 23, 0.45);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.collage-item:hover .gallery-overlay, .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top:0; left:0; width:100%; height:100%;
    background-color: rgba(30, 41, 59, 0.45);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(6px);
}

.modal-content {
    background-color: var(--bg-lightest);
    border: 1px solid var(--border-color);
    max-width: 580px;
    width: 100%;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--text-gray);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--text-dark);
}

/* Booking Wizard */
.booking-container {
    max-width: 850px;
    margin: 40px auto;
    background-color: var(--bg-lightest);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    overflow: hidden;
}

.booking-progress {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-lighter);
}

.progress-step {
    flex: 1;
    text-align: center;
    padding: 18px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    text-transform: uppercase;
}

.progress-step.active {
    color: var(--primary-green);
}

.progress-step.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-green);
}

.booking-form-body {
    padding: 30px 40px;
}

.booking-step-panel {
    display: none;
}

.booking-step-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 6px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    background-color: var(--bg-lightest);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    border-radius: 4px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 135, 90, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

/* Time Slots Picker */
.slots-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.slot-btn {
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    text-align: center;
    background-color: var(--bg-lighter);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    font-weight: 500;
}

.slot-btn.available:hover {
    border-color: var(--primary-green);
    background-color: rgba(0,135,90,0.03);
}

.slot-btn.selected {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--text-white);
}

.slot-btn.unavailable {
    background-color: var(--bg-light);
    border-color: var(--border-color);
    color: var(--text-muted);
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: 0.5;
}

/* Select Scenario Box */
.scenario-selector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.scenario-select-card {
    border: 1px solid var(--border-color);
    background-color: var(--bg-lightest);
    border-radius: 6px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.scenario-select-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.scenario-select-card.selected {
    border-color: var(--primary-green);
    background-color: rgba(0, 135, 90, 0.02);
}

.scenario-select-card img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-color);
    margin-bottom: 12px;
}

/* Order Summary Box */
.summary-box {
    background-color: var(--bg-lighter);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    font-size: 0.9rem;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-total {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    border-top: 1px solid var(--border-color);
    margin-top: 8px;
    padding-top: 12px;
}

.coupon-applied-alert {
    color: #2ecc71;
    font-size: 0.8rem;
    margin-top: 6px;
}

/* Alerts */
.alert {
    padding: 12px 18px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.alert-danger {
    background-color: #fdf2f2;
    border: 1px solid #f8b4b4;
    color: #9b1c1c;
}

.alert-success {
    background-color: #f3faf7;
    border: 1px solid #def7ec;
    color: #03543f;
}

.alert-warning {
    background-color: #fdf8f6;
    border: 1px solid #fbd5c0;
    color: #9a3412;
}

/* Ticket wrapper */
.ticket-wrapper {
    background-color: var(--bg-lightest);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    max-width: 600px;
    margin: 40px auto;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.ticket-header {
    text-align: center;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.ticket-barcode-slot {
    margin: 20px auto;
    width: 140px;
    height: 140px;
    background-color: white;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.ticket-field h5 {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ticket-field p {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Star Rating Radios */
.rating-picker {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 6px;
}

.rating-picker input {
    display: none;
}

.rating-picker label {
    font-size: 1.8rem;
    color: #e2e8f0;
    cursor: pointer;
    transition: color 0.15s ease;
    margin-bottom: 0;
}

.rating-picker label:hover,
.rating-picker label:hover ~ label,
.rating-picker input:checked ~ label {
    color: #f1c40f;
}

/* Responsive grid layout */
@media (max-width: 992px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-stack {
        height: 280px;
        max-width: 500px;
        margin: 0 auto;
    }
    .scenario-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .scenario-row.reverse .scenario-row-img {
        order: 0;
    }
    .scenario-row.reverse .scenario-row-content {
        order: 0;
    }
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
    .scenario-details-grid {
        grid-template-columns: 1fr;
    }
    .sticky-sidebar {
        position: static;
    }
    .featured-testimonial {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .featured-author-box {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-content-left h1 {
        font-size: 2.2rem;
    }
    /* Dark backdrop overlay for mobile drawer */
    .mobile-nav-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(4px);
        z-index: 99998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-nav-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    /* Left-to-Right Slide Drawer for Mobile Nav */
    .nav-links {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 290px;
        max-width: 82vw;
        height: 100vh;
        height: 100dvh;
        background-color: var(--bg-lighter);
        z-index: 99999;
        padding: 24px 20px;
        gap: 0;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
    }

    .nav-links.mobile-active {
        transform: translateX(0);
    }

    /* Mobile Drawer Header with Close Button */
    .mobile-drawer-header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 18px;
        margin-bottom: 15px;
        border-bottom: 1.5px solid var(--border-color);
        width: 100%;
    }

    .mobile-drawer-header .drawer-logo {
        font-family: var(--font-heading);
        font-weight: 800;
        font-size: 1.1rem;
        color: var(--text-dark);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-drawer-header .drawer-close-btn {
        background: none;
        border: none;
        color: var(--text-gray);
        font-size: 1.4rem;
        cursor: pointer;
        padding: 4px 8px;
        transition: color 0.2s;
    }

    .mobile-drawer-header .drawer-close-btn:hover {
        color: var(--primary-green);
    }

    /* Vertical Links List */
    .nav-links li {
        width: 100%;
        border-bottom: 1px dashed rgba(226, 232, 240, 0.8);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links li a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 10px;
        font-size: 0.98rem;
        font-weight: 600;
        color: var(--text-gray);
        transition: all 0.2s ease;
        text-decoration: none;
    }

    .nav-links li a i {
        font-size: 1.1rem;
        color: var(--primary-green);
        width: 24px;
        text-align: center;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        color: var(--primary-green);
        padding-left: 14px;
        background-color: rgba(229, 9, 20, 0.05);
        border-radius: 6px;
    }

    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .booking-form-body {
        padding: 20px;
    }
    .progress-step span {
        display: none;
    }
    .ticket-details {
        grid-template-columns: 1fr;
    }
    .collage-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 110px;
    }
    .collage-item.big-2x2 {
        grid-column: span 2;
        grid-row: span 2;
    }
    .collage-item.long-2x1 {
        grid-column: span 2;
    }
    .collage-item.tall-1x2 {
        grid-row: span 2;
    }
}

/* Responsive Booking Checkout Layout */
@media (max-width: 992px) {
    .booking-layout-wrapper {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .booking-summary-column {
        position: static !important;
        top: 0 !important;
    }
}
