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

:root {
    --color-blue: #02459b;
    --color-orange: #ff5e00;
    --color-teal: #04ac9c;
    --color-yellow: #fcab0f;
    --color-white: #fff;
    --color-dark: #333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--color-white);
    color: var(--color-dark);
    overflow-x: hidden;
}

/* Marquee */
.marquee {
    width: 100%;
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: marquee 12s linear infinite;
}

.marquee-text {
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    padding-right: 50px;
}

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

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 85px;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.menu-btn {
    position: absolute;
    left: 12px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.menu-btn:hover {
    background-color: rgba(2, 69, 155, 0.1);
}

.menu-btn:active {
    transform: scale(0.95);
}

.menu-btn svg {
    width: 28px;
    height: 28px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: calc(100% - 120px);
    flex: 1;
    overflow: hidden;
}

.logo {
    height: 68px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Language Switcher */
.language-switcher {
    position: absolute;
    right: 12px;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.lang-btn:active {
    transform: scale(0.9);
}

.lang-btn .flag {
    font-size: 24px;
    line-height: 1;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 50;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    padding: 12px;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.lang-option:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.lang-option:active {
    transform: scale(0.9);
}

.lang-option .flag {
    font-size: 24px;
    line-height: 1;
}

/* Side Menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 200;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    max-width: 320px;
    height: 100%;
    background-color: var(--color-white);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 300;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

.side-menu.active {
    transform: translateX(0);
}

.menu-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.menu-close-btn:hover {
    background-color: rgba(51, 51, 51, 0.1);
}

.menu-close-btn:active {
    transform: scale(0.95);
}

.menu-close-btn svg {
    width: 24px;
    height: 24px;
}

.menu-content {
    padding: 70px 20px 20px 20px;
}

.menu-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 20px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--color-dark);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}

.nav-link:hover {
    background-color: rgba(2, 69, 155, 0.08);
    color: var(--color-blue);
}

.nav-link.active {
    background-color: rgba(2, 69, 155, 0.12);
    color: var(--color-blue);
    font-weight: 600;
}

.nav-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.nav-link span {
    flex: 1;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 70px);
}

/* Countdown Bar */
.countdown-bar {
    background: var(--color-teal);
    padding: 8px 0;
    margin-top: 8px;
    box-shadow: 0 2px 4px rgba(4, 172, 156, 0.15);
}

.countdown-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.countdown-bar-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.3px;
}

.countdown-bar-timer {
    display: flex;
    align-items: center;
    gap: 6px;
}

.countdown-bar-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.countdown-bar-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    min-width: 32px;
    text-align: center;
}

.countdown-bar-text {
    font-size: 9px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.countdown-bar-separator {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    margin: 0 1px;
}

@media (max-width: 768px) {
    .logo-container {
        max-width: calc(100% - 110px);
    }
    
    .logo {
        height: 62px;
    }
}

@media (max-width: 480px) {
    .header {
        height: 75px;
        padding: 10px 16px;
    }
    
    .logo-container {
        max-width: calc(100% - 100px);
    }
    
    .logo {
        height: 54px;
    }
    
    .menu-btn {
        left: 8px;
        width: 40px;
        height: 40px;
    }
    
    .menu-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .language-switcher {
        right: 8px;
    }
    
    .countdown-bar {
        padding: 6px 0;
    }
}

@media (max-width: 360px) {
    .header {
        height: 70px;
        padding: 8px 12px;
    }
    
    .logo-container {
        max-width: calc(100% - 90px);
    }
    
    .logo {
        height: 48px;
    }
    
    .menu-btn {
        left: 6px;
        width: 36px;
        height: 36px;
    }
    
    .menu-btn svg {
        width: 22px;
        height: 22px;
    }
    
    .language-switcher {
        right: 6px;
    }
    
    .countdown-bar-content {
        gap: 8px;
    }
    
    .countdown-bar-label {
        font-size: 11px;
    }
    
    .countdown-bar-value {
        font-size: 16px;
        min-width: 26px;
    }
    
    .countdown-bar-text {
        font-size: 8px;
    }
    
    .countdown-bar-separator {
        font-size: 16px;
        margin: 0;
    }
}

/* Slider */
.slider-container {
    width: 100%;
}

.slider {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%; /* 3:2 aspect ratio (200/300) */
    overflow: hidden;
    background-color: #f0f0f0;
}

.slider-track {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

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

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 10;
}

/* Slider Arrows */
.slider-arrow {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    flex-shrink: 0;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
    transform: scale(1.1);
}

.slider-arrow:active {
    transform: scale(0.95);
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background-color: rgba(255, 255, 255, 0.9);
    width: 24px;
    border-radius: 4px;
}

/* Quiz Banner */
.quiz-banner {
    position: relative;
    width: 100%;
    margin: 10px 0 20px 0;
    padding: 0 20px;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-yellow) 100%);
    overflow: hidden;
    height: 90px;
    display: flex;
    align-items: center;
}

.quiz-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.quiz-icon {
    font-size: 36px;
    line-height: 1;
    animation: bounce 2s ease-in-out infinite;
    flex-shrink: 0;
}

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

.quiz-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quiz-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.quiz-description {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.3;
    margin: 0;
    opacity: 0.95;
}

.quiz-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--color-white);
    color: var(--color-orange);
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.quiz-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.quiz-button:active {
    transform: translateY(0);
}

