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

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #b3c6e6;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e9ecef;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, #2c5aa0 0%, #b3c6e6 100%);
    --gradient-hero: linear-gradient(135deg, rgba(44, 90, 160, 0.9) 0%, rgba(179, 198, 230, 0.8) 100%);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-large: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff8c42 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.loading-text {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-light);
}

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

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

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.9);
    padding: 2px;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background-color: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

.btn-reserve {
    background: var(--accent-color);
    color: white !important;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-reserve:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-reserve::after {
    display: none;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-dropdown {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.language-btn:hover {
    background: var(--accent-color);
    color: white;
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

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

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-dark);
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #f8f9fa;
    color: var(--accent-color);
}

.language-option .flag {
    font-size: 18px;
}

.language-option span:last-child {
    font-weight: 500;
}

/* RTL Support for Arabic */
body.rtl {
    text-align: right;
}

body.rtl .nav-container {
    flex-direction: row-reverse;
}

body.rtl .nav-logo {
    flex-direction: row-reverse;
}

body.rtl .nav-menu {
    flex-direction: row-reverse;
}

body.rtl .hero-buttons {
    flex-direction: row-reverse;
}

body.rtl .language-options {
    left: 0;
    right: auto;
}

body.rtl .language-option {
    flex-direction: row-reverse;
}

body.rtl .contact-cards-grid {
    direction: rtl;
}

body.rtl .location-modal-content {
    direction: rtl;
}

body.rtl .location-actions {
    flex-direction: row-reverse;
}

/* Arabic font support */
body.rtl * {
    font-family: 'Amiri', 'Arial', sans-serif;
}

body.rtl h1, body.rtl h2, body.rtl h3 {
    font-family: 'Amiri', 'Playfair Display', serif;
}

/* Korean font support */
body[lang="ko"] * {
    font-family: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
}

body[lang="ko"] h1, body[lang="ko"] h2, body[lang="ko"] h3 {
    font-family: 'Noto Serif KR', 'Playfair Display', serif;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Visual Layered Illustration */
.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
}

.jeju-bg-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Foreground Salmon Dish and Restaurant */
.hero-salmon-dish {
    position: absolute;
    left: 12vw;
    bottom: 8vh;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 3;
    background: #fff;
    object-fit: cover;
    border: 4px solid #fff;
}

.hero-restaurant-facade {
    position: absolute;
    right: 10vw;
    bottom: 6vh;
    width: 180px;
    height: 120px;
    border-radius: 18px 18px 32px 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    z-index: 3;
    object-fit: cover;
    border: 4px solid #fff;
    opacity: 0.95;
}

/* Music Toggle Button */
.music-toggle {
    position: absolute;
    top: 30px;
    right: 40px;
    z-index: 10;
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(44,90,160,0.08);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.music-toggle:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Animations */
.floating-tangerine {
    animation: floatTangerine 3.5s ease-in-out infinite alternate;
}
.floating-tangerine:nth-child(2) {
    animation-delay: 1.2s;
}
@keyframes floatTangerine {
    0% { transform: translateY(0); }
    100% { transform: translateY(-18px); }
}

.moving-cloud {
    animation: moveCloud 18s linear infinite;
}
.moving-cloud:nth-child(2) {
    animation-delay: 6s;
}
@keyframes moveCloud {
    0% { transform: translateX(0); }
    100% { transform: translateX(120px); }
}

.swimming-salmon {
    animation: swimSalmon 8s linear infinite;
}
@keyframes swimSalmon {
    0% { transform: translateX(0); }
    50% { transform: translateX(-120px) scaleX(1); }
    51% { transform: scaleX(-1); }
    100% { transform: translateX(0) scaleX(-1); }
}

/* Hero Section Positioning Fixes */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('images/Chef with Salmon Sushi bg.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Remove or reduce the white gradient for clarity */
    background: linear-gradient(120deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    z-index: 0;
}
.hero-background .hero-bg-image {
    display: none;
}
.hero-background {
    position: static;
    width: auto;
    height: auto;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}

.hero-text {
    color: white;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 0 2px #000;
}

.title-line {
    display: block;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 25px;
    opacity: 0.9;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 0 2px #000;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.85;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 0 2px #000;
}

.hero-intro {
    font-size: 1.25rem;
    margin-top: 18px;
    margin-bottom: 32px;
    max-width: 600px;
    line-height: 1.7;
    opacity: 0.9;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 0 2px #000;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: #e55a2b;
    color: white;
    border-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    color: white;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

.interaction-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.like-btn,
.thumbs-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.like-btn:hover,
.thumbs-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.like-btn.liked {
    background: #ff4757;
    border-color: #ff4757;
    animation: heartBeat 0.6s ease;
}

.thumbs-btn.thumbs-up {
    background: #2ed573;
    border-color: #2ed573;
    animation: thumbsUp 0.6s ease;
}

.like-count,
.thumbs-count {
    font-weight: 600;
    font-size: 0.8rem;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1.2); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes thumbsUp {
    0% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    50% { transform: scale(1.2) rotate(5deg); }
    75% { transform: scale(1.1) rotate(-2deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.stat-number.updated {
    animation: numberUpdate 0.5s ease;
}

@keyframes numberUpdate {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); color: #ff6b35; }
    100% { transform: scale(1); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: 0 auto 10px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Headers */
.section-header {
    text-align: left;
    margin-bottom: 60px;
}

.section-header.text-center {
    text-align: center;
}

.section-subtitle {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
}

/* Award Badge */
.award-badge {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid var(--accent-color);
}

.award-icon {
    font-size: 32px;
}

.award-text {
    display: flex;
    flex-direction: column;
}

.award-title {
    font-weight: 600;
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.award-subtitle {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.3;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stats-section .stat-item {
    background: white;
    padding: 40px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-section .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stats-section .stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.stats-section .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    display: block;
}

.stats-section .stat-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
}

.stats-section .stat-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.4;
}

/* Chef's Philosophy Section */
.chef-philosophy {
    padding: 80px 0;
    background: #2c3e50;
    color: #ecf0f1;
}

.chef-philosophy h2 {
    color: #ecf0f1;
}

.chef-quote {
    font-size: 24px;
    font-style: italic;
    color: #ecf0f1;
    max-width: 800px;
    margin: 30px auto 40px;
    line-height: 1.6;
    position: relative;
    padding: 0 40px;
}

.chef-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.chef-quote::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -40px;
    font-size: 60px;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.chef-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.chef-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color);
}

.chef-subtitle {
    font-size: 16px;
    color: #bdc3c7;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 90, 160, 0.3), rgba(179, 198, 230, 0.3));
}

/* Experience Section with Hallasan Background */
.experience {
    padding: 120px 0;
    background: url('images/jeju experience bg.jpg') center center/cover no-repeat;
    position: relative;
}
.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.60) 100%);
    z-index: 0;
}
.experience > .container {
    position: relative;
    z-index: 1;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.experience-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius-large);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2rem;
}

.experience-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.experience-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Menu Pricing */
.menu-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 10px;
}

.menu-download-section {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 12px;
}

/* Menu Section with Animated Wave Background */
.menu {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        #e6f3ff 0%, 
        #cce7ff 25%, 
        #b3dbff 50%, 
        #99cfff 75%, 
        #80c3ff 100%
    );
    background-size: 400% 400%;
    animation: lightBlueGradientFlow 10s ease-in-out infinite;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="200" height="100" viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,50 Q50,20 100,50 T200,50 L200,100 L0,100 Z" fill="rgba(102,178,255,0.15)"/></svg>') repeat-x;
    background-size: 200px 100px;
    animation: waveFlowLeftToRight 8s linear infinite;
    z-index: 1;
}

.menu::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -100%;
    width: 300%;
    height: 80%;
    background: url('data:image/svg+xml,<svg width="180" height="80" viewBox="0 0 180 80" xmlns="http://www.w3.org/2000/svg"><path d="M0,40 Q45,10 90,40 T180,40 L180,80 L0,80 Z" fill="rgba(51,153,255,0.1)"/></svg>') repeat-x;
    background-size: 180px 80px;
    animation: waveFlowLeftToRight 12s linear infinite;
    animation-delay: -2s;
    z-index: 2;
}

