/* ============ CSS DEĞİŞKENLERİ - NATURAL PIKNIK ============ */
:root {
    --primary: #12828C;
    --primary-dark: #0B5D65;
    --secondary: #6A8E4E;
    --accent: #D4A373;
    --dark: #2C3631;
    --light: #F2F7F6;
    --white: #ffffff;
    --gray: #7D8C85;
    --shadow: 0 4px 20px rgba(18, 130, 140, 0.08);
    --shadow-hover: 0 15px 40px rgba(18, 130, 140, 0.2);
    --radius: 16px;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* ============ LOADER ============ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

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

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

/* ============ VIDEO BACKGROUND ============ */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 93, 101, 0.7) 0%, rgba(44, 54, 49, 0.9) 100%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(18, 130, 140, 0.6) 0%, rgba(44, 54, 49, 0.85) 100%);
}

/* ============ HEADER ============ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 93, 101, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.8rem 1.5rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-img {
    font-size: 2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

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

.logo h1 {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.15);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.header-phone:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* ============ LANGUAGE SELECTOR ============ */
.lang-selector {
    display: flex;
    gap: 8px;
}

.lang-btn {
    padding: 6px 14px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

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

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: transparent;
}

.hero-content {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    z-index: 10;
    max-width: 800px;
    perspective: 1000px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

.hero-badge i {
    color: #FFD700;
}

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

.hero-title-main {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    letter-spacing: 4px;
    animation: titleFloat 4s ease-in-out infinite;
}

.hero-title-sub {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--accent);
    margin-top: 0.5rem;
    opacity: 0.95;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0) rotateX(0); }
    50% { transform: translateY(-10px) rotateX(2deg); }
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 1.5rem auto 1rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

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

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.menu-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.menu-note i {
    font-size: 0.9rem;
}

.btn {
    padding: 1rem 2.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(106, 142, 78, 0.4);
    padding: 1.3rem 3rem;
    font-size: 1.15rem;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(106, 142, 78, 0.5);
    background: #5a7a3e;
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px) scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* ============ FEATURES STRIP ============ */
.features-strip {
    background: var(--white);
    padding: 1.5rem 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.features-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    min-width: max-content;
    padding: 0 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--light);
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(18, 130, 140, 0.3);
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.feature-item:hover i {
    color: white;
}

.feature-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============ SECTION TITLES ============ */
.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--gray);
}

/* ============ REVIEWS SECTION ============ */
.reviews {
    padding: 3rem 0;
    background: linear-gradient(135deg, #e8f5f6 0%, #f0f7f4 50%, #fef9f3 100%);
    position: relative;
    overflow: hidden;
}

/* Hareketli Arkaplan Desenleri */
.reviews::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(18, 130, 140, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(106, 142, 78, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(212, 163, 115, 0.06) 0%, transparent 40%);
    animation: bgFloat 15s ease-in-out infinite;
    pointer-events: none;
}

.reviews::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='%2312882c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: bgPattern 30s linear infinite;
    pointer-events: none;
}

@keyframes bgFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 2%) rotate(1deg); }
    50% { transform: translate(0, 4%) rotate(0deg); }
    75% { transform: translate(-2%, 2%) rotate(-1deg); }
}

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

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

/* Kayan Yorum Kutucukları */
.reviews-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

.reviews-slider-track {
    display: flex;
    gap: 1rem;
    animation: scrollReviews 25s linear infinite;
    width: max-content;
}

.reviews-slider-track:hover {
    animation-play-state: paused;
}

@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

