/* ============================================
   LUXURY RESTAURANT GUIDE - PREMIUM STYLING
   ============================================ */

/* CSS Variables */
:root {
    --black: #0A0A0A;
    --charcoal: #151515;
    --gold: #D4AF37;
    --warm-white: #FAF9F6;
    --burgundy: #5E1224;
    --transparent-gold: rgba(212, 175, 55, 0.1);
    --transparent-white: rgba(250, 249, 246, 0.05);
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & GLOBAL STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--black);
    color: var(--warm-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-family: var(--font-serif);
    color: var(--gold);
    letter-spacing: 0.1em;
}

.logo-icon {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--warm-white);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    position: relative;
    transition: var(--transition);
}

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

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

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

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    cursor: pointer;
}

.nav-hamburger span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--burgundy));
    width: 0%;
    z-index: 999;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(94, 18, 36, 0.3), rgba(212, 175, 55, 0.1)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(212,175,55,0.03)" stroke-width="0.5"/></pattern></defs><rect width="1000" height="1000" fill="url(%23grid)" /></svg>');
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    font-family: var(--font-serif);
    color: var(--warm-white);
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
    font-weight: 300;
}

.hero-counters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.counter {
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    animation: fadeInUp 1.2s ease-out;
}

.counter-value {
    font-size: 2.5rem;
    font-family: var(--font-serif);
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 0.8rem;
    color: var(--warm-white);
    letter-spacing: 0.05em;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    cursor: pointer;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.8s forwards;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--warm-white);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 1rem auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--gold);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

/* ============================================
   EXECUTIVE SUMMARY
   ============================================ */

.executive-summary {
    background: linear-gradient(180deg, rgba(21, 21, 21, 0.5), rgba(94, 18, 36, 0.1));
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.summary-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.1);
    transition: var(--transition-slow);
    z-index: -1;
}

.summary-card:hover::before {
    left: 0;
}

.summary-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
}

.summary-card.highlight {
    grid-column: 1 / -1;
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.summary-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.summary-card p {
    color: var(--warm-white);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.pull-quote {
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    margin-top: 1.5rem;
    color: var(--gold);
    font-style: italic;
    display: block;
}

/* ============================================
   DINING TRENDS
   ============================================ */

.dining-trends {
    background: linear-gradient(180deg, rgba(94, 18, 36, 0.05), rgba(21, 21, 21, 0.5));
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trend-card {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.trend-card:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    transform: scale(1.05);
}

.trend-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.trend-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.trend-card p {
    color: var(--warm-white);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.trend-stat {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ============================================
   TOP 50 DIRECTORY
   ============================================ */

.top-50-directory {
    background: rgba(21, 21, 21, 0.8);
}

.directory-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    width: 100%;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--warm-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.search-box input::placeholder {
    color: rgba(250, 249, 246, 0.5);
}

.search-icon {
    position: absolute;
    right: 1rem;
    color: var(--gold);
    font-size: 1.2rem;
}

.filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.filter-select {
    padding: 0.75rem;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--warm-white);
    font-family: var(--font-sans);
    cursor: pointer;
    transition: var(--transition);
}

.filter-select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.filter-select option {
    background: var(--charcoal);
    color: var(--warm-white);
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    animation: fadeIn 0.6s ease-out;
}

.restaurant-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-slow);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.restaurant-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.restaurant-rank {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    padding: 0.5rem 1rem;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
}

.restaurant-header {
    padding: 1.5rem;
    flex-grow: 1;
}

.restaurant-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--warm-white);
    margin-bottom: 0.5rem;
}

.restaurant-city {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.restaurant-chef {
    font-size: 0.85rem;
    color: rgba(250, 249, 246, 0.7);
    margin-bottom: 0.5rem;
}

.restaurant-cuisine {
    font-size: 0.85rem;
    color: rgba(250, 249, 246, 0.7);
    margin-bottom: 1rem;
}

.restaurant-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: var(--gold);
    font-size: 1.1rem;
}

.restaurant-awards {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.award-badge {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.restaurant-buttons {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.btn {
    flex: 1;
    padding: 0.7rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-sans);
    letter-spacing: 0.05em;
    transition: var(--transition);
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--warm-white);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* ============================================
   MICHELIN THREE STAR SECTION
   ============================================ */

.michelin-three-star {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05), rgba(94, 18, 36, 0.1));
}

.three-star-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.three-star-card {
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 2.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: var(--transition-slow);
}

.three-star-card:hover {
    border-color: var(--gold);
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.2);
}

