/* ==========================================================================
   Table of Contents:
   1. Variables & Base Styles
   2. Typography
   3. Layout & Grid
   4. Navigation
   5. Hero Section
   6. Features
   7. Boarding Pass
   8. Trip Planner
   9. Travel Pass
   10. Gallery & Testimonials
   11. Contact
   12. Footer
   13. Components (WhatsApp Float, Modal, Lightbox)
   14. Trust Bar
   15. Animations
   16. Media Queries
   ========================================================================== */

/* ==========================================================================
   1. Variables & Base Styles
   ========================================================================== */
:root {
    --primary-cream: #FFF9F2;
    --primary-cream-alt: #F7F2E8;
    --primary-brown-light: #E5D3B3;
    --primary-brown: #D2B48C;
    --primary-brown-dark: #6D4C3D;
    --primary-brown-accent: #BFA074;
    --accent-gold: #B8860B;
    --text-dark: #2C1810;
    --text-light: #8B5E3C;
    --white: #FFFFFF;
    --shadow: 0 8px 32px rgba(109, 76, 61, 0.12);
    --shadow-hover: 0 16px 48px rgba(109, 76, 61, 0.18);
    --glass-bg: rgba(255, 249, 242, 0.7);
    --glass-border: rgba(213, 180, 140, 0.25);
}

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

body {
    font-family: 'Inter', 'Nunito Sans', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-cream), var(--primary-cream-alt) 100%);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ==========================================================================
   2. Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-brown-dark);
    position: relative;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(213, 180, 140, 0.08);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-brown-light));
    border-radius: 2px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 249, 242, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-hover);
}

.navbar.scrolled {
    background: rgba(255, 249, 242, 0.95);
    box-shadow: var(--shadow-hover);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 140px;
    transition: all 0.3s ease;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-brown-dark);
}

/* Base Navigation Styles */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: #6D4C3D;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Islamic Pattern Overlay */
.islamic-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/patterns/geometric.svg');
    opacity: 0.1;
    pointer-events: none;
}

/* Hero Section Improvements */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-cream), var(--primary-cream-alt) 100%);
    color: #1F2937;
    overflow: hidden;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.geometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, 
        rgba(210, 180, 140, 0.15) 0px, 
        rgba(210, 180, 140, 0.15) 1px,
        transparent 1px, 
        transparent 2px
    ),
    repeating-linear-gradient(-45deg,
        rgba(210, 180, 140, 0.15) 0px,
        rgba(210, 180, 140, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    background-size: 60px 60px;
    opacity: 0.7;
}

.geometric-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-conic-gradient(
        from 0deg,
        rgba(210, 180, 140, 0.12) 0deg 45deg,
        transparent 45deg 90deg,
        rgba(210, 180, 140, 0.12) 90deg 135deg,
        transparent 135deg 180deg,
        rgba(210, 180, 140, 0.12) 180deg 225deg,
        transparent 225deg 270deg,
        rgba(210, 180, 140, 0.12) 270deg 315deg,
        transparent 315deg 360deg
    );
    background-size: 40px 40px;
    background-position: center;
    transform: rotate(45deg);
}

.geometric-pattern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-conic-gradient(
        from 45deg,
        rgba(210, 180, 140, 0.15) 0deg 45deg,
        transparent 45deg 90deg,
        rgba(210, 180, 140, 0.15) 90deg 135deg,
        transparent 135deg 180deg,
        rgba(210, 180, 140, 0.15) 180deg 225deg,
        transparent 225deg 270deg,
        rgba(210, 180, 140, 0.15) 270deg 315deg,
        transparent 315deg 360deg
    );
    background-size: 30px 30px;
    background-position: center;
    opacity: 0.8;
}

.kaaba-illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-gold) 0%, var(--primary-brown-dark) 70%);
    border-radius: 20px;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--accent-gold) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--primary-brown-light) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, var(--accent-gold) 0%, transparent 30%);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

@keyframes pulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.hero-title {
    font-family: 'Amiri', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-brown-dark);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #1F2937;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-brown), var(--accent-gold));
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4,2,.3,1);
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.18);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-brown));
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 8px 32px rgba(184, 134, 11, 0.22);
    filter: brightness(1.08);
}

.button-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--white);
}

.features-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 1.5rem;
    padding: 0 1.5rem 1rem 1.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.features-grid::-webkit-scrollbar {
    display: none;
}