/* Ensure content appears above wave animations */
.menu > * {
    position: relative;
    z-index: 10;
}

@keyframes lightBlueGradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 25%;
    }
    50% {
        background-position: 50% 100%;
    }
    75% {
        background-position: 25% 0%;
    }
}

@keyframes waveFlowLeftToRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(200px);
    }
}

/* Additional Wave Layers for Enhanced Effect */
.menu .wave-layer-1,
.menu .wave-layer-2,
.menu .wave-layer-3 {
    position: absolute;
    pointer-events: none;
    width: 300%;
    left: -100%;
}

.menu .wave-layer-1 {
    top: 40%;
    height: 60%;
    background: url('data:image/svg+xml,<svg width="160" height="60" viewBox="0 0 160 60" xmlns="http://www.w3.org/2000/svg"><path d="M0,30 Q40,5 80,30 T160,30 L160,60 L0,60 Z" fill="rgba(76,162,255,0.12)"/></svg>') repeat-x;
    background-size: 160px 60px;
    animation: waveFlowLeftToRight 10s linear infinite;
    animation-delay: -1s;
    z-index: 3;
}

.menu .wave-layer-2 {
    top: 60%;
    height: 40%;
    background: url('data:image/svg+xml,<svg width="220" height="50" viewBox="0 0 220 50" xmlns="http://www.w3.org/2000/svg"><path d="M0,25 Q55,0 110,25 T220,25 L220,50 L0,50 Z" fill="rgba(25,137,255,0.08)"/></svg>') repeat-x;
    background-size: 220px 50px;
    animation: waveFlowLeftToRight 14s linear infinite;
    animation-delay: -4s;
    z-index: 4;
}