.quiz-button svg {
    width: 16px;
    height: 16px;
}

.quiz-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Events Section */
.events-section {
    width: 100%;
    padding: 10px 0 30px 0;
}

.events-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 20px 20px;
}

.events-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-blue);
    margin: 0;
}

.view-all-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, var(--color-orange), #ff7a2e);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 94, 0, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 94, 0, 0.4);
}

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

.view-all-btn svg {
    width: 16px;
    height: 16px;
}

.events-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 20px 10px 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.events-scroll::-webkit-scrollbar {
    height: 6px;
}

.events-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.events-scroll::-webkit-scrollbar-thumb {
    background: var(--color-blue);
    border-radius: 3px;
}

.events-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--color-orange);
}

/* Event Card */
.event-card {
    flex: 0 0 280px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.event-card .event-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 6px;
}

.event-icon {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 5px;
}

.event-date {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-orange);
    text-transform: uppercase;
}

.event-time {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-blue);
}

.event-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.4;
    flex-grow: 1;
}

.event-location {
    font-size: 13px;
    color: var(--color-teal);
    font-weight: 500;
    margin-top: 5px;
}

/* Menu Buttons Section */
.menu-buttons-section {
    width: 100%;
    padding: 20px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.menu-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-height: 100px;
}

.menu-button:active {
    transform: scale(0.97);
}

.menu-button-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.menu-button-icon svg {
    width: 24px;
    height: 24px;
    color: inherit;
}

.menu-button-text {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    color: inherit;
}

/* Button Colors */
.menu-button-blue {
    background: var(--color-blue);
    color: var(--color-white);
}

.menu-button-blue:hover {
    background: #03559e;
    box-shadow: 0 4px 12px rgba(2, 69, 155, 0.3);
}

.menu-button-orange {
    background: var(--color-orange);
    color: var(--color-white);
}

.menu-button-orange:hover {
    background: #ff6e1a;
    box-shadow: 0 4px 12px rgba(255, 94, 0, 0.3);
}

.menu-button-teal {
    background: var(--color-teal);
    color: var(--color-white);
}

.menu-button-teal:hover {
    background: #05bcac;
    box-shadow: 0 4px 12px rgba(4, 172, 156, 0.3);
}

.menu-button-yellow {
    background: var(--color-yellow);
    color: var(--color-white);
}

.menu-button-yellow:hover {
    background: #fdbb2f;
    box-shadow: 0 4px 12px rgba(252, 171, 15, 0.3);
}

/* WhatsApp Support Button */
.whatsapp-button {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 60px !important;
    height: 60px !important;
    background: #25D366 !important;
    border: none !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4) !important;
    z-index: 99999 !important;
    transition: all 0.3s ease !important;
    animation: pulse-whatsapp 2s infinite !important;
}

/* Mobile Specific */
@media only screen and (max-width: 768px) {
    .whatsapp-button {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        width: 56px !important;
        height: 56px !important;
        display: flex !important;
        z-index: 999999 !important;
    }
}

@media only screen and (max-width: 480px) {
    .whatsapp-button {
        bottom: 16px !important;
        right: 16px !important;
    }
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

@keyframes pulse-widget {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1);
        transform: scale(1.02);
    }
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 999999 !important;
    cursor: pointer !important;
}

.whatsapp-widget-inner {
    transition: transform 0.3s ease !important;
}

.whatsapp-widget:hover .whatsapp-widget-inner {
    transform: scale(1.05) !important;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

.whatsapp-button svg {
    width: 28px;
    height: 28px;
    color: white;
}

/* Support Form Modal */
.support-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999 !important;
    display: none;
}

.support-modal.active {
    display: block;
}

.support-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
    z-index: 1;
}

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

.support-form-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-radius: 20px 20px 0 0;
    padding: 24px 20px;
    max-height: 85vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
    z-index: 2;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.support-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    transition: all 0.3s ease;
    border-radius: 50%;
}

.support-close:hover {
    background: rgba(0, 0, 0, 0.05);
}

.support-close svg {
    width: 20px;
    height: 20px;
}

.support-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-blue);
    margin: 0 0 20px 0;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    color: var(--color-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.support-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.support-submit:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.support-submit:active {
    transform: translateY(0);
}

.support-submit svg {
    width: 18px;
    height: 18px;
}

/* Footer */
.footer {
    width: 100%;
    background: var(--color-dark);
    padding: 24px 20px;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--color-orange);
    transform: translateY(-3px);
}

.social-link:active {
    transform: translateY(0);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link-tiktok svg {
    width: 18px;
    height: 18px;
}

.footer-divider {
    width: 100%;
    max-width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-credit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.tb-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.3s ease;
}

.tb-link:hover {
    color: var(--color-orange);
}

/* Prevent scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Event Calendar Page Styles */
.page-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, var(--color-blue) 0%, #03559e 100%);
}

.back-button {
    position: absolute;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.back-button svg {
    width: 22px;
    height: 22px;
}

.page-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
}

/* Search Bar */
.search-container {
    padding: 16px 20px 12px 20px;
    background: var(--color-white);
    border-bottom: 1px solid #f0f0f0;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 0 14px;
    gap: 10px;
    transition: all 0.3s ease;
}

.search-wrapper:focus-within {
    background: #fff;
    box-shadow: 0 0 0 2px var(--color-blue);
}

