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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-light);
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
}

/* Color Variables - Professional Modern Palette */
:root {
    --primary-color: #3E94A5;
    --secondary-color: #C9231F;
    --accent-color: #2A7A87;
    --golden-color: #F4A261;
    --cream-color: #F8F9FA;
    --text-dark: #2D3436;
    --text-light: #636E72;
    --text-muted: #95A5A6;
    --bg-light: #F8F9FA;
    --bg-section: #FFFFFF;
    --white: #ffffff;
    --shadow: 0 8px 30px rgba(62, 148, 165, 0.12);
    --professional-shadow: 0 4px 20px rgba(201, 35, 31, 0.15);
    --primary-gradient: linear-gradient(135deg, #3E94A5 0%, #2A7A87 100%);
    --secondary-gradient: linear-gradient(135deg, #C9231F 0%, #A91E1B 100%);
    --professional-pattern: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233E94A5' fill-opacity='0.03'%3E%3Cpath d='M30 0l30 30-30 30L0 30z'/%3E%3C/g%3E%3C/svg%3E");
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 650;
    margin-bottom: 1.8rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1.2rem;
}

h5, h6 {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.75;
    font-size: clamp(16px, 1.2vw, 18px);
    font-weight: 400;
}

.highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 36px;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.3px;
    position: relative;
    min-width: 160px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(62, 148, 165, 0.2);
    border: 1px solid rgba(62, 148, 165, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(62, 148, 165, 0.3);
    background: linear-gradient(135deg, #2A7A87 0%, #3E94A5 100%);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

.btn-secondary {
    background: rgba(62, 148, 165, 0.05);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(62, 148, 165, 0.25);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

/* Welcome Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.popup-overlay.show .popup-container {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.popup-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 15px;
}

/* Mobile Popup Styles */
@media (max-width: 768px) {
    .popup-container {
        max-width: 95%;
        max-height: 85%;
    }
    
    .popup-image {
        max-width: 100%;
        max-height: 70vh;
    }
    
    .popup-close {
        top: 10px;
        right: 15px;
        font-size: 25px;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .popup-container {
        max-width: 98%;
        max-height: 80%;
        border-radius: 10px;
    }
    
    .popup-image {
        max-height: 60vh;
        border-radius: 10px;
    }
    
    .popup-close {
        top: 8px;
        right: 12px;
        font-size: 22px;
        width: 30px;
        height: 30px;
    }
}

/* Header - Professional Style */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(62, 148, 165, 0.1);
    border-bottom: 1px solid rgba(62, 148, 165, 0.08);
}

.navbar {
    padding: 0.8rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-logo h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-contact {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
    font-weight: 600;
    background: var(--secondary-gradient);
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: var(--professional-shadow);
    transition: all 0.3s ease;
    font-size: 14px;
}

.nav-contact:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(201, 35, 31, 0.25);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

/* Hero Section - Professional */
.hero {
    padding: 140px 0 120px;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.8rem;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

/* Hero Map Styles */
.hero-map {
    position: relative;
    height: 100%;
    min-height: 450px;
}

.map-container {
    position: relative;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(62, 148, 165, 0.15);
}

.google-map {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 12px;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;                /* lebih kecil dari sebelumnya */
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(62, 148, 165, 0.15);
    max-width: 350px;             /* dari 280px jadi 350px */
    height: auto;                 /* biarkan tinggi menyesuaikan isi */
}


.map-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.map-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 14px;
}

.btn-map {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-map:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(62, 148, 165, 0.3);
}

/* Stats Section - Professional */
.stats {
    padding: 100px 0;
    background: var(--primary-gradient);
    color: var(--white);
    position: relative;
    display: flex;
    align-items: center;
    min-height: 300px;
    /* Ensure stats are always visible */
    opacity: 1 !important;
    visibility: visible !important;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    line-height: 1.4;
}

/* Enhanced Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 2rem 0;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    opacity: 0.7;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 1px;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--text-dark);
    margin-bottom: 1.8rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.8px;
    position: relative;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 400;
    opacity: 0.9;
}

/* About Section - Professional */
.about {
    padding: 120px 0;
    background: var(--bg-section);
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: flex-start;
    position: relative;
    padding-left: 0.5rem;
}

.about-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.about-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(62, 148, 165, 0.2);
}

.about-info h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
}

.about-info p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.about-image {
    position: relative;
    padding-left: 2rem;
    padding-top: 2rem;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 12px;
    opacity: 0.1;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(62, 148, 165, 0.15);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Menu Section - Professional */
.menu {
    padding: 120px 0;
    background: var(--bg-light);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    padding: 0 24px;
}

.menu-tab {
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(62, 148, 165, 0.1);
}

.menu-tab.active,
.menu-tab:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    justify-items: center;
}

.menu-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(62, 148, 165, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(62, 148, 165, 0.06);
    position: relative;
    backdrop-filter: blur(10px);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(62, 148, 165, 0.2);
    border-color: rgba(62, 148, 165, 0.3);
}

.menu-item:hover::before {
    transform: scaleX(1);
}

.menu-image {
    position: relative;
    overflow: hidden;
}

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

.menu-item:hover .menu-image img {
    transform: scale(1.1);
}

.menu-info {
    padding: 1.8rem 1.5rem;
}

.menu-info h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
}

.menu-info p {
    font-size: 14px;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    color: var(--text-light);
}

.menu-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.menu-rating {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.stars {
    color: var(--golden-color);
    font-size: 0.9rem;
}

.rating-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Locations Section */
.locations {
    padding: 120px 0;
    background: var(--bg-light);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.location-item {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(62, 148, 165, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(62, 148, 165, 0.06);
    backdrop-filter: blur(10px);
    position: relative;
}

.location-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(62, 148, 165, 0.03), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.location-item:hover::before {
    left: 100%;
}

.location-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(62, 148, 165, 0.15);
    border-color: rgba(62, 148, 165, 0.15);
}

.location-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.location-info {
    padding: 2rem;
}

.location-info h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.location-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.location-detail i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

/* Reviews Section */
.reviews {
    padding: 120px 0;
    background: var(--bg-section);
}

.reviews-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: start;
}

/* Review Form Styles */
.review-form-container {
    position: sticky;
    top: 100px;
}

.review-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(62, 148, 165, 0.12);
    border: 1px solid rgba(62, 148, 165, 0.05);
    position: relative;
}

.review-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 12px 12px 0 0;
}

.review-form h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.rating-input {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stars-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.2rem;
}

.stars-input input {
    display: none;
}

.stars-input label {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.stars-input input:checked ~ label,
.stars-input label:hover,
.stars-input label:hover ~ label {
    color: var(--golden-color);
}

.rating-text {
    font-size: 14px;
    color: var(--text-light);
}

/* Reviews Display */
.reviews-display {
    max-height: 600px;
    overflow-y: auto;
}

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

.reviews-header h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.review-stats {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(62, 148, 165, 0.08);
    border: 1px solid rgba(62, 148, 165, 0.05);
}

.average-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.rating-stars {
    color: var(--golden-color);
    font-size: 1.2rem;
}

.review-count {
    color: var(--text-light);
    font-size: 14px;
}

/* Individual Review Items */
.review-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(62, 148, 165, 0.08);
    border: 1px solid rgba(62, 148, 165, 0.05);
    transition: all 0.3s ease;
}

.review-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(62, 148, 165, 0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 1rem;
    font-weight: 600;
}

.review-rating {
    color: var(--golden-color);
    font-size: 0.9rem;
}

.review-date {
    color: var(--text-muted);
    font-size: 12px;
}

.review-text {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.delete-review-btn {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.delete-review-btn:hover {
    background: #b71c1c;
    transform: scale(1.05);
}

.admin-panel {
    margin-top: 2rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid rgba(62, 148, 165, 0.12);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 4px rgba(62, 148, 165, 0.12),
        0 8px 25px rgba(62, 148, 165, 0.08);
    transform: translateY(-2px);
    background: rgba(248, 249, 250, 0.95);
}

.form-group textarea {
    resize: vertical;
}

/* Refined Compact Footer - Final Polish */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 40px 0;
    position: relative;
    border-top: 3px solid var(--secondary-color);
    overflow: hidden;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M30 0l30 30-30 30L0 30z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: flex-start;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.footer-info {
    text-align: left;
    animation: fadeInLeft 0.8s ease-out;
}

.footer-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--white);
    line-height: 1.2;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

.footer-center {
    text-align: center;
    max-width: 100%;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.footer-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
}

.footer-location {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInScale 0.6s ease-out;
}

.footer-location:nth-child(1) {
    animation-delay: 0.3s;
}

.footer-location:nth-child(2) {
    animation-delay: 0.4s;
}

.footer-location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    opacity: 0.8;
}

.footer-location:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.footer-location h5 {
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.footer-location h5::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: var(--secondary-color);
    opacity: 0.6;
}

.footer-location .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 0.6rem;
    text-align: left;
    transition: color 0.3s ease;
}

.footer-location .contact-item:hover {
    color: var(--white);
}

.footer-location .contact-item:last-child {
    margin-bottom: 0;
}

.footer-location .contact-item i {
    color: var(--secondary-color);
    width: 14px;
    font-size: 10px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: transform 0.3s ease;
}

.footer-location .contact-item:hover i {
    transform: scale(1.1);
}

.footer-location .contact-item span {
    flex: 1;
    word-wrap: break-word;
    hyphens: auto;
}

.footer-location .hours-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 0.5rem 0.7rem;
    margin-top: 0.8rem;
    border-left: 3px solid var(--secondary-color);
    position: relative;
    transition: all 0.3s ease;
}