.feature-card {
    min-width: 320px;
    max-width: 340px;
    flex: 0 0 auto;
    margin-bottom: 0;
    scroll-snap-align: start;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1.5px solid var(--glass-border);
    box-shadow: var(--shadow);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
}

.feature-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px) scale(1.03);
    background: rgba(255, 249, 242, 0.85);
}

.feature-icon {
    width: 28px;
    height: 28px;
    filter: sepia(100%) saturate(300%) brightness(70%) hue-rotate(5deg);
    flex-shrink: 0;
    margin-top: 3px;
    padding: 8px;
    background: rgba(210, 180, 140, 0.15);
    border-radius: 10px;
}

.feature-item:hover .feature-icon {
    background: rgba(184, 134, 11, 0.15);
    transform: scale(1.05);
    transition: all 0.2s ease;
}

.feature-icon .icon {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
    color: var(--primary-brown-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Boarding Pass Section */
.boarding-pass-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Search Container & Box */
.search-container {
    margin: 2rem 0;
    padding: 0 1rem;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-box input {
    flex: 1;
    border: none;
    padding: 0.5rem 0.5rem 0.5rem 2rem; /* Add left padding for icon */
    font-size: 1rem;
    color: #333;
    min-width: 0; /* Prevents input from overflowing */
    background: transparent;
}

.search-box input::placeholder {
    color: #999;
}

.search-box select {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f9fa;
    color: #666;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
}

.search-box select:hover {
    background: #e9ecef;
}

.search-icon {
    width: 20px;
    height: 20px;
    opacity: 0.6;
    position: absolute;
    left: 1rem;
    pointer-events: none;
}

/* Position relative for icon positioning */
.search-box {
    position: relative;
}

/* Mobile styles for search */
@media (max-width: 768px) {
    .search-container {
        margin: 1.5rem 1rem;
    }

    .search-box {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 0.625rem 0.75rem;
    }

    .search-box input {
        width: 100%;
        order: 1;
        padding: 0.625rem 0.625rem 0.625rem 2rem;
    }

    .search-box select {
        width: 100%;
        order: 2;
    }

    .search-icon {
        left: 0.75rem;
    }
}

@media (max-width: 480px) {
    .search-container {
        margin: 1rem;
    }

    .search-box {
        padding: 0.5rem 0.75rem;
    }
}

/* Catalog specific search styles */
.catalog-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    padding: 0 1rem;
}

.catalog-controls .search-box {
    flex: 1;
    min-width: 280px;
}

/* Tab Styles */
.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 0 1rem;
}

.tab-button {
    padding: 0.75rem 1.5rem;
    border: none;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #adadad;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #adadad;
}

.tab-button:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    color: #333;
}

.tab-button.active {
    background: linear-gradient(135deg, #B8860B, #DAA520);
    color: white;
    border: solid 1px #B8860B;
}

/* Mobile styles for schedule tabs */
@media (max-width: 768px) {
    .schedule-tabs {
        margin: 1.5rem 1rem;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .tab-button {
        padding: 0.625rem 1rem;
        font-size: 0.9rem;
        flex: 1;
        min-width: 100px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .schedule-tabs {
        margin: 1rem;
        padding: 0;
    }
}

/* Schedule Sections */
.schedule-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.schedule-section.active {
    display: block;
}

/* Boarding Ticket Styles */
.boarding-ticket {
    margin: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

.airline-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.airline-logo {
    width: 32px;
    height: auto;
}

.airline-name {
    font-size: 0.9rem;
    color: #666;
}

.badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
}

.departure-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.flight-icon {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

.departure-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.departure-date {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.departure-time {
    font-size: 0.9rem;
    color: #666;
}

.passenger-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.75rem 0;
    border-top: 1px solid #eee;
}

.info-group {
    flex: 1;
    min-width: calc(50% - 0.5rem);
}

.info-group .label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.25rem;
    display: block;
}

.info-group .value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
}

.ticket-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
}

.book-now-btn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.book-now-btn:hover {
    background: #1a252f;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-badge.ongoing {
    background: #fff8e1;
    color: #f57c00;
}

.status-badge.completed {
    background: #e8f5e9;
    color: #2e7d32;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .boarding-pass-section .container {
        padding: 0;
    }

    .boarding-ticket {
        margin: 0.75rem 1rem;
        padding: 1rem;
    }

    .ticket-footer {
        flex-direction: column;
    }

    .book-now-btn,
    .status-badge {
        width: 100%;
        justify-content: center;
    }

    .price {
        text-align: center;
    }

    .info-group {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .boarding-ticket {
        margin: 0.5rem 1rem;
    }

    .departure-info {
        padding: 0.5rem;
    }

    .departure-date {
        font-size: 0.95rem;
    }

    .departure-time {
        font-size: 0.85rem;
    }
}

/* Travel Pass */
.travel-pass {
    padding: 5rem 0;
    background: var(--primary-cream);
}

.passport-container {
    max-width: 600px;
    margin: 0 auto;
    perspective: 1000px;
}

.passport {
    background: var(--primary-brown-dark);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-hover);
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.passport:hover {
    transform: rotateY(5deg) rotateX(5deg);
}

.passport-cover {
    background: linear-gradient(135deg, var(--primary-brown-dark), var(--accent-gold));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.passport-cover h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
}

.passport-icon {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
}

.passport-content {
    background: var(--white);
    padding: 2rem;
}

.status-section,
.checklist-section,
.eticket-section {
    margin-bottom: 2rem;
}

.status-section h4,
.checklist-section h4,
.eticket-section h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-brown-dark);
    margin-bottom: 1rem;
}