.three-star-rank {
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.three-star-card h3 {
    color: var(--warm-white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.three-star-location {
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.three-star-description {
    color: var(--warm-white);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================
   GREEN STARS SECTION
   ============================================ */

.green-stars {
    background: rgba(21, 21, 21, 0.8);
}

.green-stars-info {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto;
    color: var(--warm-white);
    line-height: 1.8;
}

.green-stars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.green-star-card {
    background: rgba(94, 18, 36, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.green-star-card:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
}

.green-star-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.green-star-card h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.green-star-card p {
    color: var(--warm-white);
    font-size: 0.9rem;
}

/* ============================================
   REGIONAL GUIDE
   ============================================ */

.regional-guide {
    background: linear-gradient(180deg, rgba(94, 18, 36, 0.05), rgba(21, 21, 21, 0.5));
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.region-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    border-radius: 8px;
    transition: var(--transition);
}

.region-card:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.region-card h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.region-count {
    color: rgba(250, 249, 246, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.region-restaurants {
    list-style: none;
    color: var(--warm-white);
    font-size: 0.95rem;
    line-height: 1.8;
}

.region-restaurants li {
    padding-left: 1rem;
    position: relative;
}

.region-restaurants li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ============================================
   STATISTICS DASHBOARD
   ============================================ */

.statistics-dashboard {
    background: rgba(21, 21, 21, 0.8);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    border-radius: 8px;
}

.stat-card h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.chart-container {
    color: var(--warm-white);
}

.chart-data {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-radius: 4px;
    color: var(--black);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.chart-bar:hover {
    filter: brightness(1.2);
}

.award-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.award-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    color: var(--warm-white);
}

.stat-number {
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
}

/* ============================================
   AWARDS SECTION
   ============================================ */

.awards-section {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05), rgba(94, 18, 36, 0.1));
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.award-card {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2.5rem;
    border-radius: 8px;
    transition: var(--transition-slow);
}

.award-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.award-card h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.award-card p {
    color: var(--warm-white);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.award-details {
    list-style: none;
    color: var(--warm-white);
    font-size: 0.95rem;
}

.award-details li {
    padding: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
}

.award-details li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    background: rgba(21, 21, 21, 0.8);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--warm-white);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.faq-question::after {
    content: '+';
    color: var(--gold);
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--warm-white);
    line-height: 1.8;
}

/* ============================================
   CONCLUSION
   ============================================ */

.conclusion {
    background: linear-gradient(180deg, rgba(94, 18, 36, 0.15), rgba(212, 175, 55, 0.05));
}

.conclusion-content {
    max-width: 900px;
    margin: 3rem auto;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem;
    border-radius: 8px;
    line-height: 2;
}

.conclusion-content p {
    color: var(--warm-white);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: rgba(5, 5, 5, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 4rem;
    padding-bottom: 2rem;
}

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

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

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

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

.footer-section a {
    color: var(--warm-white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    flex-direction: column;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 2rem;
    color: rgba(250, 249, 246, 0.6);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ============================================
   MODAL
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: rgba(21, 21, 21, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 3rem;
    border-radius: 8px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease-out;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--warm-white);
    transform: rotate(90deg);
}

.modal-body h2 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.modal-body h3 {
    color: var(--warm-white);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.modal-body p {
    color: var(--warm-white);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-counters {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .counter {
        padding: 1.5rem 1rem;
    }
    
    .counter-value {
        font-size: 2rem;
    }
    
    .filters {
        grid-template-columns: 1fr;
    }
    
    .restaurants-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 2rem;
        width: 95%;
    }
    
    .summary-card.highlight {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-counters {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .trends-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.hidden {
    display: none !important;
}

.no-scroll {
    overflow: hidden;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.slide-in-left {
    opacity: 0;
    animation: slideInLeft 0.6s ease-out forwards;
}

/* Print styles */
@media print {
    .navbar,
    .progress-bar,
    .modal {
        display: none;
    }
}