.search-wrapper svg:first-child {
    width: 20px;
    height: 20px;
    color: #666;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    padding: 12px 0;
    border: none;
    background: transparent;
    font-size: 16px;
    color: var(--color-dark);
    outline: none;
}

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

.search-clear {
    width: 24px;
    height: 24px;
    background: #ddd;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.search-clear:hover {
    background: #ccc;
}

.search-clear svg {
    width: 14px;
    height: 14px;
    color: var(--color-dark);
}

.search-results-count {
    margin-top: 8px;
    font-size: 13px;
    color: #666;
    text-align: center;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 8px;
    padding: 12px 20px;
    overflow-x: auto;
    background: var(--color-white);
    border-bottom: 1px solid #f0f0f0;
    -webkit-overflow-scrolling: touch;
}

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

.filter-tab {
    flex-shrink: 0;
    padding: 10px 20px;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-tab:hover {
    background: #e8e8e8;
}

.filter-tab.active {
    background: var(--color-blue);
    color: var(--color-white);
    border-color: var(--color-blue);
}

/* Events Container */
.events-container {
    padding: 20px;
}

/* Countdown Banner */
.countdown-banner {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-yellow) 100%);
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(255, 94, 0, 0.2);
}

.countdown-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.countdown-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    opacity: 0.95;
}

.countdown-timer {
    display: flex;
    gap: 12px;
    align-items: center;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.countdown-value {
    background: var(--color-white);
    color: var(--color-orange);
    font-size: 20px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 50px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.countdown-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
}

/* Day Section */
.day-section {
    margin-bottom: 30px;
}

.day-section.hidden {
    display: none;
}

.day-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-orange);
}

.day-badge {
    font-size: 24px;
    line-height: 1;
}

.day-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-blue);
    margin: 0;
}

/* Venue Section */
.venue-section {
    margin-bottom: 24px;
    background: var(--color-white);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.venue-section:hover {
    border-color: var(--color-teal);
    box-shadow: 0 4px 16px rgba(4, 172, 156, 0.15);
}

.venue-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--color-teal) 0%, #05bcac 100%);
    border-bottom: none;
}