.review-card {
    flex: 0 0 280px; /* Sabit genişlik - 5 yorum görünecek */
    background: linear-gradient(145deg, #ffffff 0%, #f8fffe 100%);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(18, 130, 140, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(18, 130, 140, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.review-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(18, 130, 140, 0.15);
    border-color: rgba(18, 130, 140, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(18, 130, 140, 0.2);
}

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

.review-info {
    flex: 1;
    min-width: 0;
}

.review-info h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-stars {
    color: #FFD700;
    font-size: 0.65rem;
    display: flex;
    gap: 1px;
}

.review-stars i {
    margin-right: 1px;
}

.review-text {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Sadece 2 satır */
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.review-date {
    font-size: 0.65rem;
    color: var(--gray);
    opacity: 0.6;
    text-align: right;
}

/* Responsive - 4 yerine 3 yorum */
@media (max-width: 1200px) {
    .review-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

@media (max-width: 900px) {
    .review-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 600px) {
    .review-card {
        flex: 0 0 calc(100% - 1rem);
    }
    
    .reviews {
        padding: 3rem 0;
    }
}

/* ============ GALLERY SECTION ============ */
.gallery {
    padding: 4rem 1.5rem;
    background: linear-gradient(180deg, var(--light) 0%, #e8f8f8 50%, var(--light) 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(18, 130, 140, 0.08) 0%, transparent 70%);
    animation: floatBubble 8s ease-in-out infinite;
    pointer-events: none;
}

.gallery::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(106, 142, 78, 0.08) 0%, transparent 70%);
    animation: floatBubble 10s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes floatBubble {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 130, 140, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

/* ============ MENU SECTION ============ */
.menu {
    padding: 4rem 1.5rem;
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 50%, #f8f8f8 100%);
    position: relative;
    overflow: hidden;
}

.menu::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(18, 130, 140, 0.04) 0%, transparent 70%);
    animation: menuBubble 9s ease-in-out infinite;
    pointer-events: none;
}

.menu::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(106, 142, 78, 0.04) 0%, transparent 70%);
    animation: menuBubble 11s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes menuBubble {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -15px) scale(1.05); }
    66% { transform: translate(-15px, 10px) scale(0.95); }
}

.menu-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ============ TAB BAR ============ */
.tab-bar {
    position: sticky;
    top: 70px;
    z-index: 100;
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.tab-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 8px;
}

.tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.5rem;
    background: var(--light);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    gap: 4px;
    transform-style: preserve-3d;
}

.tab-btn:hover {
    background: rgba(18, 130, 140, 0.1);
    transform: translateY(-3px) rotateX(10deg) scale(1.05);
    box-shadow: 0 10px 25px rgba(18, 130, 140, 0.2);
}

.tab-btn.active {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 10px 30px rgba(18, 130, 140, 0.3);
}

.tab-btn .tab-emoji {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.tab-btn:hover .tab-emoji {
    transform: scale(1.2) rotate(5deg);
}

.tab-btn .tab-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

/* ============ MENU SECTION (Products) ============ */
.menu-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.menu-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px) rotateX(-5deg); }
    to { opacity: 1; transform: translateY(0) rotateX(0); }
}

.menu-section .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
}

.menu-section .section-title h2 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============ MENU GRID ============ */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* ============ MENU ITEM CARD - 3D EFFECTS ============ */
.menu-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    border: 1px solid rgba(18, 130, 140, 0.1);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 130, 140, 0.03) 0%, rgba(106, 142, 78, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-3deg) scale(1.03);
    box-shadow: var(--shadow-hover);
}

.menu-item:active {
    transform: scale(0.98);
}

.item-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

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

.menu-item:hover .item-image {
    transform: scale(1.08) rotateZ(2deg);
}

.item-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.item-image-placeholder {
    font-size: 2.5rem;
    opacity: 0.9;
}

@keyframes foodBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-3deg); }
    75% { transform: scale(1.1) rotate(3deg); }
}

.item-content {
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.item-info {
    flex: 1;
}

.item-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
    transition: transform 0.3s ease;
}

.menu-item:hover .item-info h3 {
    transform: translateX(5px);
}

.item-name-en {
    font-size: 0.8rem;
    color: var(--gray);
    display: block;
    font-style: italic;
}