.status-item,
.checklist-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--primary-brown-light);
}

.status-paid {
    color: #22c55e;
    font-weight: 600;
}

.status-pending {
    color: #f59e0b;
    font-weight: 600;
}

.checklist-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.qr-placeholder {
    text-align: center;
    padding: 1rem;
    background: var(--primary-cream);
    border-radius: 10px;
}

.qr-code-small {
    width: 60px;
    height: 60px;
    background: var(--primary-brown-light);
    margin: 0 auto 1rem;
    border-radius: 5px;
}

/* Gallery & Testimonials */
.gallery-testimonials {
    padding: 5rem 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 4rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
    box-shadow: 0 8px 32px rgba(213, 180, 140, 0.13);
    border: 1.5px solid var(--glass-border);
    background: var(--glass-bg);
}

.gallery-item:hover {
    box-shadow: 0 16px 48px rgba(213, 180, 140, 0.22);
    transform: scale(1.05) translateY(-4px);
    background: rgba(255, 249, 242, 0.92);
}

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

.testimonials {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonials h3 {
    margin-bottom: 2rem;
    color: var(--primary-brown-dark);
}

.testimonial-slider {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    padding: 2rem;
    background: var(--primary-cream);
    border-radius: 15px;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--primary-brown-dark);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-controls {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.testimonial-controls button {
    background: var(--accent-gold);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.testimonial-controls button:hover {
    background: var(--primary-brown-dark);
    transform: scale(1.1);
}

/* Contact */
.contact {
    padding: 5rem 0;
    background: var(--primary-cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1.5px solid var(--glass-border);
    box-shadow: var(--shadow);
    padding: 2.5rem;
    border-radius: 24px;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-brown-dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.7);
    border: 1.5px solid var(--primary-brown-light);
    border-radius: 12px;
    font-size: 1rem;
    padding: 0.9rem 1.1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(213, 180, 140, 0.08);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.13);
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-brown), var(--accent-gold));
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4,2,.3,1);
    width: 100%;
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-brown));
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 8px 32px rgba(184, 134, 11, 0.22);
    filter: brightness(1.08);
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.contact-info .info-icon {
    width: 24px;
    height: 24px;
    margin-top: 0.2rem;
}

.contact-info h4 {
    color: var(--primary-brown-dark);
    margin-bottom: 0.5rem;
}