.venue-header svg {
    width: 26px;
    height: 26px;
    color: var(--color-white);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.venue-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Event List */
.event-list {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Event Item */
.event-item {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    background: #fafafa;
    border-radius: 10px;
    border-left: 3px solid var(--color-orange);
    transition: all 0.3s ease;
    position: relative;
    min-height: 70px;
}

.event-item:hover {
    background: #f5f5f5;
    border-left-color: var(--color-blue);
    transform: translateX(2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Special Event Styles */
.event-item.special-event {
    background: linear-gradient(135deg, #e8f5f3 0%, #f0f9f7 100%);
    border-left: 4px solid var(--color-teal);
    box-shadow: 0 3px 12px rgba(4, 172, 156, 0.15);
    position: relative;
    overflow: hidden;
}

.event-item.special-event::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(4, 172, 156, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.event-item.special-event:hover {
    background: linear-gradient(135deg, #d5ede9 0%, #e8f5f3 100%);
    border-left-color: var(--color-teal);
    transform: translateX(2px);
    box-shadow: 0 4px 16px rgba(4, 172, 156, 0.25);
}

.special-event .event-icon {
    font-size: 18px;
    margin-right: 6px;
    display: inline-block;
    animation: leafPulse 2s ease-in-out infinite;
}

@keyframes leafPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.special-event .event-details {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin-top: 6px;
    font-style: italic;
}

.event-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.event-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    align-items: center;
}

.event-action-btn {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.share-btn {
    background: var(--color-teal);
    box-shadow: 0 2px 6px rgba(4, 172, 156, 0.25);
}

.share-btn:hover {
    background: #05bcac;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(4, 172, 156, 0.35);
}

.reminder-btn {
    background: var(--color-orange);
    box-shadow: 0 2px 6px rgba(255, 94, 0, 0.25);
}

.reminder-btn:hover {
    background: #ff6e1a;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 94, 0, 0.35);
}

.reminder-btn.active {
    background: #10b981;
    animation: bellRing 0.5s ease;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.event-action-btn:active {
    transform: translateY(0) scale(0.95);
}

.event-action-btn svg {
    width: 20px;
    height: 20px;
    color: var(--color-white);
}

.event-time {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-blue);
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.event-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.5;
    margin: 0;
}

.event-speaker {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
    margin-top: 4px;
    font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .event-item {
        padding: 12px;
    }
    
    .event-action-btn {
        width: 36px;
        height: 36px;
    }
    
    .event-action-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 18px;
    }
    
    .back-button {
        width: 36px;
        height: 36px;
    }
    
    .day-title {
        font-size: 17px;
    }
    
    .venue-name {
        font-size: 15px;
    }
    
    .event-item {
        padding: 12px;
        gap: 10px;
    }
    
    .event-main {
        gap: 4px;
    }
    
    .event-time {
        font-size: 11px;
    }
    
    .event-name {
        font-size: 14px;
    }
    
    .event-actions {
        gap: 6px;
    }
    
    .event-action-btn {
        width: 34px;
        height: 34px;
    }
    
    .countdown-value {
        font-size: 18px;
        padding: 6px 10px;
        min-width: 45px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
}

/* ==================== PRICE LIST PAGE ==================== */

.price-bottom-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 32px 16px 24px;
    padding-bottom: 20px;
}

.price-bottom-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: 2px solid;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.price-bottom-btn:active {
    transform: scale(0.98);
}

.price-bottom-btn.pdf-btn {
    border-color: var(--color-blue);
    color: var(--color-blue);
}

.price-bottom-btn.pdf-btn:hover {
    background: var(--color-blue);
    color: white;
}

.price-bottom-btn.share-btn {
    border-color: #25D366;
    color: #25D366;
}

.price-bottom-btn.share-btn:hover {
    background: #25D366;
    color: white;
}

.price-bottom-btn i {
    width: 18px;
    height: 18px;
}

.price-tables {
    padding: 0 16px 32px;
    max-width: 900px;
    margin: 0 auto;
}

.price-section {
    margin-bottom: 32px;
}

.price-category-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-blue);
    text-align: center;
    margin-bottom: 16px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(2, 69, 155, 0.05), rgba(255, 94, 0, 0.05));
    border-radius: 12px;
    border-left: 4px solid var(--color-orange);
}

.price-table-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table thead {
    background: var(--color-blue);
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.price-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-table th:last-child {
    text-align: right;
}

.price-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.price-table tbody tr:hover {
    background-color: rgba(2, 69, 155, 0.03);
}

.price-table tbody tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

.price-table tbody tr:nth-child(even):hover {
    background-color: rgba(2, 69, 155, 0.05);
}

.price-table td {
    padding: 12px 16px;
    font-size: 14px;
}

.price-table td:first-child {
    font-weight: 500;
    color: var(--color-dark);
}

.price-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--color-orange);
    white-space: nowrap;
}

.price-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    margin: 24px 16px;
    background: linear-gradient(135deg, #fff7e6, #fff);
    border-left: 4px solid var(--color-yellow);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.price-note i {
    width: 24px;
    height: 24px;
    color: var(--color-yellow);
    flex-shrink: 0;
}

.price-note p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .price-category-title {
        font-size: 18px;
    }
    
    .price-action-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .price-table th,
    .price-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .price-table th {
        font-size: 12px;
    }
    
    .price-note {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .price-bottom-actions {
        flex-direction: column;
        gap: 8px;
        margin: 24px 16px 20px;
    }
    
    .price-bottom-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .price-table th,
    .price-table td {
        padding: 8px 10px;
        font-size: 12px;
    }
}

/* ==================== SPONSORS PAGE ==================== */

.sponsor-image-container {
    width: 100%;
    padding: 0;
    margin: 0;
}

.sponsor-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sponsor-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 20px;
    margin: 20px 16px;
    background: linear-gradient(135deg, rgba(2, 69, 155, 0.05), rgba(4, 172, 156, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(2, 69, 155, 0.1);
}

.sponsor-note i {
    width: 24px;
    height: 24px;
    color: var(--color-orange);
    flex-shrink: 0;
}

.sponsor-note p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-blue);
    font-weight: 500;
    text-align: center;
}

@media (max-width: 768px) {
    .sponsor-note {
        margin: 16px 12px;
        padding: 20px 16px;
    }
    
    .sponsor-note p {
        font-size: 13px;
    }
    
    .sponsor-note i {
        width: 20px;
        height: 20px;
    }
}

/* ==================== SURVEY PAGE ==================== */

.survey-intro {
    text-align: center;
    padding: 32px 20px;
    margin: 0 16px 24px;
    background: linear-gradient(135deg, rgba(4, 172, 156, 0.05), rgba(2, 69, 155, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(4, 172, 156, 0.2);
}

.survey-intro-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-teal), var(--color-blue));
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(4, 172, 156, 0.3);
}

.survey-intro-icon i {
    width: 32px;
    height: 32px;
    color: white;
}

.survey-intro-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-blue);
    margin: 0 0 12px;
}

.survey-intro-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.survey-form {
    padding: 0 16px 24px;
    max-width: 600px;
    margin: 0 auto;
}

.survey-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-blue);
    margin: 32px 0 20px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(2, 69, 155, 0.08), rgba(4, 172, 156, 0.08));
    border-left: 4px solid var(--color-teal);
    border-radius: 8px;
}

.survey-section-title:first-of-type {
    margin-top: 0;
}

.survey-section-title i {
    width: 24px;
    height: 24px;
    color: var(--color-teal);
    flex-shrink: 0;
}

.survey-question {
    margin-bottom: 24px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.survey-question-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-blue);
    margin-bottom: 12px;
    line-height: 1.4;
}

.survey-question-required {
    color: var(--color-orange);
    margin-left: 4px;
}

.survey-input,
.survey-select,
.survey-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.survey-input:focus,
.survey-select:focus,
.survey-textarea:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(4, 172, 156, 0.1);
}

.survey-textarea {
    resize: vertical;
    min-height: 100px;
}

.survey-radio-group,
.survey-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.survey-radio-option,
.survey-checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(2, 69, 155, 0.02);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.survey-radio-option:hover,
.survey-checkbox-option:hover {
    background: rgba(2, 69, 155, 0.05);
}

.survey-radio-option input[type="radio"],
.survey-checkbox-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-teal);
}

.survey-radio-option label,
.survey-checkbox-option label {
    flex: 1;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-dark);
}

