
    /* All existing CSS remains unchanged – keep as is */
    :root {
        --primary-green: #146a34;
        --primary-gold: #FFD700;
        --primary-orange: #FF6B00;
        --text-dark: #333;
        --light-bg: #f8f9fa;
        --white: #ffffff;
        --border-color: #e0e0e0;
        --text-light: #666;
    }

    .locations-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://wingstopmenus.us/img/wingstop-locations.webp');
        background-size: cover;
        background-position: center;
        color: white;
        padding: 100px 20px;
        text-align: center;
        margin-bottom: 40px;
        position: relative;
    }

    .locations-hero h1 {
        font-size: 3rem;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    
    .search-container {
        max-width: 800px;
        margin: -50px auto 30px;
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        position: relative;
        z-index: 10;
    }
    
    .search-form {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .search-input {
        flex: 1;
        min-width: 250px;
        padding: 15px;
        border: 2px solid #ddd;
        border-radius: 5px;
        font-size: 16px;
        transition: border-color 0.3s;
    }

    .search-input:focus {
        border-color: var(--primary-orange);
        outline: none;
    }
    
    .search-button {
        background: var(--primary-green);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        font-weight: bold;
        transition: background 0.3s;
    }
    
    .search-button:hover {
        background: #0f5228;
    }

    .services-bar {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin: 20px 0 0;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }
    .service-item {
        text-align: center;
        color: #555;
        font-size: 14px;
        transition: transform 0.2s;
    }
    .service-item:hover {
        transform: translateY(-3px);
        color: var(--primary-green);
    }
    .service-item i {
        display: block;
        font-size: 24px;
        color: var(--primary-orange);
        margin-bottom: 5px;
    }
    
    .state-filter-container {
        max-width: 400px;
        margin: 0 auto 30px;
        position: relative;
    }
    
    #stateFilter {
        width: 100%;
        padding: 12px 15px 12px 40px;
        border: 2px solid #eee;
        border-radius: 25px;
        font-size: 16px;
        transition: all 0.3s;
    }
    
    #stateFilter:focus {
        border-color: var(--primary-green);
        outline: none;
        box-shadow: 0 0 10px rgba(20, 106, 52, 0.1);
    }
    
    .filter-icon {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
    }

    .states-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
        margin: 20px 0;
    }
    
    .state-card {
        background: white;
        padding: 15px;
        border-radius: 8px;
        text-align: center;
        border: 1px solid #eee;
        transition: transform 0.3s, box-shadow 0.3s;
        cursor: pointer;
    }
    
    .state-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        border-color: var(--primary-orange);
    }
    
    .state-flag {
        font-size: 40px;
        margin-bottom: 10px;
    }
    
    .locations-list {
        display: none;
        margin-top: 40px;
        background: white;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .location-item {
        padding: 20px;
        border-bottom: 1px solid #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .location-item:last-child {
        border-bottom: none;
    }
    
    .location-info h4 {
        margin: 0 0 10px 0;
        color: var(--primary-orange);
        font-size: 1.2rem;
    }
    
    .location-actions {
        display: flex;
        gap: 10px;
    }
    
    .action-button {
        padding: 10px 18px;
        border: 1px solid #ddd;
        border-radius: 5px;
        background: white;
        cursor: pointer;
        transition: all 0.3s;
        font-weight: 600;
    }
    
    .action-button:hover {
        background: var(--primary-orange);
        color: white;
        border-color: var(--primary-orange);
    }

    .use-location-btn {
        background: var(--light-bg);
        color: var(--text-dark);
        border: 1px solid #ddd;
        padding: 10px 20px;
        border-radius: 50px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s;
        font-weight: 600;
        animation: pulse-border 2s infinite;
    }
    
    .use-location-btn:hover {
        background: #e9ecef;
        transform: scale(1.02);
    }

    @keyframes pulse-border {
        0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
        70% { box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
        100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
    }
    
    .hours-table {
        width: 100%;
        border-collapse: collapse;
        margin: 30px 0;
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .hours-table th {
        background: var(--primary-orange);
        color: white;
        padding: 15px;
        text-align: left;
    }
    
    .hours-table td {
        padding: 12px 15px;
        border-bottom: 1px solid #eee;
    }
    
    .hours-table tr:hover {
        background: #f9f9f9;
    }
    
    .map-container {
        height: 400px;
        margin: 40px 0;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        position: relative;
    }
    
    .statistics {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin: 40px 0;
    }
    
    .stat-card {
        background: white;
        padding: 25px;
        text-align: center;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        border-bottom: 4px solid var(--primary-green);
    }
    
    .stat-number {
        font-size: 40px;
        font-weight: bold;
        color: var(--primary-orange);
        margin-bottom: 10px;
    }
    
    .back-button {
        background: #666;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        margin-bottom: 20px;
    }
    
    .back-button:hover {
        background: #555;
    }

    /* Enhanced Statistics Section (abbreviated for brevity – keep your existing full styles) */
    .enhanced-statistics {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        padding: 50px 30px;
        border-radius: 20px;
        margin: 60px 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border: 1px solid #e9ecef;
    }
    
    .stats-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .stats-header h2 {
        color: var(--text-dark);
        font-size: 2.5rem;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    
    .stats-subtitle {
        color: var(--text-light);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }
    
    .live-stats-counter {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .counter-card {
        background: white;
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        border: 2px solid transparent;
    }
    
    .counter-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        border-color: var(--primary-orange);
    }
    
    .counter-card.highlight-card {
        background: linear-gradient(135deg, #FF6B00, #FF8C42);
        color: white;
    }
    
    .counter-card.highlight-card .counter-number,
    .counter-card.highlight-card .counter-label,
    .counter-card.highlight-card .counter-subtitle {
        color: white;
    }
    
    .counter-icon {
        font-size: 2.5rem;
        color: var(--primary-orange);
        margin-bottom: 20px;
    }
    
    .counter-card.highlight-card .counter-icon {
        color: white;
    }
    
    .counter-number {
        font-size: 3.5rem;
        font-weight: 800;
        color: var(--text-dark);
        line-height: 1;
        margin-bottom: 5px;
        font-family: 'Segoe UI', Arial, sans-serif;
    }
    
    .counter-label {
        font-size: 1.1rem;
        color: var(--text-light);
        font-weight: 600;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .counter-subtitle {
        font-size: 0.9rem;
        margin-top: 10px;
    }
    
    .growth-badge, .coverage-badge, .availability-badge, .years-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 500;
    }
    
    .growth-badge.positive {
        background: rgba(76, 175, 80, 0.15);
        color: #4CAF50;
    }
    
    .coverage-badge {
        background: rgba(33, 150, 243, 0.15);
        color: #2196F3;
    }
    
    .availability-badge {
        background: rgba(255, 193, 7, 0.15);
        color: #ffffff;
    }
    
    .years-badge {
        background: rgba(156, 39, 176, 0.15);
        color: #9C27B0;
    }
    
    .live-indicator {
        position: absolute;
        top: 15px;
        right: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.8rem;
        font-weight: bold;
        color: #4CAF50;
    }
    
    .pulse-dot {
        width: 8px;
        height: 8px;
        background: #4CAF50;
        border-radius: 50%;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.5; transform: scale(1.2); }
        100% { opacity: 1; transform: scale(1); }
    }
    
    .counter-sparkline {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-green), var(--primary-orange));
        opacity: 0.6;
    }
    
    .counter-progress {
        height: 4px;
        background: #e9ecef;
        border-radius: 2px;
        margin-top: 15px;
        overflow: hidden;
    }
    
    .progress-bar {
        height: 100%;
        background: var(--primary-green);
        border-radius: 2px;
        animation: progressFill 2s ease-out;
    }
    
    @keyframes progressFill {
        from { width: 0%; }
        to { width: 100%; }
    }
    
    .counter-timeline {
        display: flex;
        justify-content: space-between;
        margin-top: 15px;
    }
    
    .timeline-dot {
        width: 8px;
        height: 8px;
        background: #ddd;
        border-radius: 50%;
    }
    
    .timeline-dot.active {
        background: var(--primary-orange);
        transform: scale(1.3);
    }
    
    /* Advanced Metrics */
    .advanced-metrics {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin: 40px 0;
    }
    
    .metric-card {
        background: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.05);
        text-align: center;
        transition: transform 0.3s;
    }
    
    .metric-card:hover {
        transform: translateY(-5px);
    }
    
    .metric-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
        color: var(--primary-green);
    }
    
    .metric-header i {
        font-size: 1.5rem;
    }
    
    .metric-header h4 {
        margin: 0;
        font-size: 1.1rem;
        color: var(--text-dark);
    }
    
    .metric-value {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary-orange);
        margin: 10px 0;
    }
    
    .metric-label {
        color: var(--text-light);
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .metric-progress {
        background: #f0f0f0;
        border-radius: 10px;
        padding: 3px;
        position: relative;
    }
    
    .progress-fill {
        background: linear-gradient(90deg, var(--primary-green), #4CAF50);
        height: 20px;
        border-radius: 8px;
        transition: width 1.5s ease-out;
    }
    
    .metric-progress span {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: white;
        font-size: 0.8rem;
        font-weight: 500;
        z-index: 1;
    }
    
    /* Growth Timeline */
    .growth-timeline {
        background: white;
        padding: 30px;
        border-radius: 15px;
        margin: 40px 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    
    .growth-timeline h3 {
        color: var(--text-dark);
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .timeline-container {
        position: relative;
        padding-left: 30px;
    }
    
    .timeline-container::before {
        content: '';
        position: absolute;
        left: 15px;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(to bottom, var(--primary-green), var(--primary-orange));
        border-radius: 3px;
    }
    
    .timeline-item {
        position: relative;
        margin-bottom: 30px;
        display: flex;
        gap: 20px;
    }
    
    .timeline-year {
        min-width: 80px;
        background: var(--primary-green);
        color: white;
        padding: 8px 15px;
        border-radius: 20px;
        text-align: center;
        font-weight: bold;
        font-size: 1.1rem;
        align-self: flex-start;
    }
    
    .timeline-content {
        flex: 1;
        background: #f8f9fa;
        padding: 20px;
        border-radius: 10px;
        position: relative;
    }
    
    .timeline-dot {
        position: absolute;
        left: -38px;
        top: 25px;
        width: 16px;
        height: 16px;
        background: var(--primary-orange);
        border-radius: 50%;
        border: 3px solid white;
        box-shadow: 0 0 0 3px var(--primary-orange);
    }
    
    .timeline-dot.first {
        background: var(--primary-green);
        box-shadow: 0 0 0 3px var(--primary-green);
    }
    
    .timeline-dot.active {
        animation: pulse 2s infinite;
    }
    
    .timeline-content h4 {
        margin: 0 0 10px 0;
        color: var(--text-dark);
    }
    
    .timeline-content p {
        margin: 0;
        color: var(--text-light);
        font-size: 0.95rem;
    }
    
    /* Regional Distribution */
    .regional-distribution {
        background: white;
        padding: 30px;
        border-radius: 15px;
        margin: 40px 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    
    .regional-distribution h3 {
        color: var(--text-dark);
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .distribution-chart {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .region-bar {
        display: flex;
        align-items: center;
        gap: 20px;
        margin: 20px 0;
    }
    
    .region-name {
        min-width: 120px;
        font-weight: 600;
        color: var(--text-dark);
    }
    
    .region-bar-container {
        flex: 1;
        height: 30px;
        background: #e9ecef;
        border-radius: 15px;
        overflow: hidden;
        position: relative;
    }
    
    .region-fill {
        height: 100%;
        border-radius: 15px;
        background: linear-gradient(90deg, var(--primary-green), var(--primary-orange));
        position: relative;
        transition: width 1.5s ease-out;
    }
    
    .region-value {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: white;
        font-weight: bold;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }
    
    .region-count {
        min-width: 120px;
        text-align: right;
        font-weight: 500;
        color: var(--text-light);
    }
    
    /* Fun Facts */
    .fun-facts {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        padding: 30px;
        border-radius: 15px;
        margin: 40px 0;
    }
    
    .fun-facts h3 {
        color: var(--text-dark);
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .facts-carousel {
        position: relative;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .fact-card {
        background: white;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        display: none;
        animation: fadeIn 0.5s ease;
    }
    
    .fact-card.active {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .fact-icon {
        font-size: 3rem;
        min-width: 80px;
        text-align: center;
    }
    
    .fact-content h4 {
        margin: 0 0 10px 0;
        color: var(--text-dark);
        font-size: 1.3rem;
    }
    
    .fact-content p {
        margin: 0;
        color: var(--text-light);
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .fact-carousel-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }
    
    .carousel-prev, .carousel-next {
        background: var(--primary-green);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .carousel-prev:hover, .carousel-next:hover {
        background: var(--primary-orange);
        transform: scale(1.1);
    }
    
    .carousel-dots {
        display: flex;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        background: #ddd;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .dot.active {
        background: var(--primary-orange);
        transform: scale(1.2);
    }
    
    /* Stats Actions */
    .stats-actions {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
        flex-wrap: wrap;
    }
    
    .refresh-stats-btn, .download-stats-btn {
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        gap: 10px;
        border: 2px solid transparent;
    }
    
    .refresh-stats-btn {
        background: var(--primary-green);
        color: white;
    }
    
    .refresh-stats-btn:hover {
        background: #0f5228;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(20, 106, 52, 0.3);
    }
    
    .download-stats-btn {
        background: white;
        color: var(--primary-green);
        border-color: var(--primary-green);
    }
    
    .download-stats-btn:hover {
        background: var(--primary-green);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    /* Top Locations Section */
    .top-locations-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        padding: 40px;
        border-radius: 15px;
        margin: 50px 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        border: 1px solid #e9ecef;
    }
    
    .top-locations-section h2 {
        color: var(--text-dark);
        margin-bottom: 10px;
        font-size: 2.2rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .subtitle {
        color: var(--text-light);
        text-align: center;
        margin-bottom: 30px;
        font-size: 1.1rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }
    
    .stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    width: 100%; /* ensure full width */
    box-sizing: border-box;
}

.stat-item {
    text-align: center;
    padding: 15px 8px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: transform 0.2s;
    word-break: break-word; /* prevent long text overflow */
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px; /* consistent height */
}

.stat-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.stat-item .stat-number {
    font-size: clamp(1.6rem, 5vw, 2rem);
    font-weight: 800;
    color: var(--primary-green, #146a34);
    line-height: 1.2;
    margin-bottom: 5px;
}

.stat-item .stat-label {
    font-size: clamp(0.75rem, 3vw, 0.9rem);
    color: var(--text-dark, #333);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: normal;
}
    
    .top-states-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin: 40px 0;
    }
    
    .top-state-card {
        background: white;
        border-radius: 12px;
        padding: 25px;
        position: relative;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 2px solid transparent;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .top-state-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        border-color: var(--primary-orange);
    }
    
    .gold-card { border-top: 5px solid #FFD700; }
    .silver-card { border-top: 5px solid #C0C0C0; }
    .bronze-card { border-top: 5px solid #CD7F32; }
    .ribbon-card { border-top: 5px solid #146a34; }
    
    .medal-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--primary-green);
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: bold;
    }
    
    .state-flag {
        font-size: 50px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .state-info h4 {
        color: var(--text-dark);
        margin: 0 0 8px 0;
        font-size: 1.4rem;
    }
    
    .state-population {
        color: var(--text-light);
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .cities-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .city-tag {
        background: var(--light-bg);
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        color: var(--text-dark);
        transition: all 0.2s;
    }
    
    .city-tag:hover {
        background: var(--primary-orange);
        color: white;
    }
    
    .more-cities {
        background: transparent;
        color: var(--primary-green);
        font-weight: bold;
        cursor: pointer;
    }
    
    .more-cities:hover {
        text-decoration: underline;
    }
    
    .location-stats {
        text-align: center;
        margin: 15px 0;
        padding: 15px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 10px;
    }
    
    .location-stats .stat-value {
        font-size: 2.5rem;
        font-weight: bold;
        color: var(--primary-orange);
        line-height: 1;
    }
    
    .location-stats .stat-label {
        font-size: 1rem;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .popular-flavors {
        display: flex;
        gap: 10px;
        margin: 15px 0;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .flavor-badge {
        background: linear-gradient(135deg, #FF6B00, #FF8C42);
        color: white;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 500;
    }
    
    .quick-view-btn {
        margin-top: auto;
        background: var(--primary-green);
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }
    
    .quick-view-btn:hover {
        background: #0f5228;
        transform: scale(1.02);
    }
    
    /* State Preview Modal */
    .state-preview-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.7);
        z-index: 1000;
        align-items: center;
        justify-content: center;
    }
    
    .modal-content {
        background: white;
        padding: 30px;
        border-radius: 15px;
        max-width: 500px;
        width: 90%;
        max-height: 80vh;
        overflow-y: auto;
        position: relative;
        animation: modalSlideIn 0.3s ease;
    }
    
    @keyframes modalSlideIn {
        from {
            opacity: 0;
            transform: translateY(-50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .close-modal {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--text-light);
        transition: color 0.3s;
    }
    
    .close-modal:hover {
        color: var(--primary-orange);
    }
    
    /* Comparison Chart */
    .comparison-chart {
        background: white;
        padding: 25px;
        border-radius: 12px;
        margin: 40px 0;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    }
    
    .comparison-chart h3 {
        color: var(--text-dark);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .chart-container {
        padding: 20px;
        background: #f8f9fa;
        border-radius: 10px;
    }
    
    .chart-bar {
        margin: 20px 0;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .bar-label {
        min-width: 100px;
        font-weight: 600;
        color: var(--text-dark);
    }
    
    .bar-container {
        flex: 1;
        height: 30px;
        background: #e9ecef;
        border-radius: 15px;
        position: relative;
        overflow: hidden;
    }
    
    .bar-fill {
        height: 100%;
        border-radius: 15px;
        transition: width 1s ease-in-out;
    }
    
    .texas-bar { background: linear-gradient(90deg, #FFD700, #FFC107); }
    .california-bar { background: linear-gradient(90deg, #C0C0C0, #A8A8A8); }
    .florida-bar { background: linear-gradient(90deg, #CD7F32, #B87333); }
    .georgia-bar { background: linear-gradient(90deg, #146a34, #0f5228); }
    
    .bar-value {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-weight: bold;
        color: white;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }
    
    .chart-note {
        font-size: 0.9rem;
        color: var(--text-light);
        margin-top: 15px;
        font-style: italic;
    }
    
    /* Honorable Mentions */
    .honorable-mentions {
        background: white;
        padding: 25px;
        border-radius: 12px;
        margin: 30px 0;
        border-left: 5px solid var(--primary-orange);
    }
    
    .honorable-mentions h4 {
        color: var(--text-dark);
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .mention-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .mention-chip {
        background: var(--light-bg);
        padding: 10px 20px;
        border-radius: 25px;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 0.95rem;
        border: 2px solid transparent;
    }
    
    .mention-chip:hover {
        background: var(--primary-orange);
        color: white;
        transform: translateY(-3px);
        border-color: var(--primary-orange);
    }
    
    /* View All Button */
    .view-all-container {
        text-align: center;
        margin-top: 30px;
    }
    
    .view-all-btn {
        background: linear-gradient(135deg, var(--primary-green), #0f5228);
        color: white;
        border: none;
        padding: 15px 35px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 5px 15px rgba(20, 106, 52, 0.3);
    }
    
    .view-all-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(20, 106, 52, 0.4);
        background: linear-gradient(135deg, #0f5228, var(--primary-green));
    }

    /* Sticky Mobile Order Button */
    .sticky-cta {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
        background: var(--primary-green);
        color: white;
        padding: 15px 30px;
        border-radius: 50px;
        font-weight: bold;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        text-decoration: none;
        display: none;
        animation: bounceIn 1s;
    }
    @keyframes bounceIn {
        0% { transform: translateX(-50%) scale(0.5); opacity: 0; }
        80% { transform: translateX(-50%) scale(1.1); }
        100% { transform: translateX(-50%) scale(1); opacity: 1; }
    }
    
    /* Ads Section Styles */
    .ads-section {
        margin: 20px 0;
        text-align: center;
    }
    
    .desktop-ad {
        display: none;
    }
    
    .mobile-ad {
        display: block;
        margin: 0 auto;
    }
    
    @media (min-width: 768px) {
        .desktop-ad {
            display: block;
            margin: 0 auto;
        }
        .mobile-ad {
            display: none;
        }
    }
    
    .newsletter-section {
        background: linear-gradient(135deg, #146a34 0%, #10683b 100%);
        color: white;
        padding: 30px;
        border-radius: 10px;
        margin: 40px 0;
        text-align: center;
    }
    
    .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-width: 500px;
        margin: 20px auto;
    }
    
    .newsletter-input {
        padding: 15px;
        border-radius: 5px;
        border: none;
        font-size: 16px;
    }
    
    .newsletter-button {
        padding: 15px;
        background: var(--primary-gold);
        color: var(--primary-green);
        border: none;
        border-radius: 5px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .newsletter-button:hover {
        background: #ffed4e;
        transform: translateY(-2px);
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .search-form {
            flex-direction: column;
        }
        .locations-hero {
            padding: 60px 20px;
        }
        .locations-hero h1 {
            font-size: 2.2rem;
        }
        .states-grid {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        }
        .location-item {
            flex-direction: column;
            text-align: center;
        }
        .location-actions {
            justify-content: center;
            flex-wrap: wrap;
        }
        .newsletter-form {
            flex-direction: column;
        }
        .sticky-cta {
            display: block;
            width: 80%;
            text-align: center;
        }
        .enhanced-statistics {
            padding: 30px 20px;
        }
        
        .stats-header h2 {
            font-size: 2rem;
            flex-direction: column;
            gap: 10px;
        }
        
        .live-stats-counter {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .advanced-metrics {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .timeline-item {
            flex-direction: column;
            gap: 10px;
        }
        
        .timeline-year {
            align-self: flex-start;
        }
        
        .region-bar {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }
        
        .region-bar-container {
            width: 100%;
        }
        
        .stats-actions {
            flex-direction: column;
            align-items: center;
        }
        
        .refresh-stats-btn, .download-stats-btn {
            width: 100%;
            justify-content: center;
        }
        .top-locations-section {
            padding: 25px;
        }
        
        .top-locations-section h2 {
            font-size: 1.8rem;
        }
        
        .top-states-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .stats-bar {
        gap: 12px;
        padding: 16px;
    }
    .stat-item {
        padding: 12px 6px;
        min-height: 90px;
    }
        
        .mention-chips {
            justify-content: center;
        }
        
        .chart-bar {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }
        
        .bar-label {
            min-width: auto;
        }
    }
    
    /* ===== MAIN MAP SECTION – ENHANCED & STYLED ===== */
        .wingstop-map-section {
            max-width: 1400px;
            margin: 1rem auto;
            padding: 0 0.75rem;
        }
        /* header group – mobile first */
        .map-header {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1.2rem;
        }
        .title-group h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e1e1e;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }
        .title-group h2 i {
            color: #FF6B00;
            filter: drop-shadow(0 2px 4px rgba(255,107,0,0.3));
        }
        .title-group p {
            color: #555;
            margin-top: 0.25rem;
            font-size: 1rem;
            border-left: 4px solid #FF6B00;
            padding-left: 0.75rem;
        }
        /* stats badge – stacked on mobile */
        .stats-badge {
            background: rgba(255,107,0,0.1);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255,107,0,0.3);
            border-radius: 40px;
            padding: 0.7rem 1rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-around;
            gap: 0.75rem 1.5rem;
            box-shadow: 0 8px 18px -6px rgba(0,0,0,0.2);
        }
        .stat-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.95rem;
            color: #2c2c2c;
            white-space: nowrap;
        }
        .stat-item i {
            color: #FF6B00;
            font-size: 1.2rem;
        }
        .stat-item span {
            font-weight: 700;
            color: #000;
            margin-right: 0.2rem;
        }
        /* map container */
        .map-container {
            position: relative;
            width: 100%;
            height: 550px; /* default desktop */
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 20px 30px -10px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,107,0,0.2);
        }
        #map {
            height: 100%;
            width: 100%;
            background: #d4e0ec;
            z-index: 1;
        }
        /* search panel – mobile optimized */
        .route-search-panel {
            position: absolute;
            top: 12px;
            left: 12px;
            right: 12px;
            z-index: 10;
            display: flex;
            flex-direction: column; /* stacked on mobile */
            gap: 10px;
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 16px;
            border-radius: 32px;
            box-shadow: 0 12px 25px -8px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,107,0,0.25);
            max-width: none;
            margin: 0;
            pointer-events: all;
            transition: all 0.2s;
        }
        .route-search-panel input {
            width: 100%;
            padding: 16px 20px;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 500;
            outline: none;
            background: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05), inset 0 1px 3px rgba(0,0,0,0.05);
            font-family: 'Montserrat', sans-serif;
            -webkit-appearance: none;
        }
        .route-search-panel input::placeholder {
            color: #777;
            font-size: 0.95rem;
        }
        .route-search-panel button {
            width: 100%;
            background: linear-gradient(135deg, #FF6B00 0%, #e05d00 100%);
            border: none;
            color: white;
            padding: 16px 20px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: 0.2s;
            box-shadow: 0 10px 20px -5px rgba(255,107,0,0.5);
            border: 1px solid rgba(255,255,255,0.2);
            font-family: 'Montserrat', sans-serif;
        }
        .route-search-panel button i {
            font-size: 1.2rem;
        }
        .route-search-panel button:hover {
            background: linear-gradient(135deg, #e05d00 0%, #c24e00 100%);
        }
        /* hint note */
        .hint-note {
            position: absolute;
            bottom: 12px;
            right: 16px;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            color: white;
            padding: 8px 16px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 500;
            z-index: 10;
            pointer-events: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.15);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        /* ===== IMPROVED LEAFLET ROUTING PANEL ===== */
.leaflet-routing-container {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 16px !important;
    padding: 16px !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #333 !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2) !important;
    border: 1px solid rgba(255,107,0,0.3) !important;
    max-width: 320px !important;
    max-height: 400px !important;
    overflow-y: auto !important;
    margin: 10px !important;
}

/* Hide the default routing machine header if too verbose */
.leaflet-routing-container h3 {
    font-size: 1.2rem !important;
    margin: 0 0 10px 0 !important;
    color: var(--primary-orange, #FF6B00) !important;
    border-bottom: 2px solid var(--primary-orange, #FF6B00) !important;
    padding-bottom: 5px !important;
}

/* Style the summary (distance, time) */
.leaflet-routing-summary {
    font-weight: bold !important;
    margin-bottom: 12px !important;
    padding: 8px 12px !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
    border-left: 4px solid var(--primary-green, #146a34) !important;
}

/* Turn-by-turn list */
.leaflet-routing-instructions {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.leaflet-routing-instructions li {
    padding: 10px 12px !important;
    border-bottom: 1px solid #eee !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    transition: background 0.2s !important;
}

.leaflet-routing-instructions li:hover {
    background: #f0f7ff !important;
}

.leaflet-routing-instructions li:last-child {
    border-bottom: none !important;
}

/* Distance indicator inside each step */
.leaflet-routing-instructions li .leaflet-routing-instruction-distance {
    font-weight: 600 !important;
    color: var(--primary-orange, #FF6B00) !important;
    min-width: 60px !important;
    text-align: right !important;
    font-size: 0.9rem !important;
}

/* Icon for each step (optional) */
.leaflet-routing-icon {
    display: inline-block;
    width: 20px !important;
    height: 20px !important;
    background-size: contain !important;
    filter: brightness(0) saturate(100%) invert(36%) sepia(98%) saturate(1747%) hue-rotate(1deg) brightness(102%) contrast(106%); /* makes icon orange */
}

/* Make the collapse button more visible */
.leaflet-routing-container .leaflet-routing-collapse-btn {
    background: white !important;
    border: 1px solid #ddd !important;
    border-radius: 50% !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    font-weight: bold !important;
    color: var(--primary-orange, #FF6B00) !important;
    cursor: pointer !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
    transition: all 0.2s !important;
}

.leaflet-routing-container .leaflet-routing-collapse-btn:hover {
    background: var(--primary-orange) !important;
    color: white !important;
}
        /* responsive breakpoints */
        @media (min-width: 640px) {
            .map-header {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
            .title-group h2 {
                font-size: 2rem;
            }
            .stats-badge {
                flex-wrap: nowrap;
                padding: 0.8rem 1.8rem;
            }
            .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 14px;
    }
    .stat-item {
        min-height: 85px;
    }
            .route-search-panel {
                flex-direction: row;
                top: 16px;
                left: 16px;
                right: 16px;
                padding: 16px 24px;
            }
            .route-search-panel input {
                flex: 2 1 250px;
                width: auto;
            }
            .route-search-panel button {
                width: auto;
                flex: 0 1 auto;
                padding: 16px 32px;
            }
            .leaflet-routing-container {
        max-width: 280px !important;
        max-height: 350px !important;
        font-size: 13px !important;
        padding: 12px !important;
    }
    
    .leaflet-routing-instructions li {
        padding: 8px 10px !important;
        gap: 6px !important;
    }
    
    .leaflet-routing-instructions li .leaflet-routing-instruction-distance {
        min-width: 50px !important;
        font-size: 0.8rem !important;
    }
        }
        @media (max-width: 480px) {
            .map-container {
                height: 500px; /* shorter on very small screens */
                border-radius: 24px;
            }
            .title-group h2 {
                font-size: 1.6rem;
            }
            .stats-bar {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px;
    }
    .stat-item {
        min-height: auto;
        padding: 12px;
    }
            .hint-note {
                bottom: 8px;
                right: 8px;
                font-size: 0.7rem;
                padding: 6px 12px;
            }
        }
        /* make markers a bit more tappable */
        .custom-wingstop-icon div {
            transition: transform 0.1s;
        }
        .leaflet-control-attribution {
            font-size: 0.7rem;
        }
        
        /* Custom popup styling (optional) */
.leaflet-popup-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #333 !important;
}

.leaflet-popup-content strong {
    color: var(--primary-orange, #FF6B00) !important;
}

.leaflet-popup-content i {
    color: var(--primary-green, #146a34) !important;
    margin-right: 4px !important;
}

.leaflet-popup-tip {
    background: white !important;
}

    /* MAIN FAQ SECTION STYLES */
    .faq-section {
        max-width: 1200px;
        margin: 40px auto;
        padding: 20px;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 40px;
        padding: 30px;
        background: linear-gradient(135deg, #146a34 0%, #28a745 100%);
        color: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(20, 106, 52, 0.2);
    }

    .faq-header h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .faq-header p {
        font-size: 1.1rem;
        opacity: 0.9;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .faq-search-container {
        position: relative;
        max-width: 600px;
        margin: 0 auto 30px;
    }

    .faq-search {
        width: 100%;
        padding: 18px 50px 18px 25px;
        font-size: 1rem;
        border: 2px solid #e0e0e0;
        border-radius: 50px;
        background: white;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .faq-search:focus {
        outline: none;
        border-color: #28a745;
        box-shadow: 0 4px 20px rgba(40, 167, 69, 0.2);
    }

    .faq-search-icon {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #666;
        font-size: 1.2rem;
    }

    .faq-categories {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        margin-bottom: 40px;
    }

    .faq-category {
        padding: 12px 24px;
        background: white;
        border: 2px solid #e0e0e0;
        border-radius: 50px;
        font-size: 0.95rem;
        font-weight: 600;
        color: #555;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .faq-category:hover {
        border-color: #28a745;
        color: #28a745;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(40, 167, 69, 0.15);
    }

    .faq-category.active {
        background: #146a34;
        border-color: #146a34;
        color: white;
        box-shadow: 0 4px 15px rgba(20, 106, 52, 0.25);
    }

    .faq-item {
        background: white;
        border-radius: 12px;
        margin-bottom: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        border: 1px solid #e8e8e8;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .faq-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .faq-question {
        width: 100%;
        padding: 25px 30px;
        text-align: left;
        background: white;
        border: none;
        font-size: 1.1rem;
        font-weight: 600;
        color: #333;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: background-color 0.3s ease;
    }

    .faq-question:hover {
        background-color: #f9f9f9;
    }

    .faq-question[aria-expanded="true"] {
        background-color: #f8f9fa;
        border-bottom: 1px solid #e8e8e8;
    }

    .question-number {
        background: #146a34;
        color: white;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        font-weight: bold;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .question-text {
        flex: 1;
        font-size: 1.1rem;
        line-height: 1.4;
        text-align: left;
    }

    .toggle-icon {
        font-size: 1.5rem;
        font-weight: 300;
        color: #146a34;
        margin-left: 15px;
        min-width: 24px;
        text-align: center;
        transition: transform 0.3s ease;
    }

    .faq-question[aria-expanded="true"] .toggle-icon {
        transform: rotate(180deg);
    }

    .faq-answer {
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, padding 0.3s ease;
        background: white;
    }

    .faq-answer.show {
        padding: 30px;
        max-height: 5000px;
    }

    .faq-answer p {
        margin-bottom: 15px;
        line-height: 1.7;
        color: #444;
    }

    .faq-answer ul, .faq-answer ol {
        margin: 20px 0;
        padding-left: 25px;
    }

    .faq-answer li {
        margin-bottom: 12px;
        line-height: 1.6;
        color: #444;
    }

    .faq-answer strong {
        color: #146a34;
        font-weight: 700;
    }

    .faq-answer h4 {
        color: #333;
        margin: 25px 0 15px;
        font-size: 1.2rem;
    }

    .faq-answer h5 {
        color: #333;
        margin: 20px 0 12px;
        font-size: 1.1rem;
    }

    .tip-box, .warning-box, .safety-tip {
        padding: 20px;
        border-radius: 10px;
        margin: 25px 0;
    }

    .tip-box {
        background: #e7f3ff;
        border-left: 4px solid #3498db;
    }

    .warning-box {
        background: #fff3cd;
        border-left: 4px solid #ffc107;
    }

    .safety-tip {
        background: #d4edda;
        border-left: 4px solid #28a745;
    }

    .tip-box h4, .warning-box h4, .safety-tip h4 {
        margin-top: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .faq-answer table {
        width: 100%;
        border-collapse: collapse;
        margin: 25px 0;
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }

    .faq-answer th {
        background: #f8f9fa;
        font-weight: 600;
        color: #146a34;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .faq-answer th, .faq-answer td {
        padding: 15px;
        text-align: left;
        border-bottom: 1px solid #e8e8e8;
    }

    .faq-answer tr:last-child td {
        border-bottom: none;
    }

    .faq-answer tr:hover {
        background-color: #f9f9f9;
    }

    .faq-stats {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin: 50px 0;
        padding: 30px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .stat-item {
        text-align: center;
        padding: 0 20px;
    }

    .stat-number {
        display: block;
        font-size: 3rem;
        font-weight: 800;
        color: #146a34;
        line-height: 1;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 1rem;
        color: #666;
        font-weight: 600;
    }

    .faq-back-to-top {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 30px auto 0;
        padding: 15px 30px;
        background: #146a34;
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(20, 106, 52, 0.3);
    }

    .faq-back-to-top:hover {
        background: #28a745;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
        color: white;
    }

    .faq-no-results {
        text-align: center;
        padding: 60px 20px;
        background: #f8f9fa;
        border-radius: 15px;
        display: none;
    }

    .faq-no-results .icon {
        font-size: 4rem;
        margin-bottom: 20px;
    }

    .faq-no-results h3 {
        color: #333;
        margin-bottom: 10px;
    }

    .faq-no-results p {
        color: #666;
        max-width: 400px;
        margin: 0 auto;
    }

    .package-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .package-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .holiday-card {
        transition: transform 0.3s ease;
    }

    .holiday-card:hover {
        transform: translateY(-3px);
    }

    .stats-grid {
        margin: 30px 0;
    }

    .stat-card {
        transition: transform 0.3s ease;
    }

    .stat-card:hover {
        transform: scale(1.05);
    }

    @media (max-width: 768px) {
        .faq-section {
            padding: 20px;
        }
        
        .faq-header h2 {
            font-size: 1.8rem;
        }
        
        .faq-categories {
            justify-content: flex-start;
            overflow-x: auto;
            padding-bottom: 10px;
        }
        
        .faq-category {
            flex-shrink: 0;
        }
    }

    @media (max-width: 480px) {
        .faq-header h2 {
            font-size: 1.5rem;
        }
        
        .faq-question {
            padding: 15px;
            font-size: 0.95rem;
        }
        
        .question-text {
            font-size: 1rem;
        }
        
        .faq-answer.show {
            padding: 15px;
        }
        
        .faq-answer h4 {
            font-size: 1.1rem;
        }
        
        .faq-answer h5 {
            font-size: 1rem;
        }
        
        .faq-back-to-top {
            padding: 12px 25px;
            font-size: 0.9rem;
        }
        
        .faq-stats {
            flex-direction: column;
            gap: 20px;
            padding: 20px;
        }
    }

    .faq-item {
        animation: fadeIn 0.5s ease forwards;
    }

    .faq-item:nth-child(1) { animation-delay: 0.1s; }
    .faq-item:nth-child(2) { animation-delay: 0.2s; }
    .faq-item:nth-child(3) { animation-delay: 0.3s; }
    .faq-item:nth-child(4) { animation-delay: 0.4s; }
    .faq-item:nth-child(5) { animation-delay: 0.5s; }
    .faq-item:nth-child(6) { animation-delay: 0.6s; }
    .faq-item:nth-child(7) { animation-delay: 0.7s; }
    .faq-item:nth-child(8) { animation-delay: 0.8s; }
    .faq-item:nth-child(9) { animation-delay: 0.9s; }
    .faq-item:nth-child(10) { animation-delay: 1s; }

    @media print {
        .faq-search-container,
        .faq-categories,
        .faq-back-to-top,
        .faq-stats {
            display: none;
        }
        
        .faq-question {
            background: white !important;
            color: #000 !important;
        }
        
        .faq-answer {
            display: block !important;
            max-height: none !important;
            padding: 20px !important;
        }
        
        .faq-item {
            break-inside: avoid;
            box-shadow: none;
            border: 1px solid #ddd;
        }
    }