.contact-info p {
    color: var(--text-light);
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--primary-brown-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 100px;
    height: 100px;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-quote {
    font-style: italic;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
}

.social-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-dialog {
    position: relative;
    width: 95%;
    max-width: 600px;
    margin: 20px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.3s ease-out;
}

@media (min-width: 768px) {
    .modal-dialog {
        margin: 30px auto;
    }
}

.modal.show {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}

.modal-body {
    padding: 20px 0;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.close:hover {
    color: #333;
}

/* Progress Modal Specific Styles */
.progress-modal .modal-dialog {
    max-width: 700px;
}

.progress-modal .modal-content {
    padding: 0;
}

.progress-modal .modal-body {
    padding: 20px;
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
    .modal {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-dialog {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }
}

/* Ensure modal is centered on all devices */
@media (max-width: 767px) {
    .modal.show {
        padding: 10px;
    }
    
    .modal-dialog {
        margin: 10px auto;
        width: calc(100% - 20px);
    }
    
    .modal-content {
        max-height: calc(100vh - 20px);
    }
}

/* Fix for landscape orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .modal.show {
        align-items: flex-start;
    }
    
    .modal-dialog {
        margin: 10px auto;
    }
}

/* Trust Bar Styles */
.trust-bar {
    background: #fff;
    padding: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.trust-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.trust-text h4 {
    color: #1B4D3E;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.trust-text p {
    color: #666;
    font-size: 0.9rem;
}

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

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    display: block;
    margin-bottom: 0.5rem;
}

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

.stars {
    color: #D4AF37;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.7s cubic-bezier(.4,2,.3,1), transform 0.7s cubic-bezier(.4,2,.3,1);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

@media (max-width: 900px) {
    .pass-info-premium {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem 1.2rem;
    }
}

@media (max-width: 1024px) {
    .features-grid {
        gap: 1.2rem !important;
    }
    .feature-card {
        min-width: 220px !important;
        max-width: 100% !important;
        padding: 1.5rem 1rem !important;
    }
}
@media (max-width: 768px) {
    .features-grid {
        flex-wrap: wrap !important;
        gap: 1rem !important;
    }
    .feature-card {
        min-width: 180px !important;
        max-width: 100% !important;
        padding: 1.2rem 0.7rem !important;
    }
}
@media (max-width: 600px) {
    .features-grid {
        flex-direction: column !important;
        gap: 0.7rem !important;
    }
    .feature-card {
        min-width: 0 !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 1rem 0.5rem !important;
    }
}
.feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px rgba(184,134,11,0.13), 0 0 0 2px #B8860B22;
}

/* Responsive & Beautiful Boarding Passes */
.beautiful-boarding-passes {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}
.beautiful-pass {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 820px;
    min-width: 0;
    background: repeating-linear-gradient(135deg, #f7f2e8 0 10px, #f3e7d2 10px 20px);
    border-radius: 32px;
    box-shadow: 0 8px 32px var(--shadow);
    border: 2px solid var(--primary-brown-light);
    overflow: visible;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
    margin: 0 auto;
    margin-bottom: 1.5rem;
    position: relative;
}
.beautiful-pass:hover {
    box-shadow: 0 24px 64px var(--shadow-hover), 0 0 0 4px var(--accent-gold);
    transform: translateY(-8px) scale(1.02) rotate(0.5deg);
    border-color: var(--accent-gold);
}
.beautiful-pass-left {
    flex: 0 0 220px;
    min-width: 180px;
    max-width: 240px;
    padding: 2.2rem 1.5rem 2.2rem 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-top-left-radius: 32px;
    border-bottom-left-radius: 32px;
    color: #fff;
    position: relative;
    z-index: 1;
}
.pass-icon-wrapper {
    background: rgba(255,255,255,0.18);
    border-radius: 16px;
    padding: 0.7rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 2px 12px #0001;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pass-icon {
    width: 48px;
    height: 48px;
    display: block;
}
.badge {
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.3rem 1.1rem;
    border-radius: 12px;
    margin-bottom: 0.7rem;
    display: inline-block;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px #0001;
}
.badge-vip {
    background: linear-gradient(90deg, #FFD700 60%, #B8860B 100%);
    color: #6D4C3D;
}
.badge-eco {
    background: linear-gradient(90deg, #FFF9F2 60%, #E5D3B3 100%);
    color: #6D4C3D;
}
.badge-tour {
    background: linear-gradient(90deg, #4FC3F7 60%, #0288D1 100%);
    color: #fff;
}
.pass-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    margin-top: 0.2rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px #0002;
}
.hotel-stars {
    display: flex;
    gap: 2px;
    margin-top: 0.5rem;
}
.star-icon {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 1px 4px #fff5);
}
.beautiful-divider {
    width: 24px;
    min-width: 24px;
    background: transparent;
    position: relative;
}
.beautiful-divider::before, .beautiful-divider::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--primary-cream);
    border-radius: 50%;
    z-index: 2;
}
.beautiful-divider::before {
    top: -12px;
    box-shadow: 0 -2px 6px 0 rgba(0,0,0,0.04);
}
.beautiful-divider::after {
    bottom: -12px;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,0.04);
}
.beautiful-pass-right {
    flex: 1 1 0;
    padding: 2.2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top-right-radius: 32px;
    border-bottom-right-radius: 32px;
    background: var(--white);
    position: relative;
    min-width: 0;
}
.beautiful-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem 2.2rem;
    margin-bottom: 1.2rem;
}
.info-block {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'JetBrains Mono', 'Fira Mono', 'Menlo', monospace;
    font-size: 1.05rem;
    color: var(--text-dark);
    background: #f7f2e8;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    box-shadow: 0 1px 4px #0001;
}
.info-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--primary-brown-dark);
    font-size: 0.98rem;
}
.info-icon {
    width: 18px;
    height: 18px;
    filter: opacity(0.7);
}
.info-value {
    font-weight: 500;
    color: var(--text-dark);
    margin-left: 0.3rem;
}
.highlight-price {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.08rem;
}
.pass-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.2rem;
}
.beautiful-qr {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px var(--shadow);
    position: relative;
}
.beautiful-ticket-btn {
    background: var(--accent-gold);
    color: var(--white);
    border: none;
    padding: 0.7rem 1.7rem;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px #B8860B22;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: background 0.2s, box-shadow 0.2s;
}
.beautiful-ticket-btn:hover {
    background: #FFD700;
    color: #6D4C3D;
    box-shadow: 0 4px 16px #B8860B33;
}
@media (max-width: 900px) {
    .beautiful-pass {
        flex-direction: column;
        max-width: 98vw;
    }
    .beautiful-pass-left, .beautiful-pass-right {
        border-radius: 32px 32px 0 0 !important;
        border-bottom-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }
    .beautiful-pass-left {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 1.5rem 1.5rem 1.2rem 1.5rem;
        min-width: 0;
        max-width: 100%;
    }
    .pass-title {
        margin-left: 1.2rem;
    }
    .beautiful-divider {
        display: none;
    }
    .beautiful-pass-right {
        border-radius: 0 0 32px 32px !important;
        padding: 1.5rem 1.2rem;
    }
}
@media (max-width: 600px) {
    .beautiful-boarding-passes {
        gap: 1.2rem;
    }
    .beautiful-pass {
        max-width: 100vw;
        min-width: 0;
        margin: 0 0 1.2rem 0;
    }
    .beautiful-pass-left {
        padding: 1.1rem 1.1rem 1rem 1.1rem;
    }
    .beautiful-pass-right {
        padding: 1.1rem 0.7rem;
    }
    .beautiful-info {
        grid-template-columns: 1fr;
        gap: 0.7rem 0;
    }
    .pass-actions {
        flex-direction: column;
        gap: 0.7rem;
        align-items: flex-start;
    }
}