.survey-rating {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.survey-rating-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: white;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.survey-rating-btn:hover {
    border-color: var(--color-teal);
    background: rgba(4, 172, 156, 0.05);
}

.survey-rating-btn.active {
    border-color: var(--color-teal);
    background: var(--color-teal);
    color: white;
}

.survey-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--color-teal), var(--color-blue));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(4, 172, 156, 0.3);
    margin-top: 32px;
}

.survey-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(4, 172, 156, 0.4);
}

.survey-submit-btn:active {
    transform: translateY(0);
}

.survey-submit-btn i {
    width: 20px;
    height: 20px;
}

.survey-notification {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
}

.survey-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.survey-notification i {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.survey-notification span {
    font-size: 14px;
    font-weight: 600;
}

.survey-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.survey-placeholder i {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.survey-placeholder p {
    font-size: 15px;
    margin: 0;
}

@media (max-width: 768px) {
    .survey-intro {
        padding: 24px 16px;
        margin: 0 12px 20px;
    }
    
    .survey-intro-icon {
        width: 56px;
        height: 56px;
    }
    
    .survey-intro-icon i {
        width: 28px;
        height: 28px;
    }
    
    .survey-intro-title {
        font-size: 18px;
    }
    
    .survey-intro-text {
        font-size: 13px;
    }
    
    .survey-form {
        padding: 0 12px 20px;
    }
    
    .survey-section-title {
        font-size: 16px;
        margin: 24px 0 16px;
        padding: 12px 16px;
    }
    
    .survey-section-title i {
        width: 20px;
        height: 20px;
    }
    
    .survey-question {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .survey-question-label {
        font-size: 14px;
    }
    
    .survey-rating {
        gap: 6px;
    }
    
    .survey-rating-btn {
        width: auto;
        min-width: 70px;
        height: 44px;
        font-size: 13px;
        padding: 0 12px;
    }
    
    .survey-submit-btn {
        padding: 14px 20px;
        font-size: 15px;
        margin-top: 24px;
    }
    
    .survey-notification {
        top: 70px;
        left: 16px;
        right: 16px;
        transform: translateX(0) translateY(-20px);
        width: auto;
    }
    
    .survey-notification.show {
        transform: translateX(0) translateY(0);
    }
}

/* ==================== FAQ PAGE ==================== */

.faq-container {
    padding: 0 16px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 32px;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(2, 69, 155, 0.08), rgba(4, 172, 156, 0.08));
    border-left: 4px solid var(--color-teal);
    border-radius: 8px;
}

.faq-category-header i {
    width: 24px;
    height: 24px;
    color: var(--color-teal);
    flex-shrink: 0;
}

.faq-category-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-blue);
    margin: 0;
}

.faq-item {
    margin-bottom: 12px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(2, 69, 155, 0.02);
}

.faq-question-text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-blue);
    line-height: 1.5;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--color-teal);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

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

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    padding: 0 20px 20px;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-dark);
}

.faq-answer p + p {
    padding-top: 12px;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 40px;
    padding-right: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer strong {
    color: var(--color-blue);
    font-weight: 600;
}

.faq-answer em {
    color: #888;
}

.faq-no-results {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.faq-no-results i {
    width: 64px;
    height: 64px;
    color: #ddd;
    margin-bottom: 16px;
}

.faq-no-results p {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 8px;
}

.faq-no-results small {
    font-size: 14px;
    color: #888;
}

@media (max-width: 768px) {
    .faq-container {
        padding: 0 12px 20px;
    }
    
    .faq-category {
        margin-bottom: 24px;
    }
    
    .faq-category-header {
        padding: 12px 16px;
        margin-bottom: 12px;
    }
    
    .faq-category-header i {
        width: 20px;
        height: 20px;
    }
    
    .faq-category-header h2 {
        font-size: 16px;
    }
    
    .faq-item {
        margin-bottom: 10px;
    }
    
    .faq-question {
        padding: 14px 16px;
    }
    
    .faq-question-text {
        font-size: 14px;
    }
    
    .faq-icon {
        width: 18px;
        height: 18px;
    }
    
    .faq-answer p,
    .faq-answer ul,
    .faq-answer ol {
        padding: 0 16px 16px;
        font-size: 13px;
    }
    
    .faq-answer ul,
    .faq-answer ol {
        padding-left: 32px;
    }
    
    .faq-no-results {
        padding: 40px 20px;
    }
    
    .faq-no-results i {
        width: 48px;
        height: 48px;
    }
    
    .faq-no-results p {
        font-size: 15px;
    }
    
    .faq-no-results small {
        font-size: 13px;
    }
}

/* ==================== TRANSPORTATION PAGE ==================== */

.transport-intro {
    text-align: center;
    padding: 32px 20px;
    margin: 0 16px 24px;
    background: linear-gradient(135deg, rgba(2, 69, 155, 0.05), rgba(4, 172, 156, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(4, 172, 156, 0.2);
}

.transport-intro-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-blue), var(--color-teal));
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(2, 69, 155, 0.3);
}

.transport-intro-icon i {
    width: 32px;
    height: 32px;
    color: white;
}

.transport-intro h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-blue);
    margin: 0 0 8px;
}

.transport-intro p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.transport-container {
    padding: 0 16px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.transport-section {
    margin-bottom: 32px;
}

.transport-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(2, 69, 155, 0.08), rgba(4, 172, 156, 0.08));
    border-left: 4px solid var(--color-teal);
    border-radius: 8px;
}