.menu .wave-layer-3 {
    top: 75%;
    height: 25%;
    background: url('data:image/svg+xml,<svg width="140" height="40" viewBox="0 0 140 40" xmlns="http://www.w3.org/2000/svg"><path d="M0,20 Q35,2 70,20 T140,20 L140,40 L0,40 Z" fill="rgba(0,122,255,0.06)"/></svg>') repeat-x;
    background-size: 140px 40px;
    animation: waveFlowLeftToRight 6s linear infinite;
    animation-delay: -3s;
    z-index: 5;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.menu-grid:not(.active) {
    display: none;
}

.menu-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(51, 153, 255, 0.15), 
                0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(51, 153, 255, 0.2), 
                0 8px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.98);
}

/* Modern rounded rectangle style for menu images */
.menu-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(44,90,160,0.10);
    background: #fff;
    transition: transform 0.2s;
}
.menu-image img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(44,90,160,0.18);
}
.menu-image {
    margin-bottom: 18px;
}

.menu-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.dish-tag {
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.menu-details {
    padding: 30px;
}

.menu-details h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.menu-details p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.ingredients {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 90, 160, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
    font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #2c3e50;
    color: #ecf0f1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-map {
    height: 400px;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Enhanced Reservation Section with Dynamic Orange Background */
.reservation {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        #fff5f0 0%, 
        #ffe4d6 25%, 
        #ffd4c4 50%, 
        #ffcab0 75%, 
        #ffc49c 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
}

.reservation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 107, 53, 0.1) 0%, 
        rgba(255, 139, 91, 0.08) 25%, 
        rgba(255, 171, 129, 0.06) 50%, 
        transparent 70%
    );
    animation: floatingOrbs 12s linear infinite;
    z-index: 1;
}

.reservation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><circle fill="rgba(255,107,53,0.05)" cx="30" cy="30" r="2"/></g></svg>');
    animation: patternMove 20s linear infinite;
    z-index: 2;
}

/* Ensure content appears above background animations */
.reservation > * {
    position: relative;
    z-index: 10;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 50% 100%;
    }
    75% {
        background-position: 50% 0%;
    }
}