/* Animation for boarding passes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.beautiful-pass {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.beautiful-pass:nth-child(2) {
    animation-delay: 0.2s;
}

.beautiful-pass:nth-child(3) {
    animation-delay: 0.4s;
}

.beautiful-pass:nth-child(4) {
    animation-delay: 0.6s;
}

/* Trip Planner Styles */
.trip-planner {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-cream) 0%, var(--primary-cream-alt) 100%);
}

.planner-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.planner-container {
    max-width: 1000px;
    margin: 0 auto;
}

.planner-form {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(109, 76, 61, 0.1);
    width: 100%;
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-icon {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

.select-wrapper, .date-wrapper, .number-input-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--primary-brown);
    pointer-events: none;
}

.form-group select,
.form-group input[type="date"],
.form-group input[type="number"] {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    border: 1px solid var(--primary-brown-light);
    border-radius: 8px;
    background-color: var(--white);
    color: var(--text-dark);
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-group select:hover,
.form-group input:hover {
    border-color: var(--primary-brown);
}

.form-group select:focus,
.form-group input:focus {
    border-color: var(--accent-gold);
    outline: none;
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.2);
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.calculate-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-gold), #D4AF37);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(184, 134, 11, 0.2);
    min-width: 220px;
}

.calculate-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(184, 134, 11, 0.3);
}

.calculate-button.disabled {
    background: linear-gradient(135deg, #cccccc, #999999);
    cursor: not-allowed;
    box-shadow: none;
}

.calculate-button.disabled:hover {
    transform: none;
}

.button-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.price-result {
    background: linear-gradient(135deg, var(--primary-cream), var(--primary-cream-alt));
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(109, 76, 61, 0.15);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    border: 1px solid var(--primary-brown-light);
}

.price-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-brown-dark);
}

.price-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
}

.price-details {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(109, 76, 61, 0.08);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--primary-cream);
}

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

.price-row.total {
    background-color: rgba(184, 134, 11, 0.1);
    border-bottom: none;
}

.price-label {
    flex: 3;
}