.transport-header.warning {
    background: linear-gradient(135deg, rgba(255, 94, 0, 0.08), rgba(252, 171, 15, 0.08));
    border-left-color: var(--color-orange);
}

.transport-header i {
    width: 24px;
    height: 24px;
    color: var(--color-teal);
    flex-shrink: 0;
}

.transport-header.warning i {
    color: var(--color-orange);
}

.transport-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-blue);
    margin: 0;
}

.transport-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.transport-card.highlight {
    border: 2px solid rgba(4, 172, 156, 0.3);
    background: linear-gradient(135deg, rgba(4, 172, 156, 0.02), rgba(2, 69, 155, 0.02));
}

.transport-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-blue);
    margin: 0 0 16px;
}

.transport-card-title i {
    width: 20px;
    height: 20px;
    color: var(--color-teal);
}

.transport-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transport-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-dark);
}

.transport-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.transport-list li:first-child {
    padding-top: 0;
}

.transport-list li strong {
    color: var(--color-blue);
}

.transport-distance {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: rgba(4, 172, 156, 0.1);
    color: var(--color-teal);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.transport-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.transport-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: var(--color-blue);
    color: white;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.transport-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: rgba(2, 69, 155, 0.05);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

.transport-note i {
    width: 16px;
    height: 16px;
    color: var(--color-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.parking-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.parking-list li i {
    width: 16px;
    height: 16px;
    color: var(--color-teal);
    flex-shrink: 0;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.transport-mini-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.transport-mini-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.transport-mini-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(2, 69, 155, 0.1), rgba(4, 172, 156, 0.1));
    border-radius: 50%;
}

.transport-mini-icon i {
    width: 28px;
    height: 28px;
    color: var(--color-teal);
}

.transport-mini-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-blue);
    margin: 0 0 8px;
}

.transport-mini-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.transport-warnings {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.transport-warning-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: white;
    border: 1px solid rgba(255, 94, 0, 0.2);
    border-left: 4px solid var(--color-orange);
    border-radius: 8px;
}

.transport-warning-item i {
    width: 24px;
    height: 24px;
    color: var(--color-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.transport-warning-item strong {
    display: block;
    font-size: 15px;
    color: var(--color-blue);
    margin-bottom: 4px;
}

.transport-warning-item p {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .transport-intro {
        padding: 24px 16px;
        margin: 0 12px 20px;
    }
    
    .transport-intro-icon {
        width: 56px;
        height: 56px;
    }
    
    .transport-intro-icon i {
        width: 28px;
        height: 28px;
    }
    
    .transport-intro h2 {
        font-size: 18px;
    }
    
    .transport-intro p {
        font-size: 13px;
    }
    
    .transport-container {
        padding: 0 12px 20px;
    }
    
    .transport-section {
        margin-bottom: 24px;
    }
    
    .transport-header {
        padding: 12px 16px;
        margin-bottom: 12px;
    }
    
    .transport-header i {
        width: 20px;
        height: 20px;
    }
    
    .transport-header h2 {
        font-size: 16px;
    }
    
    .transport-card {
        padding: 16px;
        margin-bottom: 12px;
    }
    
    .transport-card-title {
        font-size: 15px;
    }
    
    .transport-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 0;
        font-size: 13px;
    }
    
    .transport-distance {
        align-self: flex-start;
    }
    
    .transport-badges {
        gap: 6px;
    }
    
    .transport-badge {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .transport-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .transport-mini-card {
        padding: 16px;
    }
    
    .transport-mini-icon {
        width: 48px;
        height: 48px;
    }
    
    .transport-mini-icon i {
        width: 24px;
        height: 24px;
    }
    
    .transport-mini-card h4 {
        font-size: 15px;
    }
    
    .transport-mini-card p {
        font-size: 12px;
    }
    
    .transport-warning-item {
        padding: 12px;
        gap: 12px;
    }
    
    .transport-warning-item i {
        width: 20px;
        height: 20px;
    }
    
    .transport-warning-item strong {
        font-size: 14px;
    }
    
    .transport-warning-item p {
        font-size: 12px;
    }
}

/* ==================== QUIZ PAGE (KAHOOT) ==================== */

/* Quiz Welcome Modal */
.quiz-welcome-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.quiz-welcome-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
}

.quiz-welcome-content {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease-out;
    z-index: 1;
}

.quiz-welcome-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(252, 171, 15, 0.4);
    animation: bounceIn 0.6s ease-out;
}

.quiz-welcome-icon i {
    width: 40px;
    height: 40px;
    color: white;
}

.quiz-welcome-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-blue);
    margin: 0 0 20px;
    line-height: 1.3;
}

.quiz-welcome-message {
    margin: 0 0 28px;
}

.quiz-welcome-message p {
    font-size: 16px;
    color: var(--color-dark);
    line-height: 1.6;
    margin: 0 0 12px;
}

.quiz-welcome-message p:last-child {
    margin-bottom: 0;
    color: #666;
    font-size: 15px;
}

.quiz-welcome-message strong {
    color: var(--color-orange);
    font-weight: 700;
}

.quiz-welcome-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--color-blue), #0056b3);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(2, 69, 155, 0.3);
}