@keyframes floatingOrbs {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

/* Enhanced Multi-Size Bubble Animation System */
.reservation .floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
}

/* Large Bubbles */
.reservation .floating-particles::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(255, 139, 91, 0.1) 50%, 
        transparent 100%);
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    left: 15%;
    animation: bubbleFloatLarge 12s ease-in-out infinite;
    animation-delay: 0s;
}

/* Medium Bubbles */
.reservation .floating-particles::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: radial-gradient(circle, 
        rgba(255, 139, 91, 0.2) 0%, 
        rgba(255, 171, 129, 0.12) 60%, 
        transparent 100%);
    border: 1.5px solid rgba(255, 139, 91, 0.15);
    border-radius: 50%;
    right: 25%;
    animation: bubbleFloatMedium 9s ease-in-out infinite;
    animation-delay: 2s;
}

/* Additional Bubble Containers for Small and Tiny Bubbles */
.reservation .bubble-small-1,
.reservation .bubble-small-2,
.reservation .bubble-tiny-1,
.reservation .bubble-tiny-2,
.reservation .bubble-tiny-3 {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 4;
}

/* Small Bubbles */
.reservation .bubble-small-1 {
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, 
        rgba(255, 171, 129, 0.25) 0%, 
        rgba(255, 196, 156, 0.15) 70%, 
        transparent 100%);
    border: 1px solid rgba(255, 171, 129, 0.2);
    left: 70%;
    animation: bubbleFloatSmall 7s ease-in-out infinite;
    animation-delay: 1s;
}

.reservation .bubble-small-2 {
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, 
        rgba(255, 139, 91, 0.2) 0%, 
        rgba(255, 171, 129, 0.1) 70%, 
        transparent 100%);
    border: 1px solid rgba(255, 139, 91, 0.15);
    left: 40%;
    animation: bubbleFloatSmall 8s ease-in-out infinite;
    animation-delay: 4s;
}

/* Tiny Bubbles */
.reservation .bubble-tiny-1 {
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, 
        rgba(255, 196, 156, 0.3) 0%, 
        rgba(255, 220, 196, 0.2) 80%, 
        transparent 100%);
    border: 0.5px solid rgba(255, 196, 156, 0.25);
    left: 10%;
    animation: bubbleFloatTiny 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.reservation .bubble-tiny-2 {
    width: 5px;
    height: 5px;
    background: radial-gradient(circle, 
        rgba(255, 171, 129, 0.35) 0%, 
        rgba(255, 196, 156, 0.25) 75%, 
        transparent 100%);
    border: 0.5px solid rgba(255, 171, 129, 0.3);
    right: 15%;
    animation: bubbleFloatTiny 6s ease-in-out infinite;
    animation-delay: 3s;
}

.reservation .bubble-tiny-3 {
    width: 7px;
    height: 7px;
    background: radial-gradient(circle, 
        rgba(255, 107, 53, 0.25) 0%, 
        rgba(255, 139, 91, 0.15) 80%, 
        transparent 100%);
    border: 0.5px solid rgba(255, 107, 53, 0.2);
    left: 85%;
    animation: bubbleFloatTiny 5.5s ease-in-out infinite;
    animation-delay: 2.5s;
}