.price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    padding: 0.4rem 0.8rem;
    background: rgba(18, 130, 140, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.menu-item:hover .price {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* ============ ABOUT / FEATURES ============ */
.about {
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, var(--white) 0%, #f8fdf8 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(18, 130, 140, 0.06) 0%, transparent 70%);
    animation: pulseGlow 6s ease-in-out infinite;
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(106, 142, 78, 0.06) 0%, transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-3deg) scale(1.03);
    box-shadow: var(--shadow-hover);
}

.about-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 2rem;
    color: white;
    transition: all 0.5s ease;
    box-shadow: 0 8px 25px rgba(18, 130, 140, 0.3);
}

.about-card:hover .about-card-icon {
    transform: scale(1.15) rotateY(180deg);
    box-shadow: 0 15px 40px rgba(18, 130, 140, 0.4);
}

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

.about-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ============ LOCATION ============ */
.location {
    padding: 5rem 1.5rem;
    background: linear-gradient(180deg, #e8f5f6 0%, #ffffff 30%, #ffffff 70%, #e8f5f6 100%);
    position: relative;
    overflow: hidden;
}

.location::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(18, 130, 140, 0.05) 0%, transparent 70%);
    animation: locationFloat 7s ease-in-out infinite;
    pointer-events: none;
}

@keyframes locationFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 20px) rotate(10deg); }
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-content h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-content > p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(18, 130, 140, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(18, 130, 140, 0.1);
    position: relative;
    overflow: hidden;
}

.location-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.location-feature:hover::before {
    transform: scaleY(1);
}

.location-feature:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(18, 130, 140, 0.15);
    border-color: rgba(18, 130, 140, 0.3);
}

.location-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(18, 130, 140, 0.3);
}

.location-feature:hover .location-feature-icon {
    transform: rotateY(180deg) scale(1.1);
    border-radius: 50%;
}

.location-feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.location-feature-text strong {
    color: var(--dark);
    font-size: 1rem;
    font-weight: 600;
}