.quiz-welcome-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 69, 155, 0.4);
}

.quiz-welcome-btn:active {
    transform: translateY(0);
}

.quiz-welcome-btn i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.quiz-welcome-btn:hover i {
    transform: translateX(4px);
}

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

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .quiz-welcome-content {
        padding: 32px 24px;
        width: 92%;
        border-radius: 20px;
    }
    
    .quiz-welcome-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .quiz-welcome-icon i {
        width: 32px;
        height: 32px;
    }
    
    .quiz-welcome-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .quiz-welcome-message {
        margin-bottom: 24px;
    }
    
    .quiz-welcome-message p {
        font-size: 15px;
    }
    
    .quiz-welcome-message p:last-child {
        font-size: 14px;
    }
    
    .quiz-welcome-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

.quiz-intro {
    text-align: center;
    padding: 16px 20px;
    margin: 0 16px 16px;
    background: linear-gradient(135deg, rgba(252, 171, 15, 0.05), rgba(255, 94, 0, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(252, 171, 15, 0.2);
}

.quiz-intro-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(252, 171, 15, 0.3);
}

.quiz-intro-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.quiz-intro h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-blue);
    margin: 0 0 8px;
}

.quiz-intro p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.quiz-container {
    padding: 0 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.quiz-iframe-container {
    width: 100%;
    height: 88vh;
    min-height: 700px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(252, 171, 15, 0.2);
}

.quiz-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .quiz-intro {
        padding: 12px 16px;
        margin: 0 12px 12px;
    }
    
    .quiz-intro-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 8px;
    }
    
    .quiz-intro-icon i {
        width: 20px;
        height: 20px;
    }
    
    .quiz-intro h2 {
        font-size: 16px;
    }
    
    .quiz-intro p {
        font-size: 13px;
    }
    
    .quiz-container {
        padding: 0 12px 20px;
    }
    
    .quiz-iframe-container {
        height: 82vh;
        min-height: 600px;
        border-radius: 12px;
    }
}

/* ==================== COMPANIES PAGE ==================== */

/* Category Filter Buttons */
.category-filter-container {
    padding: 16px 20px;
    background: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.category-filter-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(2, 69, 155, 0.3) transparent;
}

.category-filter-scroll::-webkit-scrollbar {
    height: 4px;
}

.category-filter-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.category-filter-scroll::-webkit-scrollbar-thumb {
    background: rgba(2, 69, 155, 0.3);
    border-radius: 2px;
}

.category-filter-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(2, 69, 155, 0.08);
    color: var(--color-blue);
    border: 1px solid rgba(2, 69, 155, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-filter-btn:hover {
    background: rgba(2, 69, 155, 0.15);
    border-color: rgba(2, 69, 155, 0.4);
    transform: translateY(-1px);
}

.category-filter-btn.active {
    background: var(--color-blue);
    color: var(--color-white);
    border-color: var(--color-blue);
}

.category-filter-btn .category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

.category-filter-btn.active .category-count {
    background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    .category-filter-container {
        padding: 12px 16px;
    }
    
    .category-filter-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .category-filter-btn .category-count {
        min-width: 18px;
        height: 18px;
        padding: 0 5px;
        font-size: 10px;
    }
}

.companies-container {
    padding: 0 16px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.company-category {
    margin-bottom: 40px;
}

.category-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-blue);
    text-align: center;
    margin-bottom: 20px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(2, 69, 155, 0.05), rgba(255, 94, 0, 0.05));
    border-radius: 12px;
    border-left: 4px solid var(--color-orange);
}