/* Extra Large Bubbles for More Drama */
.reservation .bubble-xl-1,
.reservation .bubble-xl-2 {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.reservation .bubble-xl-1 {
    width: 35px;
    height: 35px;
    background: radial-gradient(circle, 
        rgba(255, 107, 53, 0.08) 0%, 
        rgba(255, 139, 91, 0.05) 40%, 
        rgba(255, 171, 129, 0.03) 70%, 
        transparent 100%);
    border: 3px solid rgba(255, 107, 53, 0.08);
    left: 60%;
    animation: bubbleFloatXLarge 15s ease-in-out infinite;
    animation-delay: 1.5s;
}

.reservation .bubble-xl-2 {
    width: 28px;
    height: 28px;
    background: radial-gradient(circle, 
        rgba(255, 139, 91, 0.1) 0%, 
        rgba(255, 171, 129, 0.06) 50%, 
        rgba(255, 196, 156, 0.04) 80%, 
        transparent 100%);
    border: 2.5px solid rgba(255, 139, 91, 0.09);
    right: 10%;
    animation: bubbleFloatXLarge 18s ease-in-out infinite;
    animation-delay: 6s;
}

/* Extra Large Bubble Animation */
@keyframes bubbleFloatXLarge {
    0% {
        transform: translateY(130vh) translateX(0) scale(0.6) rotate(0deg);
        opacity: 0;
    }
    8% {
        opacity: 0.4;
    }
    25% {
        transform: translateY(75vh) translateX(50px) scale(1.0) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(40vh) translateX(-30px) scale(1.3) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(15vh) translateX(20px) scale(1.1) rotate(270deg);
        opacity: 0.5;
    }
    92% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-30vh) translateX(-40px) scale(0.4) rotate(360deg);
        opacity: 0;
    }
}

/* Large Bubble Animation */
@keyframes bubbleFloatLarge {
    0% {
        transform: translateY(120vh) translateX(0) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(50vh) translateX(30px) scale(1.2);
        opacity: 0.8;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-20vh) translateX(-20px) scale(0.6);
        opacity: 0;
    }
}

/* Medium Bubble Animation */
@keyframes bubbleFloatMedium {
    0% {
        transform: translateY(110vh) translateX(0) scale(0.5);
        opacity: 0;
    }
    15% {
        opacity: 0.7;
    }
    50% {
        transform: translateY(60vh) translateX(-40px) scale(1.1);
        opacity: 0.9;
    }
    85% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-10vh) translateX(25px) scale(0.7);
        opacity: 0;
    }
}

/* Small Bubble Animation */
@keyframes bubbleFloatSmall {
    0% {
        transform: translateY(105vh) translateX(0) scale(0.3) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    50% {
        transform: translateY(55vh) translateX(20px) scale(1) rotate(180deg);
        opacity: 1;
    }
    80% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-15vh) translateX(-30px) scale(0.4) rotate(360deg);
        opacity: 0;
    }
}

/* Tiny Bubble Animation */
@keyframes bubbleFloatTiny {
    0% {
        transform: translateY(100vh) translateX(0) scale(0.2);
        opacity: 0;
    }
    25% {
        opacity: 0.9;
    }
    50% {
        transform: translateY(50vh) translateX(15px) scale(0.8);
        opacity: 1;
    }
    75% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-5vh) translateX(-10px) scale(0.3);
        opacity: 0;
    }
}

.reservation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

/* New 1x2 Layout Structure */
.reservation-content-new {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.reservation-row-full {
    width: 100%;
}

.reservation-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
}

.reservation-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15), 
                0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.reservation-form-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2), 
                0 8px 25px rgba(0, 0, 0, 0.15);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-light);
    font-size: 16px;
}

/* Old form-section styles removed - now handled in new reservation section */

/* Old form-section h4 styles removed - now handled in new reservation section */