.price-label span {
    font-weight: 600;
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.price-label small {
    color: var(--text-light);
    font-size: 0.8rem;
}

.price-value {
    flex: 2;
    text-align: right;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.price-row.total .price-value {
    color: var(--accent-gold);
}

.price-actions {
    margin-top: 1.5rem;
    text-align: center;
}

.book-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #38A169, #2F855A);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(47, 133, 90, 0.25);
}

.book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(47, 133, 90, 0.3);
}

.price-note {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.room-selection {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--primary-brown-light);
}

.room-type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--primary-brown-light);
    color: var(--text-dark);
    font-size: 0.9rem;
}

.room-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(210, 180, 140, 0.2);
    transition: background-color 0.2s ease;
}

.room-option:hover {
    background-color: rgba(210, 180, 140, 0.05);
}

.room-option-count input {
    width: 50px;
    text-align: center;
    padding: 0.5rem;
    border: 1px solid var(--primary-brown-light);
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.room-option-count input:focus {
    border-color: var(--accent-gold);
    outline: none;
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.2);
}

.room-summary {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--primary-brown-light);
    position: relative;
}

.room-capacity-info {
    font-weight: 500;
    color: var(--primary-brown-dark);
    font-size: 0.95rem;
}

.capacity-message {
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.capacity-warning {
    color: #E53E3E;
}

.capacity-success {
    color: #38A169;
}

/* Price Result Styles */
.price-result {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.5s ease;
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price-header h3 {
    color: var(--primary-brown-dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
}

.price-details {
    background: var(--primary-cream);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px dashed var(--primary-brown-light);
}

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

.price-row.total {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--primary-brown-light);
}

.price-label {
    display: flex;
    flex-direction: column;
}

.price-label span {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.price-label small {
    color: var(--text-light);
    font-size: 0.85rem;
}

.price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.price-row.total .price-value {
    font-size: 1.5rem;
}

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

.book-button {
    background: var(--accent-gold);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.2);
}

.book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.3);
}

.price-note {
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .planner-form {
        padding: 1.5rem;
    }

    .price-result {
        padding: 1.5rem;
    }

    .price-row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .price-label {
        margin-bottom: 0.5rem;
    }

    .calculate-button,
    .book-button {
        width: 100%;
        justify-content: center;
    }
}

/* ======================
   Catalog Section Styles
   ====================== */

/* Container & Layout */
.catalog-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #fff9f2 0%, #fff 100%);
}

/* Filter Controls */
.catalog-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    padding: 0 1rem;
}

/* Search Box */
.search-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
    position: relative;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    font-size: 1rem;
    color: #333;
    min-width: 0;
    background: transparent;
}

.search-box input::placeholder {
    color: #999;
}

.search-icon {
    width: 20px;
    height: 20px;
    opacity: 0.6;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.filter-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-group select {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    color: #666;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 140px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-group select:hover {
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .catalog-controls {
        margin: 1.5rem 1rem;
        gap: 0.75rem;
    }

    .search-box {
        width: 100%;
        padding: 0.625rem 0.75rem;
    }

    .search-box input {
        padding: 0.5rem 0.5rem 0.5rem 2rem;
    }

    .filter-group {
        width: 100%;
    }

    .filter-group select {
        width: 100%;
        padding: 0.625rem 1rem;
    }
}

@media (max-width: 480px) {
    .catalog-controls {
        margin: 1rem;
    }

    .search-box, 
    .filter-group select {
        padding: 0.5rem 0.75rem;
    }
}

/* Catalog Grid */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
    margin: 0 auto;
    max-width: 1400px;
}

/* Card Styles */
.catalog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(109, 76, 61, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(109, 76, 61, 0.12);
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #B8860B, #D2B48C);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(184, 134, 11, 0.2);
}

/* Card Image */
.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.catalog-card:hover .card-image img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
}

/* Card Content */
.card-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-header {
    margin-bottom: 1.2rem;
    text-align: left;
}

.card-header h3 {
    color: #6D4C3D;
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    background-color: #f5e6d3;
    color: #8B5E3C;
    font-weight: 500;
}

.tag-highlight {
    background-color: #B8860B;
    color: white;
}

/* Features List */
.card-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 28px;
    height: 28px;
    filter: sepia(100%) saturate(300%) brightness(70%) hue-rotate(5deg);
    flex-shrink: 0;
    margin-top: 3px;
    padding: 8px;
    background: rgba(210, 180, 140, 0.15);
    border-radius: 10px;
}

.feature-item:hover .feature-icon {
    background: rgba(184, 134, 11, 0.15);
    transform: scale(1.05);
    transition: all 0.2s ease;
}