.footer-location .hours-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-left-color: var(--white);
}

.footer-location .hours-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 35, 31, 0.1) 0%, rgba(201, 35, 31, 0.05) 100%);
    border-radius: 6px;
    pointer-events: none;
}

.footer-location .hours-item .contact-item {
    margin-bottom: 0;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.footer-social-compact {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.footer-social-compact .social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.footer-social-compact .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-social-compact .social-link:hover::before {
    left: 100%;
}

.footer-social-compact .social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px) scale(1.05);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(201, 35, 31, 0.4);
}

.footer-links {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    animation: fadeInRight 0.8s ease-out 0.1s both;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    line-height: 1.5;
    position: relative;
    padding: 0.3rem 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(-3px);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-copyright {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 400;
    position: relative;
    animation: fadeIn 0.8s ease-out 0.5s both;
}

.footer-copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

/* Footer Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        padding: 6rem 2rem 2rem;
        z-index: 9999;
        justify-content: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .nav-link {
        font-size: 1.4rem;
        font-weight: 500;
        padding: 1rem 2rem;
        border-radius: 12px;
        transition: all 0.3s ease;
        color: var(--text-dark);
        text-decoration: none;
        display: block;
        position: relative;
    }

    .nav-link:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
    }

    .nav-contact {
        display: none;
    }

    .logo-image {
        height: 40px;
    }

    .nav-logo h2 {
        font-size: 1.3rem;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 10000;
        position: relative;
    }

    .nav-toggle .bar {
        width: 25px;
        height: 3px;
        background: var(--text-dark);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

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

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 100vh;
        padding: 100px 0 60px;
        display: flex;
        align-items: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .btn {
        min-width: 200px;
        padding: 14px 24px;
        font-size: 1rem;
        border-radius: 8px;
        touch-action: manipulation;
    }

    .hero-map {
        min-height: 350px;
        margin-top: 2rem;
        border-radius: 12px;
        overflow: hidden;
    }

    .google-map {
        min-height: 350px;
    }

    .map-overlay {
        position: absolute;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        top: auto;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 1.5rem;
        text-align: center;
    }

    .map-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .map-info p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .btn-map {
        width: 100%;
        padding: 12px;
        font-size: 0.9rem;
    }

    /* Stats Section Mobile */
    .stats {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        text-align: center;
        /* Ensure stats are always visible on mobile */
        opacity: 1 !important;
        transform: translateY(0) !important;
        visibility: visible !important;
    }

    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* About Section Mobile */
    .about {
        padding: 80px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1rem;
    }

    .about-image {
        padding: 0;
        order: -1;
        margin-bottom: 1rem;
    }

    .about-image img {
        border-radius: 12px;
    }

    .about-item {
        text-align: center;
        padding: 1.5rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    .about-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
        font-size: 1.5rem;
    }

    .about-info h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .about-info p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Menu Section Mobile */
    .menu {
        padding: 80px 0;
    }

    .menu-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .menu-tab {
        width: 200px;
        text-align: center;
        padding: 12px 20px;
        font-size: 1rem;
        border-radius: 30px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .menu-item {
        border-radius: 12px;
        overflow: hidden;
    }

    .menu-info {
        padding: 1.5rem;
    }

    .menu-info h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .menu-info p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .menu-price {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 0.8rem;
    }

    .menu-rating {
        margin-bottom: 1rem;
    }

    /* Locations Section Mobile */
    .locations {
        padding: 80px 0;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .location-item {
        border-radius: 12px;
        overflow: hidden;
    }

    .location-info {
        padding: 2rem 1.5rem;
    }

    .location-info h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .location-detail {
        font-size: 1rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .location-detail i {
        width: 20px;
        text-align: center;
    }

    /* Reviews Section Mobile */
    .reviews {
        padding: 80px 0;
    }

    .reviews-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1rem;
    }

    .review-form-container {
        position: static;
        order: 2;
    }

    .review-form {
        padding: 2rem 1.5rem;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }

    .review-form h3 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 2rem;
    }

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

    .form-group label {
        font-size: 1rem;
        font-weight: 500;
        margin-bottom: 0.8rem;
        display: block;
    }

    .form-group input,
    .form-group textarea {
        padding: 15px;
        font-size: 1rem;
        border-radius: 10px;
        border: 2px solid #e1e5e9;
    }

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

    .stars-input {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin: 1rem 0;
    }

    .stars-input label {
        font-size: 2rem;
        cursor: pointer;
        transition: transform 0.2s ease;
    }

    .stars-input label:hover {
        transform: scale(1.1);
    }

    .review-item {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        margin-bottom: 1.5rem;
    }

    .review-header {
        margin-bottom: 1rem;
    }

    .reviewer-info h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .review-rating {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .review-date {
        font-size: 0.9rem;
        color: #666;
    }

    .review-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-top: 1rem;
    }

    /* Navigation Touch Improvements */
    .nav-menu {
        padding: 5rem 1.5rem 2rem;
    }

    .nav-link {
        font-size: 1.5rem;
        padding: 1.2rem 2rem;
        margin: 0.5rem 0;
        border-radius: 15px;
    }

    .nav-contact {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(0,0,0,0.1);
    }

    .nav-contact .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }

    /* Standard Footer Mobile */
    .footer {
        padding: 30px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-info,
    .footer-links {
        text-align: center;
    }

    .footer-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .footer-info p {
        font-size: 13px;
        line-height: 1.5;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-locations {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .footer-location {
        padding: 0.8rem;
        margin: 0 auto;
        max-width: 320px;
    }

    .footer-location h5 {
        font-size: 11px;
        margin-bottom: 0.6rem;
    }

    .footer-location .contact-item {
        font-size: 10px;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        justify-content: flex-start;
        text-align: left;
    }

    .footer-location .contact-item i {
        width: 12px;
        font-size: 9px;
        margin-top: 1px;
    }

    .footer-location .contact-item span {
        word-break: break-word;
        hyphens: auto;
        line-height: 1.3;
    }

    .footer-location .hours-item {
        padding: 0.4rem 0.6rem;
        margin-top: 0.6rem;
    }

    .footer-location .hours-item .contact-item {
        font-size: 9px;
        margin-bottom: 0;
        font-weight: 600;
    }

    .footer-social-compact {
        margin: 1rem 0;
        gap: 0.6rem;
    }

    .footer-social-compact .social-link {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .footer-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
        max-width: 280px;
        margin: 0 auto;
    }

    .footer-links a {
        font-size: 13px;
        padding: 0.2rem 0;
    }

    .footer-links a:hover {
        transform: translateX(0);
        transform: translateY(-2px);
    }

    .footer-copyright {
        margin-top: 1.2rem;
        padding-top: 1.2rem;
        font-size: 12px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile Small Screens (480px and below) */
@media (max-width: 480px) {
    /* Base Mobile Optimizations */
    .container,
    .nav-container {
        padding: 0 1rem;
    }

    .logo-image {
        height: 35px;
    }

    .nav-logo h2 {
        font-size: 1.1rem;
        line-height: 1.1;
    }

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

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }

    /* Hero Section Extra Small */
    .hero {
        padding: 80px 0 50px;
        min-height: 100vh;
    }

    .hero-content {
        gap: 2rem;
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 1rem;
        border-radius: 10px;
        font-weight: 500;
    }

    .hero-map,
    .google-map {
        min-height: 280px;
        border-radius: 10px;
    }

    .map-overlay {
        position: static;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    /* Stats Section Extra Small */
    .stats {
        padding: 50px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .stat-item {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        background: var(--primary-color);
        box-shadow: 0 6px 25px rgba(0,0,0,0.08);
        /* Ensure stats are always visible on mobile */
        opacity: 1 !important;
        transform: translateY(0) !important;
        visibility: visible !important;
    }

    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 1rem;
        font-weight: 500;
    }

    /* About Section Extra Small */
    .about,
    .menu,
    .locations,
    .reviews {
        padding: 60px 0;
    }

    .about-content {
        gap: 2rem;
        padding: 0 0.5rem;
    }

    .about-item {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        margin-bottom: 1.5rem;
    }

    .about-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .about-info h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .about-info p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Menu Section Extra Small */
    .menu-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 2.5rem;
    }

    .menu-tab {
        width: 200px;
        text-align: center;
        padding: 12px 20px;
        font-size: 1rem;
        border-radius: 30px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .menu-item {
        border-radius: 15px;
        box-shadow: 0 6px 25px rgba(0,0,0,0.08);
        overflow: hidden;
    }

    .menu-info {
        padding: 1.5rem;
    }

    .menu-info h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .menu-info p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .menu-price {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 0.8rem;
    }

    .menu-rating {
        margin-bottom: 1rem;
    }

    /* Locations Section Extra Small */
    .locations-grid {
        gap: 2rem;
        padding: 0 1rem;
    }

    .location-item {
        border-radius: 15px;
        box-shadow: 0 6px 25px rgba(0,0,0,0.08);
        overflow: hidden;
    }

    .location-info {
        padding: 2rem 1.5rem;
    }

    .location-info h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .location-detail {
        font-size: 1rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .location-detail i {
        width: 20px;
        text-align: center;
    }

    /* Reviews Section Extra Small */
    .reviews-content {
        gap: 2.5rem;
        padding: 0 1rem;
    }

    .review-form {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }

    .review-form h3 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 2rem;
    }

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

    .form-group label {
        font-size: 1rem;
        font-weight: 500;
        margin-bottom: 0.8rem;
        display: block;
    }

    .form-group input,
    .form-group textarea {
        padding: 15px;
        font-size: 1rem;
        border-radius: 10px;
        border: 2px solid #e1e5e9;
    }

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

    .stars-input {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin: 1rem 0;
    }

    .stars-input label {
        font-size: 2rem;
        cursor: pointer;
        transition: transform 0.2s ease;
    }

    .stars-input label:hover {
        transform: scale(1.1);
    }

    .review-item {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        margin-bottom: 1.5rem;
    }

    .review-header {
        margin-bottom: 1rem;
    }

    .reviewer-info h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .review-rating {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .review-date {
        font-size: 0.9rem;
        color: #666;
    }

    .review-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-top: 1rem;
    }

    /* Navigation Touch Improvements */
    .nav-menu {
        padding: 5rem 1.5rem 2rem;
    }

    .nav-link {
        font-size: 1.5rem;
        padding: 1.2rem 2rem;
        margin: 0.5rem 0;
        border-radius: 15px;
    }

    .nav-contact {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(0,0,0,0.1);
    }

    .nav-contact .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 60px 0 40px;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

/* Touch and Accessibility Improvements */
@media (max-width: 768px) {
    /* Better touch targets */
    button, .btn, .menu-tab, .nav-link {
        min-height: 44px;
        touch-action: manipulation;
    }

    /* Improved spacing for fingers */
    .menu-item, .location-item, .review-item {
        margin-bottom: 1.5rem;
    }

    /* Better contrast for mobile */
    .nav-link:hover, .menu-tab:hover, .btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    }

    /* Prevent zoom on input focus */
    input, textarea, select {
        font-size: 16px !important;
    }
}

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

.section-header,
.about-item,
.menu-item,
.contact-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Enhanced UI Utilities */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.smooth-transition {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Improved Focus States */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(62, 148, 165, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Selection Colors */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Force stats visibility on all devices */
.stats,
.stats-grid,
.stat-item,
.stat-number,
.stat-label {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: translateY(0) !important;
}

.stats {
    display: flex !important;
}

.stats-grid {
    display: grid !important;
}

/* Mobile-specific stats visibility */
@media (max-width: 768px) {
    .stats,
    .stats-grid,
    .stat-item {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        animation: none !important;
        display: block !important;
    }
    
    .stats {
        display: flex !important;
        background: var(--primary-gradient) !important;
    }
    
    .stats-grid {
        display: grid !important;
    }
    
    /* Override any potential conflicting mobile styles */
    .mobile-device .stats,
    .mobile-device .stats-grid,
    .mobile-device .stat-item,
    .mobile-device .stat-number,
    .mobile-device .stat-label {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        animation: none !important;
        transition: all 0.3s ease !important;
    }
}

/* Even more specific mobile targeting */
@media (max-width: 480px) {
    .stats,
    .stats-grid,
    .stat-item {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        display: block !important;
    }
    
    .stats {
        display: flex !important;
    }
    
    .stats-grid {
        display: grid !important;
    }
}