.location-feature-text small {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Location Buttons */
.location-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.location-buttons .btn {
    flex: 1;
    min-width: 200px;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.location-buttons .btn-location {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 6px 25px rgba(18, 130, 140, 0.35);
    border: none;
}

.location-buttons .btn-location:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(18, 130, 140, 0.45);
}

.location-buttons .btn-call {
    background: linear-gradient(135deg, var(--accent) 0%, #c4956a 100%);
    color: white;
    box-shadow: 0 6px 25px rgba(212, 163, 115, 0.35);
    border: none;
}

.location-buttons .btn-call:hover {
    background: linear-gradient(135deg, #c4956a 0%, var(--accent) 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 163, 115, 0.45);
}

.location-buttons .btn .btn-icon {
    font-size: 1.2rem;
    margin-right: 0.3rem;
}

.location-buttons .btn .btn-text {
    display: flex;
    align-items: center;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(18, 130, 140, 0.15);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    border: 3px solid rgba(18, 130, 140, 0.1);
}

.map-container:hover {
    transform: perspective(1000px) rotateY(3deg) scale(1.02);
    box-shadow: 0 20px 60px rgba(18, 130, 140, 0.25);
    border-color: rgba(18, 130, 140, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* ============ FOOTER ============ */
.footer {
    background: linear-gradient(180deg, #1a2a26 0%, #0f1a17 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Footer decorative elements */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 300% 100%;
    animation: gradientFlow 4s linear infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
}

/* Brand Section */
.footer-brand {
    padding-right: 1rem;
}

.footer-logo {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    animation: leafFloat 3s ease-in-out infinite;
}

@keyframes leafFloat {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

.footer-brand h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* Links Section */
.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

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

/* Contact Section */
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255,255,255,0.7);
    padding: 0.4rem 0;
    font-size: 0.85rem;
    text-decoration: none;
}

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

.contact-item i {
    width: 20px;
    color: var(--primary);
    font-size: 0.9rem;
}

/* Social Section */
.social-icons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn i {
    font-size: 1.1rem;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    color: white;
}

.social-btn.instagram:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(253, 29, 29, 0.4);
}

.social-btn.whatsapp {
    background: #25D366;
    color: white;
}

.social-btn.whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.isletmekur-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(18, 130, 140, 0.15) 0%, rgba(106, 142, 78, 0.15) 100%);
    border: 1px solid rgba(18, 130, 140, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.isletmekur-badge:hover {
    background: linear-gradient(135deg, rgba(18, 130, 140, 0.25) 0%, rgba(106, 142, 78, 0.25) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(18, 130, 140, 0.2);
}

.isletmekur-badge .badge-icon {
    font-size: 1.3rem;
}

.isletmekur-badge .badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.isletmekur-badge .badge-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.isletmekur-badge .badge-brand {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.isletmekur-badge:hover .badge-brand {
    color: var(--accent);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem 1.5rem;
        gap: 2rem;
    }
    
    .footer-brand {
        text-align: center;
        padding-right: 0;
    }
    
    .footer-logo {
        font-size: 3rem;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after,
    .footer-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links,
    .footer-contact,
    .footer-social {
        text-align: center;
    }
    
    .social-icons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-btn {
        flex: 0 0 auto;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ============ SCROLL TO TOP ============ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(18, 130, 140, 0.4);
    border: none;
    transform-style: preserve-3d;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-8px) rotateX(15deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(18, 130, 140, 0.5);
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.4s ease;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============ MAP CARD ============ */
.map-card {
    width: 100%;
    max-width: 500px;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    margin: 0 auto;
}

.map-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px) scale(1.02);
}

.map-container {
    width: 100%;
    height: 350px;
    background: linear-gradient(180deg, #e8f5f6 0%, #d4e8ea 100%);
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    background: 
        linear-gradient(rgba(18, 130, 140, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 130, 140, 0.05) 1px, transparent 1px),
        linear-gradient(135deg, #e8f5f6 0%, #d4e8ea 50%, #c8dde0 100%);
    background-size: 30px 30px, 30px 30px, 100% 100%;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.map-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40%;
    width: 8px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 2px 0 4px rgba(0,0,0,0.1);
}

.map-vegetation {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tree {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(ellipse at center, #6A8E4E 0%, #4a6e2e 70%, transparent 70%);
    border-radius: 50% 50% 50% 50%;
    opacity: 0.6;
}

.tree:nth-child(1) { top: 15%; left: 10%; transform: scale(0.8); }
.tree:nth-child(2) { top: 20%; right: 15%; transform: scale(1.2); }
.tree:nth-child(3) { bottom: 25%; left: 20%; transform: scale(0.6); }
.tree:nth-child(4) { bottom: 15%; right: 10%; transform: scale(0.9); }
.tree:nth-child(5) { top: 50%; left: 5%; transform: scale(0.7); }
.tree:nth-child(6) { top: 45%; right: 8%; transform: scale(1); }

.location-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
    animation: pinBounce 2s ease-in-out infinite;
}

@keyframes pinBounce {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -55%) scale(1.05); }
}

.pin-marker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pin-label {
    background: var(--white);
    padding: 0.6rem 1rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    position: relative;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.pin-label::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--white);
}

.location-pin:hover .pin-label {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.location-pin:hover .pin-label::after {
    border-top-color: var(--primary);
}

.pin-icon {
    width: 50px;
    height: 50px;
    position: relative;
}

.pin-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(220, 53, 69, 0.4));
    transition: all 0.3s ease;
}

.location-pin:hover .pin-icon svg {
    transform: scale(1.2);
    filter: drop-shadow(0 6px 12px rgba(220, 53, 69, 0.6));
}

.pin-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.3; }
}

.map-action-btn {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.25rem;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 20;
    text-decoration: none;
}

.map-action-btn:hover {
    background: #c4956a;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.5);
}

.map-action-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.zoom-controls {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 20;
}

.zoom-btn {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.zoom-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(18, 130, 140, 0.4);
}

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

.map-info-bar {
    padding: 1rem 1.25rem;
    background: var(--white);
    border-top: 1px solid rgba(18, 130, 140, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.map-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--gray);
}

.map-info-item i {
    color: var(--primary);
    font-size: 0.9rem;
}

.map-info-item strong {
    color: var(--dark);
}

@media (max-width: 768px) {
    .map-card {
        max-width: 100%;
    }
    
    .map-container {
        height: 280px;
    }
    
    .map-action-btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
        top: 12px;
        left: 12px;
    }
    
    .zoom-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .pin-label {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }
    
    .pin-icon {
        width: 40px;
        height: 40px;
    }
    
    .map-info-bar {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}

/* ============ RESPONSIVE - MOBILE ============ */
@media (max-width: 1024px) {
    .hero-title-main {
        font-size: 3rem;
    }
    
    .review-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .header-phone span {
        display: none;
    }
    
    .logo h1 {
        font-size: 1.1rem;
    }
    
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-title-sub {
        font-size: 1.3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .review-card {
        flex: 0 0 100%;
    }
    
    /* Mobile Tab Bar - Fixed at bottom */
    .tab-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        border-radius: 20px 20px 0 0;
        margin-bottom: 0;
        padding: 0.8rem;
        box-shadow: 0 -4px 20px rgba(18, 130, 140, 0.15);
    }

    .tab-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 4px;
    }

    .tab-btn {
        padding: 0.6rem 0.3rem;
    }

    .tab-btn .tab-emoji {
        font-size: 1.4rem;
    }

    .tab-btn .tab-label {
        font-size: 0.55rem;
    }

    /* Menu adjustments for fixed tab bar */
    .menu {
        padding-bottom: 130px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 140px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .features-container {
        justify-content: flex-start;
    }
    
    .video-bg {
        position: fixed;
        height: 100vh;
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.6rem 1rem;
    }

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

    .logo h1 {
        font-size: 0.95rem;
    }

    .lang-btn {
        padding: 4px 10px;
        font-size: 0.75rem;
    }

    .hero {
        min-height: 90vh;
        padding: 1rem;
    }

    .hero-title-main {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero-title-sub {
        font-size: 1.1rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .tab-btn .tab-label {
        font-size: 0.5rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .reviews-nav {
        gap: 0.5rem;
    }
    
    .reviews-prev,
    .reviews-next {
        width: 40px;
        height: 40px;
    }
}

/* ============ TABLET ============ */
@media (min-width: 769px) and (max-width: 1024px) {
    .tab-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============ SCROLL REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RIPPLE EFFECT ============ */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============ GLOW EFFECT ============ */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(18, 130, 140, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(18, 130, 140, 0.6);
    }
}

.glow-effect {
    animation: glow 2s ease-in-out infinite;
}

/* ============ FLOATING PARTICLES ============ */
@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ============ WAVE EFFECT FOR SECTIONS ============ */
.wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-bg svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* ============ MAGNETIC BUTTON EFFECT ============ */
.magnetic-btn {
    position: relative;
    transition: transform 0.3s ease;
}

.magnetic-btn:hover {
    transform: scale(1.05);
}

/* ============ SNOWFLAKE / LEAF FALL ============ */
@keyframes leafFall {
    0% {
        transform: translateY(-10vh) rotate(0deg) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) rotate(360deg) translateX(100px);
        opacity: 0.3;
    }
}

.falling-leaf {
    position: fixed;
    font-size: 1.5rem;
    z-index: 0;
    animation: leafFall linear infinite;
    pointer-events: none;
}



/* --- NEW FLAG LANG SELECTOR --- */
.header-actions .lang-selector {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    background: transparent;
    padding: 0;
}

.header-actions .lang-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background-size: cover;
    background-position: center;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    color: transparent; /* hide any text */
}

.header-actions .lang-btn.active {
    border-color: #fff;
    transform: scale(1.2);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.header-actions .lang-btn:hover {
    transform: scale(1.15);
    border-color: rgba(255,255,255,0.8);
}
/* ------------------------------ */


.item-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.4rem;
    line-height: 1.3;
    display: block; /* some might be empty initially, they will just take no space if empty */
}
.item-desc:empty {
    display: none;
}