.feature-text {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0.5rem;
    align-items: baseline;
    width: 100%;
}

.feature-label {
    color: #8B5E3C;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-value {
    color: #6D4C3D;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Price Section */
.card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(210, 180, 140, 0.2);
}

.price-tag {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.price {
    color: #B8860B;
    font-size: 1.3rem;
    font-weight: 700;
}

.per-person {
    color: #8B5E3C;
    font-size: 0.85rem;
}

/* Button Styles */
.view-details-btn {
    background: linear-gradient(135deg, #B8860B, #D2B48C);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.2);
}

.view-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.view-details-btn:active {
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .catalog-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .search-box {
        min-width: 100%;
    }
    
    .filter-group {
        flex-direction: column;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.2rem;
    }

    .card-image {
        height: 180px;
    }

    .card-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .catalog-section {
        padding: 2rem 0;
    }

    .catalog-controls select {
        width: 100%;
    }

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

    .view-details-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .feature-text {
        grid-template-columns: 70px 1fr;
    }

    .feature-icon {
        width: 24px;
        height: 24px;
        padding: 7px;
        border-radius: 8px;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1rem;
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-number {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D2B48C;
    background: white;
    color: #6D4C3D;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.page-number:hover:not(.active) {
    background: #fff9f2;
    border-color: #B8860B;
}

.page-number.active {
    background: linear-gradient(135deg, #B8860B, #D2B48C);
    color: white;
    border: none;
    font-weight: 600;
}

.page-dots {
    color: #8B5E3C;
    font-size: 1.2rem;
    padding: 0 0.5rem;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D2B48C;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.page-btn:hover:not(:disabled) {
    background: #fff9f2;
    border-color: #B8860B;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #E5D3B3;
}

.page-btn img {
    width: 20px;
    height: 20px;
    filter: sepia(100%) saturate(300%) brightness(70%) hue-rotate(5deg);
}

.page-btn:disabled img {
    filter: grayscale(100%) opacity(50%);
}

@media (max-width: 480px) {
    .pagination {
        gap: 0.5rem;
    }

    .page-number {
        min-width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .page-btn {
        width: 36px;
        height: 36px;
    }

    .page-btn img {
        width: 18px;
        height: 18px;
    }

    .page-numbers button:not(.active):not(:first-child):not(:last-child) {
        display: none;
    }

    .page-dots {
        display: inline-block;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-logo img {
        height: 50px !important;
        width: auto !important;
    }

    .hamburger {
        display: block;
        padding: 10px;
        margin-left: 10px;
    }

    .nav-menu {
        position: fixed;
        top: 65px; /* Height of the navbar */
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px); /* Subtract navbar height */
        flex-direction: column;
        background: rgba(255, 249, 242, 0.98);
        backdrop-filter: blur(12px);
        transition: 0.3s ease;
        padding: 2rem 1rem;
        gap: 2rem;
        overflow-y: auto; /* Enable vertical scrolling */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }

    .nav-menu.active {
        left: 0;
        box-shadow: var(--shadow);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }

    /* Container padding */
    .container {
        padding: 0 1rem;
    }

    /* Single column layouts */
    .features-grid,
    .catalog-grid,
    .gallery-grid,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Card layouts */
    .feature-card,
    .catalog-card,
    .gallery-item {
        width: 100%;
        margin: 0 0 1.5rem 0;
    }

    /* Hero section */
    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .catalog-controls {
        flex-direction: column;
    }

    .search-box,
    .filter-group,
    .sort-group {
        width: 100%;
        margin-bottom: 1rem;
    }

    .modal-content {
        width: 90%;
        margin: 20px auto;
        padding: 1rem;
    }
}

/* Hamburger Menu Base Styles */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 4px 0;
    background-color: var(--primary-brown-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Progress Button */
.view-progress-btn {
    background: linear-gradient(135deg, #B8860B, #DAA520);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-progress-btn:hover {
    background: linear-gradient(135deg, #DAA520, #B8860B);
}

/* Progress Modal */
.progress-modal .modal-content {
    max-width: 600px;
    padding: 2rem;
    margin: 5vh auto;
    max-height: 90vh;
    overflow-y: auto;
}

.progress-modal .modal-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 1.5rem;
}

.journey-timeline {
    margin-top: 2rem;
    position: relative;
    padding: 0 1rem;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease-out;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e0e0e0;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-icon img {
    width: 18px;
    height: 18px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.timeline-content {
    flex: 1;
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 12px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #f8f9fa;
}

.timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.timeline-detail {
    font-size: 0.9rem !important;
    color: #888 !important;
    font-style: italic;
}

.timeline-content .status {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Timeline Item States */
.timeline-item.completed .timeline-icon {
    border-color: #4caf50;
    background: #e8f5e9;
    transform: scale(1.1);
}

.timeline-item.completed .timeline-icon img {
    opacity: 1;
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(90%) contrast(80%);
}

.timeline-item.completed .timeline-content {
    background: #f1f8e9;
}

.timeline-item.completed .timeline-content::before {
    border-right-color: #f1f8e9;
}

.timeline-item.completed .status {
    background: #e8f5e9;
    color: #2e7d32;
}

.timeline-item.active .timeline-icon {
    border-color: #2196f3;
    background: #e3f2fd;
    transform: scale(1.1);
}

.timeline-item.active .timeline-icon img {
    opacity: 1;
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(190deg) brightness(90%) contrast(80%);
}

.timeline-item.active .timeline-content {
    background: #e3f2fd;
}

.timeline-item.active .timeline-content::before {
    border-right-color: #e3f2fd;
}

.timeline-item.active .status {
    background: #e3f2fd;
    color: #1565c0;
}

.timeline-item.upcoming .timeline-icon {
    border-color: #9e9e9e;
    background: #f5f5f5;
}

.timeline-item.upcoming .status {
    background: #f5f5f5;
    color: #616161;
}

@media (max-width: 768px) {
    .progress-modal .modal-content {
        margin: 2vh auto;
        padding: 1.5rem;
        max-height: 96vh;
    }

    .progress-modal .modal-content h2 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .journey-timeline {
        padding: 0 0.5rem;
    }

    .timeline-content {
        padding: 1rem;
    }

    .timeline-content h3 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    .timeline-detail {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    .progress-modal .modal-content {
        margin: 0;
        padding: 1rem;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }

    .journey-timeline {
        margin-top: 1.5rem;
    }

    .timeline-item {
        gap: 1rem;
    }

    .timeline-icon {
        width: 28px;
        height: 28px;
    }

    .timeline-icon img {
        width: 14px;
        height: 14px;
    }

    .timeline-content h3 {
        font-size: 0.95rem;
    }

    .timeline-detail {
        font-size: 0.8rem !important;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.lightbox.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    display: block;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    transform: scale(0.95);
    transition: transform 0.3s ease-in-out;
}

.lightbox.show img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Room Selection Interface */
.form-group.full-width {
    flex: 1 1 100%;
    width: 100%;
}

.room-selection {
    background-color: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.room-type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--primary-brown-light);
}

.room-type-label {
    flex: 3;
}

.room-type-count {
    flex: 1;
    text-align: center;
}

.room-type-capacity {
    flex: 1;
    text-align: center;
}

.room-type-price {
    flex: 2;
    text-align: right;
}

.room-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(210, 180, 140, 0.2);
}

.room-option-label {
    flex: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.room-option-count {
    flex: 1;
    text-align: center;
}

.room-option-count input {
    width: 50px;
    text-align: center;
    padding: 0.25rem;
    border: 1px solid var(--primary-brown-light);
    border-radius: 4px;
    font-size: 0.9rem;
}

.room-option-capacity {
    flex: 1;
    text-align: center;
    font-weight: 500;
}

.room-option-price {
    flex: 2;
    text-align: right;
    font-weight: 500;
    color: var(--primary-brown-dark);
}

.room-summary {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--primary-brown-light);
}

.room-capacity-info {
    font-weight: 500;
    color: var(--primary-brown-dark);
}

.capacity-warning {
    color: #e53e3e;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.capacity-success {
    color: #38a169;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .room-type-header,
    .room-option {
        font-size: 0.85rem;
    }
    
    .room-option-count input {
        width: 40px;
        font-size: 0.8rem;
    }
}

.number-input-wrapper {
    position: relative;
    width: 100%;
}

.number-input-wrapper input[type="number"] {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border: 1px solid var(--primary-brown-light);
    border-radius: 8px;
    background-color: var(--white);
    color: var(--text-dark);
    font-family: inherit;
    appearance: textfield;
    -moz-appearance: textfield;
}

.number-input-wrapper input[type="number"]::-webkit-outer-spin-button,
.number-input-wrapper input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.number-input-wrapper input[type="number"]:hover,
.number-input-wrapper input[type="number"]:focus {
    border-color: var(--primary-brown);
    outline: none;
}