:root {
    /* UAE-Inspired Enhanced Color Palette */

    /* Primary Palette - Desert & Gold Tones with Sunset Enhancement */
    --primary: #C8A882;        /* Warm desert gold - main brand color */
    --primary-light: #E5D4B7;  /* Light desert sand */
    --primary-dark: #A0865B;   /* Deep desert bronze */

    /* Secondary Palette - Arabian Blue Tones */
    --secondary: #4A90B8;      /* Arabian gulf blue */
    --secondary-light: #7AB3D3; /* Sky blue */
    --secondary-dark: #2E5A7A;  /* Deep ocean blue */

    /* Rich Purple Gradient Base - From Reference */
    --purple-start: #667eea;   /* Rich purple blue */
    --purple-mid: #764ba2;     /* Deep purple */
    --purple-bright: #f093fb;  /* Bright pink-purple */
    --purple-coral: #f5576c;   /* Coral-pink */

    /* Enhanced with Sunset & Nature Accents */
    --accent-warm: #F5A623;    /* Bright sunset yellow-orange for excitement */
    --accent-sunset: #FF6B4A;  /* Vibrant sunset orange for hero areas */
    --nature-primary: #6B8E5A; /* Desert plant green for eco-tourism */

    /* CTA & Booking - Rich Purple Theme */
    --cta-primary: #667eea;    /* Rich purple for primary CTAs */
    --cta-secondary: #f093fb;  /* Bright pink-purple for secondary CTAs */
    --cta-success: #6B8E5A;    /* Nature green for confirmations */

    /* Cooling & Summer Theme */
    --summer-blue: #0EA5E9;    /* Cooling theme */
    --cooling-mint: #10B981;   /* Summer comfort */

    /* Neutrals - Sand & Stone */
    --neutral-50: #FDFCFA;     /* Pure white with warmth */
    --neutral-100: #F7F4F0;    /* Lightest sand */
    --neutral-200: #EDE6DD;    /* Light sand */
    --neutral-300: #D6C7B5;    /* Medium sand */
    --neutral-400: #B8A488;    /* Warm stone */
    --neutral-500: #8B7B65;    /* Stone */
    --neutral-600: #6B5B47;    /* Dark stone */
    --neutral-700: #4D3F2F;    /* Deep stone */
    --neutral-800: #2F2419;    /* Almost black stone */
    --neutral-900: #1A140C;    /* Rich black */

    /* Semantic Colors - Using enhanced palette */
    --success: #6B8E5A;        /* Nature green */
    --warning: #F5A623;        /* Bright sunset yellow */
    --error: #B85450;          /* Desert rose red */
    --info: #4A90B8;          /* Arabian blue */

    /* Text Colors */
    --text-primary: #2F2419;   /* Rich dark stone */
    --text-secondary: #6B5B47; /* Dark stone */
    --text-muted: #8B7B65;     /* Stone */
    --text-white: #FFFFFF;

    /* Background Colors */
    --background: #FDFCFA;     /* Warm white */
    --bg-primary: #FDFCFA;     /* Warm white */
    --bg-secondary: #F7F4F0;   /* Light sand */
    --bg-tertiary: #EDE6DD;    /* Light sand */
    --border-light: #D6C7B5;   /* Medium sand */
    --shadow-color: rgba(47, 36, 25, 0.12); /* Warm shadow */

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;

    /* Shadows */
    --shadow-sm: 0 1px 3px var(--shadow-color);
    --shadow-md: 0 2px 16px var(--shadow-color);
    --shadow-lg: 0 6px 24px rgba(47, 36, 25, 0.18);

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Header */
.header {
    background: var(--background);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2px;
}

.tagline {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 400;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

/* Hide desktop navigation on mobile screens */
@media (max-width: 768px) {
    .nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        position: relative;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;
        width: 200px;
        background: var(--background);
        flex-direction: column;
        padding: var(--space-lg);
        box-shadow: var(--shadow-md);
        border-radius: 0 0 12px 12px;
        z-index: 1000;
        list-style: none;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-list.active {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-list li {
        margin-bottom: var(--space-md);
    }

    .nav-list li:last-child {
        margin-bottom: 0;
    }

    .nav-list a {
        font-size: 16px;
        padding: var(--space-sm) 0;
        border-bottom: 1px solid var(--neutral-200);
        display: block;
        transition: all 0.2s ease;
    }

    .nav-list a:hover {
        color: var(--primary);
        background: var(--neutral-100);
        padding-left: var(--space-sm);
        border-radius: 8px;
    }

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

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

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

.nav-list a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
}

.nav-list a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 3px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex !important;
        z-index: 1001;
    }
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Summer Alert Banner */
.summer-alert {
    background: linear-gradient(135deg, var(--summer-blue), var(--cooling-mint));
    color: white;
    padding: 16px;
    text-align: center;
    margin: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1 !important; }
    50% { opacity: 0.95 !important; }
}

/* Hero Section - Rich Purple Gradient with Sunset Touches */
.hero {
    height: 60vh;
    background: linear-gradient(135deg, var(--purple-start) 0%, var(--purple-mid) 30%, var(--purple-bright) 70%, var(--accent-sunset) 85%, var(--purple-coral) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(245, 166, 35, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 74, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--cta-primary);
    color: white;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
}

.cta-button:hover {
    background: var(--cta-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Section Styles */
.section {
    padding: var(--space-2xl) 0;
}

.section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: var(--space-2xl);
    color: var(--text-primary);
}

/* Card System - Sliding Animation */
.info-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.info-slider-container {
    width: 100%;
    position: relative;
}

.info-slider-track {
    display: flex;
    gap: var(--space-md);
    animation: slideLeft 15s linear infinite;
    will-change: transform;
}

.info-slider-track:hover {
    animation-play-state: paused;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.info-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: 1px solid var(--border-light);
    flex-shrink: 0;
    color: white;
}

.experience-card, .emirate-card, .cooling-card {
    background: var(--background);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: 1px solid var(--border-light);
    flex-shrink: 0;
}

.info-card {
    padding: var(--space-lg);
}

.experience-card, .emirate-card {
    padding: 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Mobile card dimensions - smaller and narrower */
.info-card {
    width: 180px;
    min-height: 120px;
    padding: var(--space-sm);
}

.info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.experience-card:hover, .emirate-card:hover, .cooling-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.info-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Vibrant card color themes - individual gradients */
.info-card[data-modal="visa"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
}

.info-card[data-modal="alcohol"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
}

.info-card[data-modal="security"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
}

.info-card[data-modal="weather"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
}

.info-card[data-modal="culture"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
}

.info-card[data-modal="currency"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
}

.info-card[data-modal="transport"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
}

.info-card[data-modal="health"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
}

.info-card h3 {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.card-icon {
    font-size: 32px;
    margin-bottom: var(--space-md);
}

.experience-card h4, .emirate-card h3, .cooling-card h3 {
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.info-card h3 {
    font-weight: 600;
    color: inherit;
    margin: 0;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.info-card p, .experience-card p, .emirate-card p, .cooling-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Experience Cards - Horizontal Scroll */
.emirate-section {
    margin-bottom: var(--space-2xl);
}

.emirate-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.experience-scroll {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: var(--space-sm);
}

.experience-scroll::-webkit-scrollbar {
    display: none;
}

.experience-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    position: relative;
}

.experience-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.book-btn, .category-btn, .tab-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
    border: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    margin-top: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.book-btn:hover, .category-btn:hover, .tab-btn:hover {
    background: linear-gradient(135deg, #556ce6 0%, #6b4c96 30%, #e085f5 70%, #f24966 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Emirates Grid */
.emirates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: var(--space-md) !important;
}

/* Summer Section - Rich Purple with Nature Accents */
.summer-section {
    background: linear-gradient(135deg, var(--purple-start) 0%, var(--nature-primary) 40%, var(--accent-sunset) 70%, var(--purple-bright) 100%);
    color: white;
}

.summer-section h2 {
    color: white;
}

.cooling-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.cooling-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    position: relative;
}

.cooling-badge {
    background: var(--nature-primary);
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
}

/* Booking Section */
.booking-widget {
    background: var(--background);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.booking-widget h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.hotel-categories {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.category-btn {
    background: var(--secondary);
    flex: 1;
    min-width: 120px;
}

.dining-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-light);
}

.tab-btn {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    border-bottom: 2px solid transparent;
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    font-weight: 500;
    margin-top: 0;
}

.tab-btn.active, .tab-btn:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: transparent;
}

.dining-content {
    min-height: 200px;
    padding: var(--space-lg);
    background: #FAFAFA;
    border-radius: var(--radius-sm);
}

/* Modal System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 36, 25, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.modal-container {
    background: var(--background);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: var(--background);
    z-index: 10;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: var(--space-sm);
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: var(--border-light);
}

.modal-content {
    padding: var(--space-lg);
}

.info-section h4 {
    font-weight: 600;
    margin: var(--space-lg) 0 var(--space-md) 0;
    color: var(--text-primary);
}

.info-section ul {
    margin-left: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.info-section li {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

/* Modal Section Styling - Reference Site Structure */
.modal-section {
    margin-bottom: var(--space-xl);
}

.modal-section h4 {
    text-align: center;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-lg);
}

.modal-section h5 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    margin-top: var(--space-lg);
}

.modal-section h6 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

/* Visa Grid Styling */
.visa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.visa-card {
    background: var(--background);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 2px solid var(--border-light);
    transition: all 0.2s ease;
}

.visa-card.easy {
    border-color: var(--success);
    background: linear-gradient(135deg, var(--background) 0%, rgba(107, 142, 90, 0.05) 100%);
}

.visa-card.advance {
    border-color: var(--warning);
    background: linear-gradient(135deg, var(--background) 0%, rgba(212, 149, 107, 0.05) 100%);
}

.visa-flag {
    background: var(--primary);
    color: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: var(--space-sm);
}

/* Safety Stats Styling */
.safety-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.stat-item {
    text-align: center;
    background: var(--bg-secondary);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.requirement-card {
    background: var(--bg-secondary);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

/* Rule Cards */
.medication-rules, .rule-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.rule-card {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 2px solid var(--border-light);
}

.rule-card.critical {
    border-color: var(--error);
    background: linear-gradient(135deg, var(--background) 0%, rgba(184, 84, 80, 0.05) 100%);
}

.rule-card.allowed {
    border-color: var(--success);
    background: linear-gradient(135deg, var(--background) 0%, rgba(107, 142, 90, 0.05) 100%);
}

/* Emergency Contacts */
.emergency-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-card {
    background: var(--bg-secondary);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.contact-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin: var(--space-sm) 0;
}

.contact-note {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Scam Warnings */
.scam-warnings {
    display: grid;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.scam-card {
    background: var(--bg-secondary);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--warning);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    text-align: center;
    padding: var(--space-xl);
}

.footer p {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design - Mobile First */
@media (min-width: 768px) {
    /* Desktop card dimensions - wider */
    .info-card {
        width: 200px;
        min-height: 140px;
        padding: var(--space-md);
    }

    .emirates-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .cooling-features {
        grid-template-columns: repeat(3, 1fr);
    }

    .hotel-categories {
        justify-content: center;
    }

    .category-btn {
        flex: 0 1 auto;
    }
}

@media (min-width: 1024px) {
    .info-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .experience-scroll {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        overflow-x: visible;
    }

    .emirates-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .hero-content h1 {
        font-size: 56px;
    }
}

/* Card Badges */
.card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: white;
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 8px;
  font-weight: 600;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  box-shadow: 0 1px 3px rgba(102, 126, 234, 0.3);
  backdrop-filter: blur(10px);
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.2;
}

/* Weather Widget Styles */
.weather-widget {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 2px 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  z-index: 3;
  transition: all 0.3s ease;
  min-width: 30px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px !important;
  line-height: 1;
}

.weather-widget:hover {
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.weather-widget .temp {
  font-size: 10px !important;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  line-height: 1;
}

.weather-widget.loading .temp {
  color: var(--text-secondary);
}

.weather-widget.error .temp {
  color: var(--error-red);
}

/* Mobile optimizations for cards */
@media (max-width: 768px) {
    .card-badge {
        top: 6px;
        left: 6px;
        padding: 1px 4px;
        font-size: 7px;
        border-radius: 6px;
        max-width: 60px;
    }

    .weather-widget {
        top: 6px;
        right: 6px;
        padding: 1px 4px;
        border-radius: 6px;
        min-width: 24px;
        height: 14px;
    }

    .weather-widget .temp {
        font-size: 8px !important;
    }

    .info-slider-track {
        animation-duration: 15s;
    }

    .info-card {
        width: 160px; /* Adjusted for mobile sliding */
        min-height: 120px; /* Shorter height for mobile */
    }

    .card-icon {
        font-size: 28px; /* Smaller icons on mobile */
    }

    .info-card h3 {
        font-size: 16px;
        margin: 0;
        padding: 0;
    }

    .info-card p {
        font-size: 13px;
    }
}


    .header {
        position: relative;
    }

    .hero {
        margin-top: 0;
    }

    .summer-alert {
        margin: var(--space-md) 0;
        padding: var(--space-md);
        display: block;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .modal-container {
        margin: var(--space-md);
        width: calc(100% - 2 * var(--space-md));
        max-height: 90vh;
    }

    .booking-widget {
        padding: var(--space-lg);
    }

    .dining-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .dining-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        font-size: 12px;
        padding: var(--space-sm) var(--space-md);
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Mobile: Two Cards Per Row Grid Layout */
    .experience-scroll {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: var(--space-md) !important;
        overflow-x: visible !important;
        scroll-snap-type: none !important;
        padding-bottom: 0 !important;
    }

    .experience-card {
        flex: none !important;
        scroll-snap-align: none !important;
        border-radius: 12px !important;
        border: none !important;
        box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05) !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .experience-image {
        height: 120px !important;
        border-radius: 12px 12px 0 0 !important;
        margin-bottom: 0 !important;
    }

    .experience-card h4 {
        font-size: 14px !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
        color: #222222 !important;
        margin: 8px 8px 4px 8px !important;
    }

    .experience-card p {
        font-size: 12px !important;
        font-weight: 400 !important;
        color: #717171 !important;
        margin: 0 8px 8px 8px !important;
        line-height: 1.2 !important;
    }

    .book-btn {
        margin: 0 8px 8px 8px !important;
        padding: 6px 12px !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        border-radius: 6px !important;
    }

    .book-btn.purple {
        background: transparent !important;
        color: #667eea !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
        font-weight: 600 !important;
    }

    .book-btn.green {
        background: transparent !important;
        color: #28a745 !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
        font-weight: 600 !important;
    }

    .card-details {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin: 8px !important;
        padding-top: 4px !important;
        border-top: 1px solid #f0f0f0 !important;
    }

    .duration {
        font-size: 12px !important;
        font-weight: 400 !important;
        color: #717171 !important;
    }

    .card-image-container {
        position: relative !important;
        width: 100% !important;
        height: 120px !important;
        overflow: hidden !important;
        border-radius: 12px 12px 0 0 !important;
    }

    .image-overlay-title {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        background: rgba(0, 0, 0, 0.5) !important;
        padding: 6px 12px !important;
        border-radius: 20px !important;
        white-space: nowrap !important;
    }

    .image-overlay-title h4, .image-overlay-title h3 {
        color: white !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        margin: 0 !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
        white-space: nowrap !important;
    }

    .hotel-categories {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .category-btn {
        width: 100%;
        text-align: center;
    }

    /* Touch-friendly spacing */
    .info-card, .experience-card, .emirate-card {
        min-height: 44px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Improved mobile text sizes */
    .section h2 {
        font-size: 24px;
        margin-bottom: var(--space-lg);
    }

    .emirate-section h3 {
        font-size: 20px;
    }

    /* Mobile-optimized modal */
    .modal-header {
        position: sticky;
        top: 0;
        z-index: 20;
        border-bottom: 1px solid var(--border-light);
    }

    .modal-content {
        padding: var(--space-md);
    }

    /* Mobile optimizations for new modal styles */
    .visa-grid, .safety-stats, .requirements-grid,
    .medication-rules, .emergency-contacts {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: var(--space-md);
    }

    .stat-number {
        font-size: 24px;
    }

    .contact-number {
        font-size: 20px;
    }
}
/* Enhanced Weather Modal Styles */
.timing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.season-card {
    background: var(--bg-primary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--bg-secondary);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.season-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.season-card.peak {
    border-color: var(--success);
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(107, 142, 90, 0.05) 100%);
}

.season-card.shoulder {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(200, 168, 130, 0.05) 100%);
}

.season-card.hot {
    border-color: var(--error);
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(184, 84, 80, 0.05) 100%);
}

.season-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-white);
}

.season-badge.best {
    background: var(--success);
}

.season-badge.good {
    background: var(--primary);
}

.season-badge.challenging {
    background: var(--error);
}

.monthly-guide {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.month-group {
    background: var(--bg-secondary);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    transition: background-color 0.3s ease;
}

.month-group:hover {
    background: var(--bg-tertiary);
}

.month-group.excellent {
    border-left-color: var(--success);
}

.month-group.very-good {
    border-left-color: var(--primary);
}

.month-group.good {
    border-left-color: var(--accent-warm);
}

.month-group.challenging {
    border-left-color: var(--error);
}

.activity-timing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.activity-card {
    background: var(--bg-secondary);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: background-color 0.3s ease;
}

.activity-card:hover {
    background: var(--bg-tertiary);
}

.timing-tips {
    display: grid;
    gap: var(--space-md);
}

.timing-tips .tip {
    background: var(--bg-secondary);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.modal-section.highlight {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-top: var(--space-lg);
}

/* Fix bullet point spacing - bring text closer to bullets */
.timing-grid ul,
.monthly-guide ul,
.activity-timing ul,
.timing-tips ul,
.modal-section ul,
.info-section ul {
    padding-left: 20px;
    margin-left: 0;
}

.timing-grid li,
.monthly-guide li,
.activity-timing li,
.timing-tips li,
.modal-section li,
.info-section li {
    margin-bottom: 4px;
    line-height: 1.4;
}

/* Mobile responsiveness for weather modal */
@media (max-width: 767px) {
    .timing-grid {
        grid-template-columns: 1fr;
    }

    .activity-timing {
        grid-template-columns: 1fr;
    }

    .season-badge {
        position: static;
        display: inline-block;
        margin: var(--space-sm) 0;
    }

    /* Tighter spacing on mobile */
    .timing-grid ul,
    .monthly-guide ul,
    .activity-timing ul,
    .timing-tips ul,
    .modal-section ul,
    .info-section ul {
        padding-left: 16px;
    }
}

/* Fix season card bullet alignment */
.season-card ul {
    text-align: left;
    margin: var(--space-md) auto 0;
    max-width: fit-content;
    padding-left: 16px;
}

.season-card li {
    margin-bottom: 4px;
    line-height: 1.4;
}

/* Digital Products Section */
.digital-products-section {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    position: relative;
    overflow: hidden;
}

.digital-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(118, 75, 162, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.digital-cta-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: var(--space-2xl);
    background: linear-gradient(135deg, var(--purple-start), var(--purple-mid));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
}

.digital-cta-title:hover {
    transform: scale(1.02);
}

@media (max-width: 767px) {
    .digital-cta-title {
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    .digital-cta-title {
        font-size: 16px !important;
    }
}

.products-grid {
    display: flex;
    gap: var(--space-md);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    justify-content: center;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

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

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 180px;
    flex: 0 0 280px;
    scroll-snap-align: start;
    min-width: 280px;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.product-card.featured {
    border: 2px solid var(--cta-primary);
    background: linear-gradient(135deg, var(--background) 0%, rgba(102, 126, 234, 0.02) 100%);
}

.product-card.bundle {
    border: 2px solid var(--accent-warm);
    background: linear-gradient(135deg, var(--background) 0%, rgba(245, 166, 35, 0.03) 100%);
}

.product-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--cta-primary);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.bundle-badge {
    background: var(--accent-warm);
}

.product-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.product-name-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-name-overlay h3 {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: white !important;
    margin: 0 !important;
    text-align: center !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5) !important;
    display: inline-block !important;
    white-space: nowrap !important;
}

.price-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 35px;
    height: 25px;
    background: var(--background);
    border-radius: var(--radius-sm);
    z-index: 2;
}

.product-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.8) 100%);
    padding: 1rem;
    color: white;
    text-align: center;
}

.product-pricing {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    padding: 1px 4px;
    margin: 0;
    z-index: 2;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 auto;
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    filter: saturate(1.1) brightness(1.05);
    -webkit-color-scheme: normal;
    color-scheme: normal;
    forced-color-adjust: none;
}

.product-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 100, 250, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 100, 200, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.product-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 16px 48px rgba(102, 126, 234, 0.2);
}

.product-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.product-icon {
    font-size: 48px;
    margin-bottom: var(--space-md);
    display: block;
}

.product-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.product-tagline {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

.product-features {
    margin-bottom: var(--space-xl);
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    padding: var(--space-sm) 0;
    font-size: 15px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--bg-secondary);
    display: flex;
    align-items: center;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-pricing {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.price-original {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: var(--space-sm);
}

.price-current {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.price-save {
    background: var(--success);
    color: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.bundle-pricing .price-current {
    color: var(--accent-warm);
}

.product-btn {
    width: 100%;
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    margin: 0;
    box-shadow: var(--shadow-sm);
}

.product-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
}

.product-btn.primary:hover {
    background: linear-gradient(135deg, #556ce6 0%, #6b4c96 30%, #e085f5 70%, #f24966 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.product-btn.secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
}

.product-btn.secondary:hover {
    background: linear-gradient(135deg, #556ce6 0%, #6b4c96 30%, #e085f5 70%, #f24966 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Beat the Heat Modal Button Styles */
.btn.btn-primary, .btn.btn-secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    margin: 8px 8px 8px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn.btn-primary:hover, .btn.btn-secondary:hover {
    background: linear-gradient(135deg, #556ce6 0%, #6b4c96 30%, #e085f5 70%, #f24966 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: white;
}

.product-btn.bundle-btn {
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-sunset) 100%);
    color: white;
    font-size: 18px;
    padding: var(--space-lg) var(--space-xl);
}

.product-btn.bundle-btn:hover {
    background: linear-gradient(135deg, var(--accent-sunset) 0%, var(--accent-warm) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.3);
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    background: var(--background);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.trust-icon {
    font-size: 20px;
    margin-right: var(--space-sm);
}

.trust-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

/* Responsive Design for Digital Products */
@media (min-width: 768px) {
    .products-grid {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .product-card.bundle {
        flex: 1 1 100%;
        max-width: 400px;
    }

    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 1000px;
        margin: 0 auto;
    }

    .product-card.featured {
        flex: 0 0 300px;
        display: flex;
        flex-direction: column;
    }

    .product-card.featured .product-features {
        flex-grow: 1;
    }

    .product-card.bundle {
        flex: 1 1 100%;
        max-width: 600px;
    }

    .trust-indicators {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .digital-products-section {
        padding: var(--space-xl) 0;
    }

    .products-grid {
        justify-content: space-between;
        gap: var(--space-xs);
        overflow-x: visible;
    }

    .product-card {
        flex: 1;
        min-width: 0;
        width: calc(33.333% - 8px);
        position: relative;
        height: 140px;
        overflow: hidden;
        background: white;
        border-radius: 12px;
        box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    }

    .product-image-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: block;
    }

    .product-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent 0%, rgba(0,0,0,0.8) 100%);
        padding: 0.75rem;
        color: white;
        text-align: center;
    }

    .product-card h3 {
        font-size: 14px;
        margin-bottom: var(--space-xs);
        line-height: 1.2;
    }

    .product-tagline {
        font-size: 11px;
        line-height: 1.2;
        margin-bottom: var(--space-sm);
    }

    .product-pricing {
        position: absolute;
        top: 6px;
        right: 6px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 8px;
        padding: 1px 4px;
        margin: 0;
        z-index: 2;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .price-current {
        font-size: 9px;
        font-weight: 600;
        color: #333;
    }

    .product-btn {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
        color: white;
        border: none;
        font-size: 12px;
        padding: 0.4rem 0.8rem;
        min-height: 36px;
        font-weight: 600;
        border-radius: 20px;
        width: 100%;
        margin-top: 0.3rem;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 6px 24px rgba(102, 126, 234, 0.3);
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        filter: saturate(1.1) brightness(1.05);
        -webkit-color-scheme: normal;
        color-scheme: normal;
        forced-color-adjust: none;
    }

    .product-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 20% 80%, rgba(120, 100, 250, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 100, 200, 0.3) 0%, transparent 50%);
        pointer-events: none;
    }

    .product-btn:hover {
        transform: scale(1.05) translateY(-2px);
        box-shadow: 0 12px 36px rgba(102, 126, 234, 0.2);
    }

    .product-icon {
        font-size: 32px;
        margin-bottom: var(--space-xs);
    }

    .product-name-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .product-name-overlay h3 {
        font-size: 14px !important;
        font-weight: 600 !important;
        color: white !important;
        margin: 0 !important;
        text-align: center !important;
        text-shadow: 0 1px 3px rgba(0,0,0,0.5) !important;
        display: inline-block !important;
        white-space: nowrap !important;
    }
}

/* Progressive Disclosure Booking Section */
.booking-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.booking-main-tabs {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    border-bottom: 2px solid var(--border-light);
}

.main-tab-btn {
    background: transparent;
    border: none;
    padding: var(--space-md) var(--space-xl);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.main-tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
    border-bottom-color: transparent;
    border-radius: var(--radius-sm);
}

.main-tab-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
    border-radius: var(--radius-sm);
}

.booking-content {
    display: none;
}

.booking-content.active {
    display: block;
}

/* Flight Search Form - Booking.com Style */
#flights-content {
    background: white;
    padding: var(--space-lg);
    border-radius: 16px;
    margin-top: var(--space-lg);
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
}

.search-fields {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: var(--space-lg);
}

.search-field {
    position: relative;
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 0;
}

.search-field:last-child {
    border-bottom: none;
}

.search-field label {
    font-weight: 500;
    color: #666;
    margin-bottom: 4px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 8px 0;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    outline: none;
}

.search-field select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 32px;
}

.search-field input::placeholder {
    color: #999;
    font-weight: 400;
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-color: var(--primary);
}

.search-flights-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.search-flights-btn:hover {
    background: linear-gradient(135deg, #556ce6 0%, #6b4c96 30%, #e085f5 70%, #f24966 100%);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.search-flights-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 4px rgba(102, 126, 234, 0.3);
}

.flight-protip,
.hotel-protip {
    text-align: center;
    font-size: 13px;
    color: #2c3e50;
    margin-top: var(--space-md);
    margin-bottom: 0;
    line-height: 1.4;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 8px 20px;
    border-radius: 20px;
    border-left: 3px solid #6f42c1;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hotel-protip {
    margin-top: 0;
    margin-bottom: var(--space-md);
}

/* Hotel Category Tabs */
.hotel-category-tabs {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
    overflow-x: auto;
    padding-bottom: var(--space-xs);
}

.category-tab-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    padding: var(--space-sm) var(--space-md);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.category-tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
    border-color: transparent;
}

.category-tab-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
    border-color: var(--primary);
}

/* Hotel Category Content */
.hotel-category-content {
    display: none;
}

.hotel-category-content.active {
    display: block;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .booking-title {
        font-size: 18px;
    }

    .booking-main-tabs {
        margin-bottom: var(--space-lg);
    }

    .main-tab-btn {
        padding: var(--space-sm) var(--space-md);
        font-size: 14px;
    }

    #flights-content {
        padding: var(--space-md);
        margin: 0 var(--space-sm);
        border-radius: 12px;
    }

    .search-field {
        padding: 12px 0;
    }

    .search-field input,
    .search-field select {
        font-size: 14px;
    }

    .search-flights-btn {
        height: 44px;
        font-size: 14px;
    }

    .flight-protip,
    .hotel-protip {
        font-size: 14px;
        max-width: 450px;
        line-height: 1.4;
        padding: 10px 22px;
    }

    .location-badge {
        font-size: 14px;
        padding: 6px 12px;
        max-width: 160px;
        font-weight: 600;
    }

    .category-badge {
        font-size: 7px;
        padding: 2px 5px;
    }


    .hotel-category-tabs {
        gap: var(--space-xs);
        margin-bottom: var(--space-lg);
        flex-wrap: wrap;
        justify-content: center;
    }

    .category-tab-btn {
        padding: var(--space-xs) var(--space-sm);
        font-size: 11px;
        min-width: auto;
        flex: 0 0 auto;
    }

    .hotels-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* Hotel Cards Styling */
.hotel-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.hotel-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
}

