:root {
    /* Premium Light Mode Palette */
    --bg-primary: #F8FAFC;
    --bg-surface: #FFFFFF;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --accent-color: #38BDF8;
    --accent-hover: #0284C7;
    --accent-glow: rgba(56, 189, 248, 0.3);
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.8) 100%);
    --gradient-text: linear-gradient(90deg, #0284C7, #38BDF8);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

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

/* Premium Hero Background and Overlay */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    margin-top: 0; 
    background-image: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-inline: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse-icon {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 12px;
    margin-top: 8px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

/* Glassmorphism Utilities */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--text-primary);
    line-height: 1.2;
    font-weight: 700;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.desktop-nav a:hover {
    color: var(--accent-hover);
}

.admin-link {
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color) !important;
}

.admin-link:hover {
    background: var(--accent-color);
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .desktop-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-surface);
        flex-direction: column;
        padding: 1rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0,0,0,0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.3s ease-in-out;
    }

    .desktop-nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .logo img {
        height: 36px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-glow {
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-glow:hover {
    box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-block {
    width: 100%;
}

.tours-section {
    padding: 5rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    width: 320px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.testimonial-card .stars {
    margin-bottom: 1rem;
}

.testimonial-card .quote {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-card .author {
    display: flex;
    flex-direction: column;
}

.testimonial-card .author strong {
    color: var(--text-primary);
    font-size: 1.1rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.tour-card {
    background: var(--bg-surface);
    border-radius: 24px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.tour-image-placeholder {
    height: 200px;
    border-radius: 16px;
    background: linear-gradient(135deg, #E0F2FE, #F0F9FF);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #BAE6FD;
}

.tour-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.tour-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.tour-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-color);
}

.tour-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: var(--bg-primary);
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
}

.mt-auto {
    margin-top: auto;
}

.mt-half {
    margin-top: 0.5rem;
}

.tour-info-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.info-pill {
    background: var(--bg-primary);
    color: var(--text-secondary);
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.tour-features {
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.tour-features strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.tag-success {
    background: #DCFCE7;
    color: #166534;
}

.tag-danger {
    background: #FEE2E2;
    color: #991B1B;
}

.btn-book {
    margin-top: 1.5rem;
}

/* Skeletons */
.tour-skeleton {
    height: 350px;
    border-radius: 24px;
    background: linear-gradient(90deg, #F1F5F9 25%, #E2E8F0 50%, #F1F5F9 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    width: 90%;
    max-width: 500px;
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.close-btn:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price-tag {
    color: var(--accent-color);
    font-weight: 600;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255,255,255,0.8);
    transition: var(--transition-fast);
}

input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.ticket-counter {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
}

.qty-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 0.8rem;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.qty-btn:hover {
    background: rgba(0,0,0,0.05);
}

.ticket-counter input {
    flex: 1;
    border: none;
    border-radius: 0;
    text-align: center;
    background: transparent;
    font-weight: 600;
    padding: 0.8rem 0;
}

.ticket-counter input:focus {
    box-shadow: none;
}

.booking-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.booking-summary span {
    color: var(--text-secondary);
}

.booking-summary strong {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.btn-pay {
    position: relative;
    overflow: hidden;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hidden {
    display: none !important;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.secure-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* About Section */
.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-list i {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: #94a3b8;
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #64748b;
    font-size: 0.9rem;
}

/* Details Modal */
.details-modal-content {
    padding: 0 !important;
    overflow: hidden;
    max-width: 600px !important;
}

.details-modal-content .close-btn {
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.5);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}


/* ── Wizard Modal ──────────────────────────────────────────────────────────── */
.wizard-modal {
  padding: 0 !important;
  max-width: 560px !important;
  overflow: hidden;
}
.wizard-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  background: rgba(248,250,252,0.8);
}
.wizard-tour-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wizard-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.wstep {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #94a3b8;
  white-space: nowrap;
}
.wstep span {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}
.wstep.active { color: var(--accent-color); }
.wstep.active span { border-color: var(--accent-color); background: var(--accent-color); color: white; }
.wstep.done span { border-color: #10b981; background: #10b981; color: white; }
.wstep.done { color: #10b981; }
.wstep-line { flex: 1; height: 2px; background: #e2e8f0; margin: 0 6px; }
.wizard-panel { display: none; padding: 20px 24px 24px; max-height: 70vh; overflow-y: auto; }
.wizard-panel.active { display: block; }

/* Tier Counters */
.tier-counters { border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; overflow: hidden; }
.tier-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.tier-row:last-child { border-bottom: none; }
.tier-label { font-weight: 600; font-size: 0.9rem; }
.tier-price { font-size: 0.78rem; color: var(--text-secondary); margin-top: 2px; }
.qty-control {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.1rem; font-weight: 700;
}
.qty-control .qty-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  background: var(--bg-primary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem;
  transition: var(--transition-fast);
}
.qty-control .qty-btn:hover { background: var(--accent-color); color: white; border-color: var(--accent-color); }

/* Date Pills */
.date-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.date-pill {
  padding: 6px 14px; border-radius: 20px;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  background: none; cursor: pointer; font-size: 0.82rem;
  transition: var(--transition-fast);
}
.date-pill.active, .date-pill:hover { background: var(--accent-color); color: white; }

/* Payment Options */
.payment-options { display: flex; gap: 12px; }
.payment-option {
  flex: 1; padding: 12px 16px; border-radius: 12px;
  border: 2px solid rgba(0,0,0,0.08);
  cursor: pointer; font-size: 0.88rem; font-weight: 500;
  transition: var(--transition-fast);
}
.payment-option:has(input:checked), .payment-option.active {
  border-color: var(--accent-color); background: rgba(56,189,248,0.06);
}
.payment-option input { display: none; }

/* ── Admin Tabbed Tour Form ────────────────────────────────────────────────── */
.ttabs { display: flex; flex-direction: column; }
.ttab-nav {
  display: flex; gap: 4px; flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px; margin-bottom: 20px;
}
.ttab-btn {
  padding: 6px 14px; border-radius: 8px; border: 1px solid transparent;
  background: none; cursor: pointer; font-size: 0.82rem; font-weight: 500;
  color: var(--text-muted); transition: all 0.15s;
}
.ttab-btn:hover { background: var(--surface); }
.ttab-btn.active { background: var(--primary); color: white; border-color: var(--primary); }
.ttab-panel { display: none; }
.ttab-panel.active { display: block; }

/* ── Gallery Dots ──────────────────────────────────────────────────────────── */
.gallery-nav {
  display: flex; gap: 6px; padding: 8px 16px;
  background: rgba(248,250,252,0.9);
}
.gdot {
  width: 44px; height: 44px; border-radius: 8px;
  border: 2px solid transparent;
  background-size: cover; background-position: center;
  cursor: pointer; transition: var(--transition-fast);
}
.gdot.active { border-color: var(--accent-color); }

/* ── Itinerary Accordion (Public) ─────────────────────────────────────────── */
.itinerary-accordion {
  border: 1px solid rgba(0,0,0,0.07); border-radius: 10px;
  margin-bottom: 8px; cursor: pointer; overflow: hidden;
}
.itinerary-acc-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; font-size: 0.9rem;
}
.acc-arrow { transition: transform 0.2s; }
.itinerary-accordion.open .acc-arrow { transform: rotate(180deg); }
.itinerary-acc-body {
  display: none; padding: 0 16px 16px;
  color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6;
}
.itinerary-accordion.open .itinerary-acc-body { display: block; }

/* btn-secondary */
.btn-secondary {
  background: rgba(0,0,0,0.05);
  color: var(--text-secondary);
}
.btn-secondary:hover { background: rgba(0,0,0,0.1); }

/* ── Comprehensive Mobile Responsiveness ───────────────────────────────────── */
@media (max-width: 768px) {
    /* Hero Section */
    .hero { padding: 6rem 1.5rem 3rem; }
    .hero h1 { font-size: clamp(2.5rem, 8vw, 3.5rem); }
    .hero p { font-size: 1.1rem; padding: 0 10px; }
    
    /* Layout & Padding */
    .section-header h2 { font-size: 2rem; }
    section { padding: 3rem 1rem !important; }
    
    /* Grids & Cards */
    .tours-grid, .features-grid, .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .tour-card, .testimonial-card, .feature-card {
        width: 100%;
        margin: 0 auto;
    }
    
    /* Images */
    .tour-image-placeholder, img {
        max-width: 100%;
        height: auto;
    }
    .tour-image-placeholder { height: 180px; }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-col {
        align-items: center;
    }
    .social-icons {
        justify-content: center;
    }
    
    /* Modals */
    .details-modal-content, .wizard-modal {
        width: 95% !important;
        margin: 10px auto;
        max-height: 90vh;
    }
    .wizard-panel { padding: 16px; }
    .payment-options { flex-direction: column; }
    .tier-row { flex-direction: column; align-items: flex-start; gap: 10px; }
    .qty-control { align-self: flex-end; }
}