.restaurant-info-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.info-panel {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-panel h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

.info-section {
    margin-bottom: 25px;
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.hours-list, .contact-list, .policy-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.hours-item span:first-child {
    color: var(--text-dark);
    font-weight: 500;
}

.hours-item span:last-child {
    color: var(--text-light);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
}

.contact-item i {
    color: var(--accent-color);
    width: 16px;
}

.location-info .address {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.policy-item {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    padding: 4px 0;
    margin-bottom: 8px;
}

.btn-large {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    background: var(--accent-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

/* Menu download section specific styling */
.menu-download-section {
    text-align: center;
    margin-top: 40px;
}

.menu-download-section .btn-large {
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
}

.btn-large:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

/* Responsive Design for Reservation */
@media (max-width: 1024px) {
    .reservation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .reservation-content-new {
        gap: 30px;
        max-width: 900px;
    }
    
    .reservation-row-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .reservation-form-container,
    .restaurant-info-container {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .reservation-content-new {
        gap: 25px;
        max-width: 100%;
        margin-top: 40px;
    }
    
    .reservation-form-container,
    .info-panel {
        padding: 25px;
    }
    
    .form-section h4 {
        font-size: 16px;
    }
    
    .info-panel h3 {
        font-size: 18px;
    }
}

/* Override any conflicting reservation styles */

.reservation-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 30px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #cccccc;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #e55a2b; /* Darker orange on hover */
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Accreditation & Guest Feedback Section - Custom Sizing */
.accreditation-content {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    /* Increase max width for the whole section */
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}
/* Guest Feedback Testimonials as Cards */
.accreditation-feedback {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 4px 32px rgba(44,90,160,0.10);
    padding: 48px 56px 40px 56px;
    min-width: 420px;
    max-width: 700px;
    width: 100%;
    position: relative;
    margin-bottom: 32px;
}

.feedback-title {
    font-size: 1.15em;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

/* Update testimonials grid to 3 by 3 layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    width: 100%;
    margin: 0 auto;
}
@media (max-width: 700px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

.testimonial {
    background: #f8f9fa;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(44,90,160,0.07);
    padding: 28px 24px 20px 24px;
    margin-bottom: 0;
    position: relative;
    left: 0;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1.5px solid #e9ecef;
    text-align: left;
    display: flex;
    flex-direction: column;
    min-height: 160px;
}
.testimonial:hover {
    box-shadow: 0 8px 32px rgba(44,90,160,0.13);
    transform: translateY(-6px) scale(1.03);
    border-color: #b3c6e6;
}
.testimonial-icon {
    color: #2c5aa0;
    font-size: 1.1em;
    margin-right: 6px;
}
.testimonial-author {
    display: block;
    margin-top: 16px;
    font-size: 0.98em;
    color: #888;
    font-style: italic;
    align-self: flex-end;
}

@media (max-width: 1100px) {
    .accreditation-content {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        max-width: 98vw;
    }
    .accreditation-feedback {
        max-width: 100%;
        padding: 36px 18px 32px 18px;
        min-width: unset;
    }
}

/* Accreditation & Guest Feedback Section with Background */
.accreditation {
    position: relative;
    padding: 120px 0;
    background: url('images/Jeju Guest Feedback bg.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}
.accreditation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.65) 100%);
    z-index: 0;
}
.accreditation > .container {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 40px 0;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .stat-item {
        padding: 15px;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .interaction-buttons {
        flex-direction: column;
        gap: 8px;
        margin-top: 10px;
    }
    
    .like-btn,
    .thumbs-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .reservation-form {
        padding: 40px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
} 

.menu-item-large {
    grid-column: span 2;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

@media (max-width: 900px) {
    .menu-item-large {
        grid-column: span 1;
    }
} 

.gallery-zoom-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(20, 30, 50, 0.92);
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s;
}
.gallery-zoom-modal.active {
    display: flex;
    animation: fadeInZoom 0.3s;
}
.gallery-zoom-modal-img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 24px;
    box-shadow: 0 8px 48px rgba(44,90,160,0.25);
    background: #fff;
    object-fit: contain;
    transition: transform 0.2s;
}
.gallery-zoom-close {
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    background: rgba(44,90,160,0.18);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.gallery-zoom-close:hover {
    background: rgba(44,90,160,0.35);
}
@keyframes fadeInZoom {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
} 

/* New Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-content {
    margin-top: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.customer-info {
    display: flex;
    flex-direction: column;
}

.customer-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
}

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

.rating {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
}

.testimonials-stats {
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
}

.testimonials-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-stat {
    text-align: center;
}

.testimonial-stat .stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 8px;
    display: block;
    line-height: 1;
}

.testimonial-stat .stat-stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 12px;
    display: block;
}

.testimonial-stat .stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
    line-height: 1.2;
}

.testimonial-stat .stat-sublabel {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.2;
    font-weight: 400;
}

.testimonials-cta {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.testimonials-button-container {
    display: flex;
    justify-content: center;
}

/* Testimonials button specific styling */
.testimonials-stats .btn-large {
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-stats .btn-large:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Responsive design for testimonials stats */
@media (max-width: 1024px) {
    .testimonials-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .testimonials-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 400px;
    }
    
    .testimonial-stat .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .testimonials-stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 300px;
    }
    
    .testimonials-stats {
        padding: 40px 20px;
    }
}

/* Updated Contact Section - Dark Theme */
.contact {
    padding: 80px 0;
    background: #2c3e50;
    color: #ecf0f1;
    text-align: center;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 60px 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.contact-card p {
    color: #e8e8e8;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 13px;
}

.contact-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

.restaurant-amenities, .special-hours {
    margin: 60px 0;
    text-align: center;
}

.restaurant-amenities h3, .special-hours h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ecf0f1;
}

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

.amenity-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #ecf0f1;
}

.amenity-item i {
    color: var(--accent-color);
    font-size: 16px;
}

.amenity-item span {
    font-size: 14px;
}

.special-hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.special-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.special-item i {
    color: var(--accent-color);
    font-size: 18px;
    margin-top: 5px;
}

.special-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ecf0f1;
}

.special-content p {
    color: #bdc3c7;
    line-height: 1.4;
    font-size: 13px;
}

.contact-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-cta h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: white;
}

/* Reservation Section - React Component Match */
.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Form Card */
.reservation-form-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgb(254, 215, 170);
    padding: 24px;
}

.card-header {
    margin-bottom: 24px;
}

.card-title {
    color: rgb(154, 52, 18);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-description {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.card-content {
    /* Remove padding since it's now handled by the parent card */
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Form Sections */
.form-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.section-title {
    color: rgb(194, 65, 12);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.section-title i {
    width: 16px;
    height: 16px;
    color: rgb(194, 65, 12);
}

.section-title-label {
    color: rgb(194, 65, 12);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.section-title-label i {
    width: 16px;
    height: 16px;
    color: rgb(194, 65, 12);
}

/* Form Grids */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

/* Form Groups */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    color: #374151;
    font-size: 14px;
    font-weight: 500;
}

/* Input Styling */
.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
    color: #111827;
    background: #ffffff;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(217, 119, 6);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

/* Input with Icon */
.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.input-with-icon-field {
    padding-left: 40px !important;
}

/* Submit Button */
.submit-btn {
    background: rgb(217, 119, 6);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.submit-btn:hover {
    background: rgb(180, 83, 9);
}

/* Right Column */
.info-cards-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Info Cards */
.info-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgb(254, 215, 170);
}

.info-card .card-header {
    padding: 24px 24px 0 24px;
}

.info-card .card-content {
    padding: 24px;
}

.info-card .card-title {
    color: rgb(154, 52, 18);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

/* Info Sections */
.info-section {
    margin-bottom: 16px;
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-section h4 {
    color: #1f2937;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Hours List */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #6b7280;
}

/* Contact List */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
}

.contact-item i {
    width: 16px;
    height: 16px;
}

/* Location */
.location-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Policy Card */
.policy-card {
    background: rgb(255, 247, 237) !important;
}

.policy-title {
    color: rgb(154, 52, 18);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy-list li {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .form-grid-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .reservation-form-card {
        padding: 20px;
    }
    
    .info-card .card-header,
    .info-card .card-content {
        padding: 20px;
    }
    
    .form-grid-2,
    .form-grid-3 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .reservation-grid {
        gap: 16px;
    }
    
    .reservation-form-card {
        padding: 16px;
    }
    
    .info-card .card-header,
    .info-card .card-content {
        padding: 16px;
    }
    
    .submit-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Updated Footer - Light Theme */
.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo h3 {
    color: #ecf0f1;
    margin: 0;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: #ecf0f1;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #bdc3c7;
}

@media (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Location Popup Modal */
.location-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

.location-modal-content {
    position: relative;
    background: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.location-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #666;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.location-modal-close:hover {
    color: var(--accent-color);
    background: rgba(255, 107, 53, 0.1);
    transform: scale(1.1);
}

.location-popup-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f7931e 100%);
    color: white;
    padding: 25px 30px 20px;
    text-align: center;
}

.location-popup-header i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.location-popup-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.location-details {
    padding: 25px 30px 30px;
}

.location-address {
    text-align: center;
    margin-bottom: 25px;
}

.location-address h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.location-address p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.location-map {
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.directions-btn,
.copy-address-btn {
    flex: 1;
    min-width: 140px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.directions-btn {
    background: var(--accent-color);
    color: white;
    border: none;
}

.directions-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.copy-address-btn {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid #e9ecef;
}

.copy-address-btn:hover {
    background: #f8f9fa;
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.copy-address-btn i,
.directions-btn i {
    font-size: 0.9rem;
}

/* Responsive Design for Location Modal */
@media (max-width: 768px) {
    .location-modal-content {
        margin: 10% auto;
        width: 95%;
        max-height: 85vh;
    }
    
    .location-popup-header {
        padding: 20px 20px 15px;
    }
    
    .location-popup-header i {
        font-size: 2rem;
    }
    
    .location-popup-header h3 {
        font-size: 1.3rem;
    }
    
    .location-details {
        padding: 20px;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .directions-btn,
    .copy-address-btn {
        min-width: unset;
    }
}

/* Hero Visitor Counter Styling */
.hero-visitor-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 15px 25px 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.5s ease-out;
    transition: all 0.3s ease;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.visitor-count {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-visitor-counter:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.visitor-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.visitor-number {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-left: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.visitor-number.updated {
    animation: counterPulse 0.6s ease;
}

.visitor-since {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    opacity: 0.9;
}

@keyframes counterPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); color: #fff3cd; text-shadow: 0 0 10px rgba(255, 243, 205, 0.8); }
    100% { transform: scale(1); }
}

/* Responsive Visitor Counter */
@media (max-width: 768px) {
    .hero-visitor-counter {
        max-width: 250px;
        padding: 12px 20px 10px;
        margin-top: 20px;
    }
    
    .visitor-count {
        font-size: 1rem;
    }
    
    .visitor-number {
        font-size: 1.1rem;
    }
    
    .visitor-since {
        font-size: 0.7rem;
        margin-top: 3px;
    }
}

/* Hero Stats Card Styling */
.hero-stats-card {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 22px 45px; /* Further increased padding for optimal spacing */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.5s ease-out;
    transition: all 0.3s ease;
    max-width: 720px; /* Further increased width for optimal ratio spacing */
    margin-left: auto;
    margin-right: auto;
}

.hero-stats-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px; /* Further increased gap for optimal ratio spacing */
    width: 100%;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-stat-number {
    font-size: 1.8rem; /* Increased from 1.2rem (1.5x larger) */
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-stat-number.updated {
    animation: counterPulse 0.6s ease;
}

/* Responsive Hero Stats Card */
@media (max-width: 768px) {
    .hero-stats-card {
        max-width: 520px;
        padding: 16px 28px;
        margin-top: 15px;
    }
    
    .hero-stats-grid {
        gap: 22px;
    }
    
    .hero-stat-number {
        font-size: 1.5rem; /* Increased from 1rem (1.5x larger) */
    }
    
    .hero-stat-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .hero-stats-card {
        max-width: 420px;
        padding: 14px 22px;
    }
    
    .hero-stats-grid {
        gap: 18px;
    }
    
    .hero-stat-number {
        font-size: 1.35rem; /* Increased from 0.9rem (1.5x larger) */
    }
    
    .hero-stat-label {
        font-size: 0.6rem;
    }
}

/* Testimonials CTA Section */
.testimonials-cta-section {
    text-align: center;
    margin-top: 40px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-cta {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-button-container {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .testimonials-cta-section {
        margin-top: 30px;
        padding: 30px 15px;
    }
    
    .testimonials-cta {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}

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

/* Mobile responsiveness for hero visitor counter */
@media (max-width: 768px) {
    .hero-visitor-counter {
        margin-top: 25px;
        padding: 12px 20px;
        font-size: 1rem;
        max-width: 250px;
    }
    
    .visitor-number {
        font-size: 1.1rem;
    }
}