.sponsor-category .category-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sponsor-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-yellow);
    color: var(--color-dark);
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.sponsor-badge-inline {
    display: inline-block;
    padding: 2px 8px;
    background: var(--color-yellow);
    color: var(--color-dark);
    font-size: 10px;
    font-weight: 700;
    border-radius: 12px;
    letter-spacing: 0.5px;
    margin-left: 8px;
    vertical-align: middle;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.company-card {
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.company-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.sponsor-card {
    border: 2px solid var(--color-yellow);
    background: linear-gradient(135deg, #fff, #fffbf0);
}

.company-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.instagram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 12px;
    background: transparent;
    border: 1.5px solid #E4405F;
    color: #E4405F;
    text-decoration: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.instagram-btn:hover {
    background: #E4405F;
    color: white;
}

.instagram-btn.disabled {
    border-color: #ccc;
    color: #ccc;
    cursor: not-allowed;
    pointer-events: none;
}

.instagram-btn i {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .companies-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 12px;
    }
    
    .category-title {
        font-size: 18px;
    }
    
    .company-name {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .companies-grid {
        grid-template-columns: 1fr;
    }
    
    .company-card {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .company-name {
        font-size: 14px;
    }
    
    .instagram-btn {
        font-size: 11px;
        padding: 5px 10px;
        gap: 3px;
    }
    
    .instagram-btn i {
        width: 14px;
        height: 14px;
    }
}

/* ==================== HARITA (MAP) PAGE ==================== */
.map-intro {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
}

.map-intro-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.map-intro-icon i {
    width: 32px;
    height: 32px;
    color: white;
}

.map-intro h2 {
    font-size: 24px;
    color: var(--color-blue);
    margin-bottom: 12px;
}

.map-intro p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.map-container {
    margin: 0 0 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
}

.map-iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.map-info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.map-info-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.map-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.map-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(2, 69, 155, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-info-icon i {
    width: 24px;
    height: 24px;
    color: var(--color-blue);
}

.map-info-content {
    flex: 1;
}

.map-info-content h3 {
    font-size: 16px;
    color: var(--color-blue);
    margin-bottom: 6px;
}

.map-info-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.map-info-link {
    color: var(--color-teal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.map-info-link:hover {
    color: var(--color-blue);
    text-decoration: underline;
}

.map-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.map-action-btn {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--color-blue);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.map-action-btn:hover {
    background: #013a7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 69, 155, 0.3);
}

.map-action-btn i {
    width: 20px;
    height: 20px;
}

.map-action-btn-outline {
    background: white;
    color: var(--color-blue);
    border: 2px solid var(--color-blue);
}

.map-action-btn-outline:hover {
    background: var(--color-blue);
    color: white;
}

.map-nearby {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.map-nearby h3 {
    font-size: 20px;
    color: var(--color-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.map-nearby-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.map-nearby-item:hover {
    background: rgba(4, 172, 156, 0.1);
}

.map-nearby-item i {
    width: 24px;
    height: 24px;
    color: var(--color-teal);
    flex-shrink: 0;
}

.map-nearby-item span {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .map-intro h2 {
        font-size: 20px;
    }
    
    .map-intro p {
        font-size: 14px;
    }
    
    .map-iframe {
        height: 300px;
    }
    
    .map-info-container {
        grid-template-columns: 1fr;
    }
    
    .map-actions {
        flex-direction: column;
    }
    
    .map-action-btn {
        min-width: 100%;
    }
    
    .map-nearby-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .map-intro {
        padding: 16px;
    }
    
    .map-intro-icon {
        width: 50px;
        height: 50px;
    }
    
    .map-intro-icon i {
        width: 26px;
        height: 26px;
    }
    
    .map-iframe {
        height: 250px;
    }
    
    .map-info-card {
        padding: 16px;
    }
    
    .map-nearby {
        padding: 16px;
    }
}

/* ==================== VIDEO MODAL ==================== */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.video-modal.active {
    display: block;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    z-index: 10001;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
}

.video-close:hover {
    background: white;
    transform: scale(1.1);
}

.video-close i {
    width: 20px;
    height: 20px;
    color: #333;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video modal animation */
.video-modal.active .video-modal-content {
    animation: videoModalIn 0.3s ease-out;
}

@keyframes videoModalIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }
    
    .video-close {
        top: -35px;
        width: 32px;
        height: 32px;
    }
    
    .video-close i {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .video-modal-content {
        width: 98%;
    }
    
    .video-close {
        top: -30px;
        width: 28px;
        height: 28px;
    }
    
    .video-close i {
        width: 16px;
        height: 16px;
    }
    
    .video-wrapper {
        border-radius: 8px;
    }
}

/* ==================== DESKTOP OPTIMIZATION ==================== */
/* Masaüstü için ortalanmış görünüm - 500px */

@media (min-width: 1024px) {
    /* Ana İçerik Alanı */
    .main-content {
        max-width: 500px;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Header İçeriği - 500px ile sınırla */
    .header {
        max-width: 500px;
        margin: 0 auto;
        left: 50%;
        transform: translateX(-50%);
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Logo ve butonların header içinde kalması için */
    .logo-container {
        max-width: 100%;
    }
    
    /* Slider Ortalama */
    .slider-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Countdown Bar */
    .countdown-bar {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Quiz Banner */
    .quiz-banner {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Events Section */
    .events-section {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Menu Buttons Grid */
    .menu-buttons-section {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 20px;
    }
    
    /* Event Cards Grid - 500px'te 1 sütun */
    .events-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Footer */
    .footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .footer-content {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Price Tables */
    .price-tables {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Company Grid - 500px'te 1 sütun */
    .companies-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* FAQ Sections */
    .faq-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Survey Form */
    .survey-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Transport Page */
    .transport-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Quiz Page */
    .quiz-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Calendar */
    .calendar-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Sponsor Page */
    .sponsor-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Çok geniş ekranlar için (1400px+) - biraz daha geniş */
@media (min-width: 1400px) {
    /* Ana içerik biraz daha geniş */
    .main-content,
    .header,
    .slider-container,
    .countdown-bar,
    .quiz-banner,
    .events-section,
    .menu-buttons-section,
    .footer-content,
    .price-tables,
    .faq-container,
    .survey-container,
    .transport-container,
    .quiz-container,
    .calendar-container,
    .sponsor-container {
        max-width: 600px;
    }
    
    /* Grid'ler aynı kalabilir - 2 sütun */
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
    }
}

/* Marquee ve Footer için desktop düzeni */
@media (min-width: 1024px) {
    /* Marquee ortalama */
    .marquee {
        padding-left: calc((100% - 500px) / 2);
        padding-right: calc((100% - 500px) / 2);
    }
    
    .marquee-content {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Footer background full ama içerik ortalı (zaten var ama emin olalım) */
    .footer {
        /* Background full width kalır */
    }
}

/* Geniş ekranlar için */
@media (min-width: 1400px) {
    .marquee {
        padding-left: calc((100% - 600px) / 2);
        padding-right: calc((100% - 600px) / 2);
    }
    
    .marquee-content {
        max-width: 600px;
    }
}