.hotel-content {
    padding: var(--space-lg);
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.stars {
    color: #FFD700;
    font-size: 16px;
    letter-spacing: 2px;
}

.hotel-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.hotel-location {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.hotel-features {
    margin-bottom: var(--space-lg);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-icon {
    color: var(--primary);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.hotel-book-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
    border: none;
    padding: var(--space-md) var(--space-xl);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.hotel-book-btn:hover {
    background: linear-gradient(135deg, #556ce6 0%, #6b4c96 30%, #e085f5 70%, #f24966 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: white;
}

/* Mobile hotel cards */
@media (max-width: 768px) {
    .hotel-image {
        height: 160px;
    }

    .hotel-content {
        padding: var(--space-md);
    }

    .hotel-name {
        font-size: 16px;
    }
}

/* Dining Section */
.dining-tabs {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
    overflow-x: auto;
    padding-bottom: var(--space-xs);
    justify-content: center;
}

.tab-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    padding: var(--space-sm) var(--space-md);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
    border-color: transparent;
}

.tab-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 70%, #f5576c 100%);
    color: white;
    border-color: var(--primary);
}

.dining-content {
    margin-top: var(--space-lg);
}

.venues-list {
    display: grid;
    gap: var(--space-lg);
    margin-top: var(--space-md);
}

@media (min-width: 768px) {
    .venues-list {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

.venue-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.venue-card h4 {
    color: var(--primary);
    margin-bottom: var(--space-xs);
    font-size: 18px;
    font-weight: 600;
}

.venue-type {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.venue-description {
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Dining Tabs */
@media (max-width: 768px) {
    .dining-tabs {
        gap: var(--space-xs);
        margin-bottom: var(--space-lg);
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-btn {
        padding: var(--space-xs) var(--space-sm);
        font-size: 11px;
        min-width: auto;
        flex: 0 0 auto;
    }

    .venue-card {
        padding: var(--space-md);
    }

    .venue-card h4 {
        font-size: 16px;
    }

    .venue-type {
        font-size: 13px;
    }

    .venue-description {
        font-size: 14px;
    }
}

/* About, Contact, Privacy, Terms Sections */
.about-content, .contact-content, .legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h3 {
    color: var(--primary);
    margin-bottom: var(--space-md);
    font-size: 24px;
}

.about-text h4 {
    color: var(--text-primary);
    margin: var(--space-lg) 0 var(--space-md) 0;
    font-size: 18px;
    font-weight: 600;
}

.about-text ul {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.about-text li {
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.contact-method {
    background: var(--bg-secondary);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.contact-method h4 {
    color: var(--primary);
    margin-bottom: var(--space-sm);
    font-size: 16px;
    font-weight: 600;
}

.contact-method p {
    margin: var(--space-xs) 0;
    color: var(--text-primary);
}

.contact-note {
    background: var(--bg-tertiary);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-xl);
    border-left: 4px solid var(--primary);
}

.legal-content h3 {
    color: var(--primary);
    margin: var(--space-xl) 0 var(--space-md) 0;
    font-size: 20px;
    font-weight: 600;
}

.legal-content h4 {
    color: var(--text-primary);
    margin: var(--space-lg) 0 var(--space-sm) 0;
    font-size: 16px;
    font-weight: 600;
}

.legal-content ul {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.legal-content li {
    margin-bottom: var(--space-xs);
    line-height: 1.6;
}

.legal-content p {
    margin: var(--space-md) 0;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .about-text h3 {
        font-size: 20px;
    }

    .about-text h4 {
        font-size: 16px;
    }

    .legal-content h3 {
        font-size: 18px;
    }

    .contact-method {
        padding: var(--space-md);
    }
}

/* Separate Page Styles */
.main-content {
    padding-top: 80px; /* Account for navbar */
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: var(--space-xl) 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: var(--space-md);
    font-size: 2.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

.content-section {
    padding: var(--space-xl) 0;
    min-height: 60vh;
}

.nav-links .active {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 767px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .main-content {
        padding-top: 60px;
    }
}

/* Souk Modal Specific Styles */
.bargaining-tips, .safety-grid {
    display: grid;
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

.tip-card, .safety-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.tip-card h5, .safety-card h5 {
    color: var(--primary);
    margin-bottom: var(--space-md);
    font-size: 16px;
    font-weight: 600;
}

.tip-card ul, .safety-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tip-card li, .safety-card li {
    padding: var(--space-xs) 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
    line-height: 1.5;
}

.tip-card li:last-child, .safety-card li:last-child {
    border-bottom: none;
}

@media (min-width: 768px) {
    .bargaining-tips {
        grid-template-columns: repeat(3, 1fr);
    }

    .safety-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .tip-card, .safety-card {
        padding: var(--space-md);
    }

    .tip-card h5, .safety-card h5 {
        font-size: 14px;
    }
}

/* Beat the Heat Section */
.beat-heat-section {
    background: linear-gradient(135deg, #deb887 0%, #ffb347 25%, #ff8c69 50%, #6495ed 75%, #4169e1 100%);
    padding: var(--space-md) 0;
}

.beat-heat-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.beat-heat-header h2 {
    background: linear-gradient(135deg, #ff8a00 0%, #ff6b35 30%, #ff4757 70%, #c44569 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-sm);
    font-size: 2rem;
    font-weight: 600;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)) drop-shadow(0 1px 2px rgba(255,255,255,0.2));
}

.heat-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
}

/* Comfort Banner */
.comfort-banner {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
    flex-wrap: wrap;
}

.temp-indicator, .discount-indicator, .family-indicator {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: white;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid var(--primary);
}

.temp-icon, .discount-icon, .family-icon {
    background: var(--primary);
    color: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}

.temp-text, .discount-text, .family-text {
    font-weight: 600;
    color: var(--text-primary);
}

/* Indoor Escapes Grid */
.indoor-escapes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.escape-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.escape-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.escape-image {
    position: relative;
    height: 150px;
    overflow: hidden;
}

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

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


.location-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    white-space: nowrap;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.category-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: linear-gradient(135deg, #6f42c1, #8b5cf6);
    color: white;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-size: 9px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.escape-content {
    padding: var(--space-md);
}

.escape-content h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    font-size: 1.1rem;
    font-weight: 600;
}

.escape-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
    font-size: 0.85rem;
}

.escape-features {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.feature-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 4px 6px;
    border-radius: var(--radius-xs);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.feature-badge.family {
    background: #dcfce7;
    color: #166534;
}

.feature-badge.discount {
    background: #fef3c7;
    color: #92400e;
}

.feature-badge.luxury {
    background: #fae8ff;
    color: #86198f;
}

.feature-badge.premium {
    background: #f3f4f6;
    color: #374151;
}

.tab-text {
    font-weight: 600;
    font-size: 14px;
}

.tab-stat {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 500;
}

/* Heat Content */
.heat-content {
    margin: var(--space-xl) 0;
}

.heat-category-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.heat-category-header h3 {
    color: var(--primary);
    margin-bottom: var(--space-sm);
    font-size: 1.8rem;
    font-weight: 600;
}

.category-stat {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.heat-attractions {
    display: grid;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.heat-attraction-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.heat-attraction-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.attraction-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.attraction-header h4 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.attraction-badges {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.temp-badge, .discount-badge {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 600;
}

.temp-badge {
    background: #e3f2fd;
    color: #1565c0;
}

.discount-badge {
    background: #fff3e0;
    color: #ef6c00;
}

.attraction-highlight {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.highlight-icon {
    background: var(--primary);
    color: white;
    padding: var(--space-xs);
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-weight: 600;
}

.highlight-text {
    font-weight: 600;
    color: var(--text-primary);
}

.attraction-features {
    margin-bottom: var(--space-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-light);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    background: var(--secondary);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.feature-text {
    color: var(--text-primary);
    line-height: 1.5;
}

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

.heat-book-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.heat-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Summer Benefits */
.summer-benefits {
    margin: var(--space-xl) 0;
    text-align: center;
}

.summer-benefits h3 {
    color: var(--primary);
    margin-bottom: var(--space-xl);
    font-size: 1.8rem;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.benefit-card {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.benefit-icon {
    background: var(--primary);
    color: white;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: var(--space-md);
}

.benefit-card h4 {
    color: var(--primary);
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Summer Adaptations */
.summer-adaptations {
    margin: var(--space-xl) 0;
}

.summer-adaptations h3 {
    color: var(--primary);
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: 1.8rem;
    font-weight: 600;
}

.adaptations-list {
    display: grid;
    gap: var(--space-lg);
    max-width: 800px;
    margin: 0 auto;
}

.adaptation-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary);
}

.adaptation-icon {
    background: var(--primary);
    color: white;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
}

.adaptation-text {
    color: var(--text-primary);
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .beat-heat-header h2 {
        font-size: 1.8rem;
        background: linear-gradient(135deg, #ff8a00 0%, #ff6b35 30%, #ff4757 70%, #c44569 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)) drop-shadow(0 1px 2px rgba(255,255,255,0.2));
    }

    .heat-subtitle {
        font-size: 1rem;
    }

    .indoor-escapes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .escape-image {
        height: 120px;
    }

    .escape-content {
        padding: var(--space-sm);
    }

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

    .escape-description {
        font-size: 0.8rem;
    }

    .feature-badge {
        font-size: 9px;
        padding: 3px 5px;
    }

    .tab-stat {
        font-size: 10px;
    }

    .heat-attraction-card {
        padding: var(--space-lg);
    }

    .attraction-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .attraction-header h4 {
        font-size: 1.3rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .adaptation-item {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }

    .adaptation-icon {
        align-self: center;
    }
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}
