/* 
* Premium Style System for Ata Kardeşler
* Modern Luxury & Performance
*/

:root {
    --primary-color: #c59d5f; /* Elegant Gold */
    --primary-dark: #9e7943; /* Accessible Gold on Light (AA compliant) */
    --secondary-color: #0f172a; /* Deep Navy/Black */
    --accent-color: #f8fafc; /* Subtle light background */
    --dark-color: #0c111d; /* Rich Dark */
    --gold-gradient: linear-gradient(135deg, #c59d5f 0%, #e1c08e 50%, #c59d5f 100%);
    --dark-gradient: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    --premium-font: 'Outfit', sans-serif;
    --body-font: 'Inter', sans-serif;
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
    --glass-bg: rgba(255, 255, 255, 0.82);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
    --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    --tab-bar-height: 75px;
}

/* Accessibility Enhancement: Darker primary for light backgrounds to pass AA contrast */
.text-primary, .handwriting {
    color: var(--primary-dark) !important;
}

/* --- ULTRA LUXURY COMPONENT SYSTEM --- */

/* Luxury Hero */
.luxury-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.6), rgba(12, 17, 29, 0.9)), url('../img/restaurant-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 0 80px;
    border-radius: 0 0 80px 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.hero-visual-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.2; 
    pointer-events: none;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.8) contrast(1.1);
}

@media (max-width: 768px) {
    .hero-visual-background {
        background-attachment: scroll;
        opacity: 0.25;
    }
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    opacity: 0.05;
    mix-blend-mode: overlay;
}

.luxury-title {
    font-size: clamp(2.8rem, 10vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 0.9;
    text-shadow: 0 20px 40px rgba(0,0,0,0.5);
    background: linear-gradient(180deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.luxury-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
}

.handwriting {
    font-family: 'Great Vibes', cursive !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: clamp(3rem, 8vw, 4.5rem) !important;
    color: var(--primary-dark) !important; /* darken for contrast */
    margin-top: 5px;
    display: block;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1); /* softer shadow for eligibility */
}

.luxury-line {
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(197, 157, 95, 0.5);
}

.luxury-badge {
    display: inline-flex;
    padding: 10px 24px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.luxury-badge:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary-color);
}

/* Luxury Card System */
.luxury-card {
    background: #fff;
    border-radius: 35px;
    border: 1px solid rgba(0,0,0,0.02);
    overflow: hidden;
    transition: all 0.6s var(--ease-premium);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    z-index: 1;
}

.luxury-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.luxury-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.15);
}

.card-image-outer {
    position: relative;
    padding-top: 95%;
    overflow: hidden;
    margin: 10px;
    border-radius: 25px;
}

.luxury-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-premium);
}

.luxury-card:hover .luxury-card-img {
    transform: scale(1.15) rotate(2deg);
}

.card-overlay-luxury {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.6) 0%, transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s var(--ease-premium);
    backdrop-filter: blur(0px);
}

.luxury-card:hover .card-overlay-luxury {
    opacity: 1;
    backdrop-filter: blur(4px);
}

.btn-luxury-add {
    width: 65px;
    height: 65px;
    background: #fff;
    color: var(--secondary-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transform: scale(0.5) translateY(40px);
    transition: all 0.5s var(--ease-premium);
}

.luxury-card:hover .btn-luxury-add {
    transform: scale(1) translateY(0);
}

.btn-luxury-add:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: scale(1.1);
}

.luxury-card-body {
    padding: 15px 30px 30px;
    display: flex;
    flex-direction: column;
}

.luxury-item-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.luxury-card:hover .luxury-item-name {
    color: var(--primary-color);
    transform: translateX(5px);
}

.luxury-item-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    height: 3em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.luxury-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.luxury-price-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.luxury-current-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark-color);
    font-family: var(--premium-font);
    line-height: 1;
}

.luxury-current-price.discount {
    color: #ef4444;
}

.luxury-old-price {
    font-size: 0.9rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.luxury-discount-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #ef4444;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.4);
    animation: float 3s ease-in-out infinite;
}

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

/* Luxury Category Nav */
.luxury-nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    margin-bottom: 50px;
    transition: all 0.4s ease;
}

.luxury-nav-wrapper.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.luxury-nav-scroller {
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 20px;
}

.luxury-pills {
    display: flex;
    gap: 12px;
}

.luxury-pill {
    padding: 14px 30px;
    border-radius: 100px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: #f1f5f9;
    border: 2px solid transparent;
    flex-shrink: 0 !important;
    min-width: max-content;
}

.luxury-pill:hover {
    transform: translateY(-3px);
    background: #fff;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.luxury-pill.active {
    background: var(--dark-color);
    color: #fff;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.25);
    transform: scale(1.05);
}

/* Luxury Placeholder */
.luxury-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #f1f5f9, #e2e8f0);
    color: #94a3b8;
    font-size: 4rem;
}

/* Luxury Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary-color);
    position: relative;
    padding-left: 25px;
    letter-spacing: -1px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 6px;
    background: var(--gold-gradient);
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(197, 157, 95, 0.4);
}



/* --- BRANDED TOP OVERLAY --- */
.branded-top-banner {
    position: absolute;
    top: 55%; /* Centered vertically relative to the new slider height */
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 100;
    background: transparent;
    pointer-events: none;
    transform: translateY(-50%);
}

.brand-shimmer {
    font-family: var(--premium-font);
    font-size: clamp(1.4rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
    background: linear-gradient(
        90deg, 
        rgba(255,255,255,0.4) 0%, 
        #c59d5f 25%, 
        #fff 50%,
        #c59d5f 75%,
        rgba(255,255,255,0.4) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: brand-shimmer 3.5s linear infinite;
    filter: drop-shadow(0 0 30px rgba(0,0,0,0.5));
}

.brand-line-deco {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c59d5f, transparent);
    display: inline-block;
    vertical-align: middle;
}

@keyframes brand-shimmer {
    to { background-position: 200% center; }
}

@media (max-width: 768px) {
    .branded-top-banner {
        top: 60%;
        transform: translateY(-50%);
    }
    .brand-shimmer {
        font-size: 1rem;
        letter-spacing: 0.1em;
        gap: 0.5rem;
    }
    .brand-line-deco {
        width: 30px;
        height: 1px;
    }
    .luxury-title {
        font-size: 1.8rem !important; /* Made smaller as requested */
    }
    .handwriting {
        font-size: 2.8rem !important; /* Adjusted for mobile */
    }
}


/* Base Styles */
body {
    font-family: var(--body-font);
    background-color: #f1f5f9;
    color: var(--dark-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--premium-font);
    font-weight: 700;
}

/* --- MODERN NAVIGATION --- */
.main-navigation {
    position: fixed;
    top: 25px;
    left: 0;
    width: 100%;
    z-index: 1100;
    transition: all 0.4s var(--ease-premium);
}

.nav-glass-wrapper {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    padding: 10px 30px;
    box-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.08);
    transition: all 0.4s ease;
}

.site-logo {
    height: 35px;
    transition: transform 0.3s ease;
}

.logo-text {
    font-family: var(--premium-font);
    font-size: 1.25rem;
    color: var(--secondary-color);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color) !important;
    padding: 8px 18px !important;
    position: relative;
    opacity: 0.8;
    transition: all 0.3s ease;
}

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

.lang-switcher {
    background: transparent;
    border: none;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 8px 15px;
    border-radius: 50px;
}

.tool-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--secondary-color);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.tool-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
}

.tool-btn.whatsapp { color: #25D366; }

/* Scrolled Navbar */
.main-navigation.scrolled {
    top: 0;
}

.main-navigation.scrolled .nav-glass-wrapper {
    border-radius: 0;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* --- MODERN PRELOADER --- */
#preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 20px;
}

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

/* (Combined with modern menu card below) */

/* Premium Icons & Buttons */
.btn-premium-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--secondary-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-premium);
}

.btn-premium-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-premium-icon.admin-btn:hover {
    background: var(--dark-color);
}

/* Footer Premium */
.premium-footer {
    background: var(--secondary-color);
    color: white;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a.contact-item:hover {
    color: var(--primary-color);
}

.footer-contact-info i {
    width: 20px;
    color: var(--primary-color);
}

.footer-social-icons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.footer-social-icons a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s var(--ease-premium);
}

.footer-social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-right: 8px;
}

.footer-divider {
    border-color: rgba(255,255,255,0.08);
}

.footer-bottom {
    color: #64748b;
    font-size: 0.9rem;
}

/* Responsive Fixes */
@media (max-width: 991.98px) {
    .floating-nav {
        top: 0;
    }
    .glass-container {
        border-radius: 0 0 24px 24px;
        padding: 12px 20px;
    }
    .footer-social-icons {
        margin-bottom: 24px;
    }
}

/* Product Details */
.product-image {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.product-metadata {
    margin-bottom: 1rem;
}

.product-metadata span {
    margin-right: 1.5rem;
    color: #6c757d;
}

.product-description {
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    position: relative;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Admin styles */
.admin-sidebar {
    background-color: var(--dark-color);
    color: white;
    min-height: calc(100vh - 56px);
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.75);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.admin-sidebar .nav-link i {
    margin-right: 0.5rem;
    width: 1.5rem;
    text-align: center;
}

/* --- MODERN SECTION HEADERS --- */
.section-header {
    margin-bottom: 2.5rem;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(197, 157, 95, 0.08);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(197, 157, 95, 0.15);
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto;
    border-radius: 10px;
}

/* --- MODERN CATEGORY CARDS --- */
.bg-modern-light {
    background: #fcfdfe;
}

.modern-category-card {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-premium);
}

.category-img-fixed {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Force 1:1 Aspect Ratio reliably */
    background: #eee;
    overflow: hidden;
}

.category-img-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modern-category-card:hover .category-img-zoom {
    transform: scale(1.15);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: background 0.3s ease;
}

.overlay-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.overlay-content i {
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.modern-category-card:hover .overlay-content i {
    transform: translateX(0);
    opacity: 1;
}

/* --- MODERN MENU CARD CONTENT --- */
.menu-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-card-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.menu-card-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    color: #64748b;
}

.menu-card-footer {
    margin-top: auto;
    padding-top: 1rem;
}

.price-box .old-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.85rem;
    margin-right: 8px;
}

.price-box .current-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
}

.btn-view-details {
    width: 45px;
    height: 45px;
    background: #fff;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.card-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-img-container:hover .card-hover-overlay {
    opacity: 1;
}
/* CSS Cleanup */

/* --- END OF MENU CARD HELPERS --- */

/* --- MODERN MENU CARDS --- */
.menu-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
    transition: all 0.4s var(--ease-premium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card-img-container {
    position: relative;
    width: 100%;
    padding-top: 65%; /* More compact aspect ratio */
    background: #f8f9fa;
    overflow: hidden;
}

.menu-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* Sticky Cart Bar Luxury */
.sticky-cart-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 500px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    padding: 16px 30px;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    z-index: 1100;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.1);
    visibility: hidden;
    opacity: 0;
}

.sticky-cart-bar.visible {
    visibility: visible;
    opacity: 1;
    bottom: 40px;
}

.sticky-cart-bar:hover {
    transform: translateX(-50%) scale(1.05);
    background: var(--secondary-color);
}

.cart-icon-wrapper {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(197, 157, 95, 0.4);
}

/* Location Error Luxury */
.location-error {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #fff 0%, #f1f5f9 100%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.location-error i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-shadow: 0 10px 20px rgba(197, 157, 95, 0.2);
    animation: bounce 2s infinite;
}

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

/* Luxury Input Override */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(197, 157, 95, 0.1);
}

/* Combined category styles */

.category-arrow {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--primary-color);
    transition: all 0.4s var(--ease-premium);
    opacity: 0;
    transform: translateX(-15px) rotate(-45deg);
    flex-shrink: 0;
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(0) rotate(0);
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(197, 157, 95, 0.3);
}

/* Responsive */
@media (max-width: 767.98px) {
    .category-pills {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }
}

/* --- NUSR-ET STYLE IMPRESSION --- */
/* Signature Dishes (Nusr-Et Style) */
.signature-dishes {
    background-color: #fdfbf7;
}

.signature-title {
    color: #a62122;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-align: left;
}

.signature-card {
    background: transparent;
    padding: 0;
    border: none;
    display: flex;
    flex-direction: column;
}

.signature-img-wrapper {
    border: 1px solid var(--primary-color);
    padding: 5px;
    background: #fff;
    transition: transform 0.4s var(--ease-premium);
}

.signature-card:hover .signature-img-wrapper {
    transform: translateY(-5px);
}

.signature-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.signature-body {
    padding: 15px 0 0 0;
}

.signature-item-title {
    color: #a62122;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.signature-item-description {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Floating Reservation Badge */
.floating-reservation {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 110px;
    height: 110px;
    background-color: #a62122;
    border-radius: 50%;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s var(--ease-premium);
}

.floating-reservation:hover {
    transform: scale(1.05);
}

.reservation-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: spin-reservation 15s linear infinite;
}

.reservation-text {
    font-family: var(--premium-font);
    font-size: 8.5px;
    font-weight: 700;
    fill: white;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.reservation-icon {
    font-size: 28px;
    color: white;
    z-index: 2;
}

@keyframes spin-reservation {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .floating-reservation {
        width: 80px;
        height: 80px;
        bottom: 20px;
        right: 20px;
    }
    .reservation-text {
        font-size: 7px;
    }
    .reservation-icon {
        font-size: 20px;
    }
} 

/* --- LUXURY UI ELEMENTS --- */
.luxury-search-box {
    position: relative;
    width: 100%;
}

.luxury-search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    z-index: 5;
}

.luxury-input {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 12px 20px 12px 50px;
    height: 52px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    width: 100%;
}

.luxury-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(197, 157, 95, 0.15);
    outline: none;
}

.luxury-sort-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 12px;
    height: 52px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.luxury-sort-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Gold Shimmer Effect for Titles */
.gold-effect {
    background: linear-gradient(
        90deg, 
        #c59d5f 0%, 
        #f1d8a1 25%, 
        #ffffff 50%, 
        #f1d8a1 75%, 
        #c59d5f 100%
    ) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    animation: goldShimmer 3s linear infinite !important;
    text-shadow: none !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

@keyframes goldShimmer {
    to { background-position: 200% center; }
}

.luxury-sort-btn.reset {
    background: #fee2e2;
    color: #ef4444;
}

/* Global Navigation Pill Styles */
.luxury-pill {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: #fff;
    color: var(--secondary-color);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s var(--ease-premium);
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    flex-shrink: 0 !important;
    min-width: max-content;
}

.luxury-pill:hover, .luxury-pill.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 157, 95, 0.3);
}

.luxury-nav-scroller {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
}

.luxury-nav-scroller::-webkit-scrollbar {
    display: none;
}

.luxury-pills {
    display: flex;
    gap: 12px;
}

/* --- MODERN APP-LIKE MOBILE EXPERIENCE --- */
@media (max-width: 768px) {
    :root {
        --safe-bottom: env(safe-area-inset-bottom);
    }

    body {
        padding-bottom: calc(var(--tab-bar-height) + 20px + var(--safe-bottom)) !important;
        background-color: #f8fafc;
    }

    /* Compact Mobile Grid */
    .row.g-3.px-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .col-6 {
        width: 100% !important;
    }


    .luxury-card {
        border-radius: 28px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.06);
        border: 1px solid rgba(0,0,0,0.03);
        transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium) !important;
    }

    .luxury-card:active {
        transform: scale(0.96) translateY(2px) !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    }

    .luxury-pill {
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
        position: relative;
        overflow: hidden;
    }

    .luxury-pill.active {
        transform: scale(1.05);
    }
    
    .luxury-badge {
        backdrop-filter: blur(15px);
        background: rgba(197, 157, 95, 0.15);
        border: 1px solid rgba(197, 157, 95, 0.3);
    }
/* Glassmorphism for Modals */
.modal-backdrop.show {
    backdrop-filter: blur(5px);
    background-color: rgba(15, 23, 42, 0.4);
}

    .luxury-item-name {
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        margin-bottom: 4px !important;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .luxury-item-desc {
        font-size: 0.75rem !important;
        margin-bottom: 10px !important;
        -webkit-line-clamp: 1 !important;
        line-clamp: 1 !important;
    }

    .luxury-current-price {
        font-size: 1.1rem !important;
    }

    .btn-luxury-add {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.9rem !important;
        transform: translateY(0) !important;
    }

    .card-overlay-luxury {
        opacity: 1 !important;
        padding: 10px !important;
    }

    /* Sticky Tab Bar (Legacy Luxury Nav Wrapper Update) */
    .luxury-nav-wrapper {
        position: sticky;
        top: 0;
        margin-bottom: 20px;
        padding: 10px 0;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        z-index: 1050;
    }

    .luxury-pill {
        padding: 8px 18px !important;
        font-size: 0.85rem !important;
        border-radius: 16px !important;
    }

    .luxury-input {
        height: 48px !important;
        padding: 10px 15px 10px 45px !important;
        font-size: 0.95rem !important;
    }

    .luxury-sort-btn {
        height: 48px !important;
        width: 100% !important;
    }

    .luxury-sort-btn.reset {
        width: 48px !important;
    }

    /* --- MOBILE BOTTOM TAB BAR --- */
    /* --- MOBILE BOTTOM TAB BAR (RAIKA EDITION) --- */
    .mobile-tab-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: calc(var(--tab-bar-height) + var(--safe-bottom));
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        padding: 0 10px calc(var(--safe-bottom) + 5px);
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.08);
        z-index: 10001; /* Search overlay'den de üstte (sepet vb. için) */
        border-top: 1px solid rgba(255, 255, 255, 0.8);
        border-top-left-radius: 28px;
        border-top-right-radius: 28px;
    }

    .tab-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none !important;
        color: #64748b; /* Softer gray */
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        padding: 6px 0;
        border-radius: 16px;
        width: 18%; /* Flexible width for 5-6 items */
        max-width: 75px;
    }

    .tab-item i {
        font-size: 1.25rem; /* Slightly smaller for elegance */
        margin-bottom: 4px;
        transition: all 0.4s ease;
    }

    .tab-item span {
        font-size: 0.6rem; /* Refined micro-copy */
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        white-space: nowrap;
        opacity: 0.8;
    }

    .tab-item.active {
        color: var(--primary-color);
        transform: translateY(-4px);
    }

    .tab-item.active i {
        color: var(--primary-color);
        filter: drop-shadow(0 4px 12px rgba(197, 157, 95, 0.4));
        transform: scale(1.1);
    }

    .tab-item.active span {
        opacity: 1;
        color: var(--primary-color);
    }

    .tab-item.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        width: 4px;
        height: 4px;
        background: var(--primary-color);
        border-radius: 50%;
        box-shadow: 0 0 10px var(--primary-color);
    }

    /* Floating Cart Button in Tab Bar */
    .tab-cart-center {
        width: 60px;
        height: 60px;
        background: var(--secondary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff !important;
        margin-top: -45px;
        box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
        border: 4px solid #fff;
        position: relative;
    }

    .tab-cart-center i {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .cart-badge-pulse {
        position: absolute;
        top: -5px;
        right: -5px;
        background: #ef4444;
        color: white;
        font-size: 0.7rem;
        font-weight: 800;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #fff;
        animation: pulse-red 2s infinite;
    }

    @keyframes pulse-red {
        0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
        70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
        100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
    }

    /* --- APP SEARCH OVERLAY --- */
    .app-search-overlay {
        position: fixed;
        inset: 0;
        background: #fff;
        z-index: 10000; /* Kesinlikle en üstte */
        display: none;
        flex-direction: column;
        padding-top: calc(10px + var(--safe-bottom));
    }

    .app-search-overlay.active {
        display: flex !important;
        animation: slideInBottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    .app-search-header {
        display: flex;
        align-items: center;
        padding: 15px 20px;
        gap: 15px;
    }

    .search-input-wrapper {
        flex-grow: 1;
        background: #f1f5f9;
        border-radius: 16px;
        padding: 10px 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .search-input-wrapper input {
        border: none;
        background: transparent;
        outline: none;
        width: 100%;
        font-weight: 600;
        color: var(--secondary-color);
    }

    .search-close {
        font-size: 1.25rem;
        color: #94a3b8;
        cursor: pointer;
    }

    .search-results-container {
        flex-grow: 1;
        overflow-y: auto;
        padding: 20px;
    }

    /* Native-like Pull-to-refresh style (Visual only) */
    .pull-indicator {
        height: 0;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        transition: height 0.3s ease;
    }

    /* Modal Styling Fixes for Mobile */
    .modal-content {
        border-radius: 30px 30px 0 0 !important;
        margin-bottom: 0 !important;
    }

    .modal.fade .modal-dialog {
        transform: translateY(100px);
        transition: transform 0.4s var(--ease-premium);
        display: flex;
        align-items: flex-end;
        min-height: 100%;
        margin: 0;
    }

    .modal.show .modal-dialog {
        transform: translateY(0);
    }

    /* Mobile Hero & Navbar refinements */
    .luxury-hero {
        padding: 0 !important;
        height: 16.6vh !important;
        min-height: 120px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0 0 25px 25px !important;
    }
    .luxury-title {
        font-size: 1.1rem !important;
        margin-bottom: 0 !important;
    }
    .luxury-line, .handwriting {
        display: none !important;
    }
    .main-navigation {
        display: none !important; /* Force hide on mobile as requested */
    }
    
    /* Scroll Down Indicator Hide on mobile to save space */
    .scroll-indicator {
        display: none !important;
    }

    /* Branded Banner Refinement */
    .brand-shimmer {
        font-size: 0.9rem !important;
        letter-spacing: 0.1em !important;
    }

    /* Floating Reservation Button - Hide on mobile since it's in the Tab Bar now */
    .floating-reservation {
        display: none !important;
    }

    /* Navbar fixes */
    .main-navigation {
        top: 0 !important;
    }
    .nav-glass-wrapper {
        border-radius: 0 0 20px 20px !important;
        padding: 5px 15px !important;
    }
    .site-logo {
        height: 28px !important;
    }
    
    /* Mobile-Specific Extended Header */
    .menu-extended-header {
        position: relative;
        overflow: hidden;
        border-radius: 0;
        margin-bottom: 0;
    }

    .menu-extended-header .hero-visual-background {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        z-index: 1;
    }

    .menu-extended-header .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, 
            rgba(0,0,0,0.7) 0%, 
            rgba(0,0,0,0.5) 50%, 
            rgba(0,0,0,0.85) 100%);
        z-index: 2;
    }

    .luxury-gold-separator {
        width: 100%;
        height: 45px; /* Thicker for better motif visibility */
        background: var(--gold-gradient);
        position: relative;
        z-index: 10;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        border-top: 2px solid rgba(255,255,255,0.3);
        border-bottom: 2px solid rgba(0,0,0,0.2);
        
        /* Prominent Seljuk Motif */
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='45' viewBox='0 0 80 45'%3E%3Cpath d='M40 5 L75 22.5 L40 40 L5 22.5 Z M40 12 L65 22.5 L40 33 L15 22.5 Z' fill='none' stroke='white' stroke-width='1.5' stroke-opacity='0.4'/%3E%3Ccircle cx='40' cy='22.5' r='3' fill='white' fill-opacity='0.3'/%3E%3C/svg%3E");
        background-repeat: repeat-x;
        background-size: auto 100%;
    }

    /* Sticky category nav refinements within extended header */
    .luxury-nav-wrapper.extended {
        background: transparent !important;
        box-shadow: none !important;
        padding-bottom: 25px !important;
        position: relative !important; /* Not sticky when extended */
    }

    .luxury-nav-wrapper.extended .luxury-pill {
        background: rgba(255, 255, 255, 0.15) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
        color: #fff !important;
        flex-shrink: 0 !important; /* Critical: prevent clipping */
        width: auto !important; /* Ensure content determines width */
        min-width: fit-content !important;
        padding: 12px 24px !important;
        font-size: 0.95rem !important;
        font-weight: 700 !important;
    }

    .luxury-nav-wrapper.extended .luxury-pill.active {
        background: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
        box-shadow: 0 10px 25px rgba(197, 157, 95, 0.5) !important;
        color: #fff !important;
    }

    .menu-extended-header .luxury-input {
        background: rgba(255, 255, 255, 0.9) !important;
        backdrop-filter: blur(10px);
    }

    .luxury-nav-wrapper {
        position: sticky;
        top: 0;
        padding: 12px 0 !important;
        z-index: 1060 !important;
        background: rgba(255,255,255,0.95) !important;
        backdrop-filter: blur(15px);
        box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
    }

    .luxury-pill {
        padding: 8px 18px !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        border-radius: 14px !important;
    }

    .luxury-pills {
        gap: 8px !important;
    }

    /* Section Header Mobile */
    .section-title {
        font-size: 1.35rem !important;
    }
    .section-subtitle {
        padding: 4px 10px !important;
        font-size: 0.55rem !important;
        letter-spacing: 1.5px !important;
    }

    /* Menu Card Mobile Refinements */
    .menu-card-content {
        padding: 0.65rem !important;
    }
    .menu-card-name {
        font-size: 0.9rem !important;
    }
    .menu-card-desc {
        display: none !important; 
    }
    .price-box .current-price {
        font-size: 0.95rem !important;
    }
    .btn-view-details {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.75rem !important;
    }
}

/* Animations */
@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.animate-slide-up {
    animation: slideUp 0.5s var(--ease-premium);
}

/* --- PREMIUM FOOTER (RAIKA DESIGN) --- */
.premium-footer {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.82);
    padding-top: 100px !important;
    padding-bottom: 40px !important;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(197, 157, 95, 0.15);
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 157, 95, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-logo {
    color: #fff !important;
    font-size: 1.75rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem !important;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    max-width: 320px;
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-info .contact-item i {
    width: 32px;
    height: 32px;
    background: rgba(197, 157, 95, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-contact-info .contact-item:hover i {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

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

.footer-social-icons a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.4s var(--ease-premium);
    background: rgba(255, 255, 255, 0.03);
}

.footer-social-icons a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(197, 157, 95, 0.3);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    font-weight: 500;
}

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

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08) !important;
    opacity: 1 !important;
    margin: 60px 0 40px !important;
}

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

@media (max-width: 768px) {
    .premium-footer {
        padding-top: 60px !important;
        padding-bottom: 100px !important; /* Extra padding for tab bar */
        text-align: center;
    }
    
    .footer-desc {
        margin: 0 auto 2rem;
    }
    
    .footer-contact-info .contact-item {
        justify-content: center;
    }
    
    .footer-social-icons {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .footer-links {
        margin-top: 1rem;
    }
}

/* --- ABOUT STORY SECTION --- */
.about-image-stack { position: relative; padding-bottom: 40px; }
.main-about-img { transition: transform 0.5s ease; border: 8px solid #fff; }
.about-image-stack:hover .main-about-img { transform: scale(1.02); }
.about-experience-badge { position: absolute; bottom: 0; right: 20px; background: var(--primary-color); color: #fff; padding: 20px 30px; border-radius: 20px; box-shadow: 0 15px 30px rgba(0,0,0,0.2); text-align: center; z-index: 2; }
.about-experience-badge .number { display: block; font-size: 2rem; font-weight: 800; line-height: 1; margin-bottom: 5px; }
.about-experience-badge .text { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.about-text-content p { margin-bottom: 1.5rem; }
.highlights-list i { font-size: 1.1rem; }

/* --- WEDDING TEASER ENHANCEMENTS --- */
.wedding-teaser-section { background: #fdfaf5; }
.teaser-img-wrap { transition: transform 0.5s ease; }
.wedding-teaser-section:hover .teaser-img-wrap { transform: scale(1.05); }
.wedding-features .w-feat-item { font-size: 0.9rem; font-weight: 600; color: #4b5563; display: flex; align-items: center; }

/* ---- TURİZM SECTION ---- */
.tourism-section { background: #f8f9fa; }
.tourism-card { border-radius: 20px; overflow: hidden; position: relative; transition: all 0.4s var(--ease-premium); cursor: pointer; }
.tourism-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.2); }
.tourism-card-xl { min-height: 380px; }
.tourism-card-sm { min-height: 260px; }
.tc-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); z-index: 1; }
.tc-waterfall { background: linear-gradient(135deg, rgba(26, 74, 46, 0.4), rgba(45, 106, 79, 0.4)), url('../../uploads/slider/slider_67f581193a081.webp') center/cover no-repeat; }
.tc-lake { background: linear-gradient(135deg, rgba(26, 58, 92, 0.4), rgba(41, 98, 168, 0.4)), url('../../uploads/tortumgolu.webp') center/cover no-repeat; }
.tc-local { background: linear-gradient(135deg, rgba(92, 58, 30, 0.6), rgba(139, 94, 60, 0.6)), url('../../uploads/tourism/erzurum_yoresel_urunler.webp') center/cover no-repeat; }
.tc-historical { background: linear-gradient(135deg, rgba(58, 42, 30, 0.6), rgba(107, 76, 42, 0.6)), url('../../uploads/tourism/osvank_kilisesi_tourism.webp') center/cover no-repeat; }
.tc-hiking { background: linear-gradient(135deg, rgba(30, 58, 42, 0.6), rgba(45, 90, 61, 0.6)), url('../../uploads/tourism/uzundere_hiking.webp') center/cover no-repeat; }
.tc-content { position: relative; z-index: 2; padding: 28px; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.tc-badge { display: inline-block; background: rgba(197,157,95,0.9); color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; margin-bottom: 12px; align-self: flex-start; }
.tc-title { color: #fff; font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; }
.tc-desc { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.tc-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.tc-meta span { color: rgba(255,255,255,0.7); font-size: 0.8rem; }
.tc-btn { display: inline-flex; align-items: center; background: rgba(197,157,95,0.9); color: #fff; font-weight: 700; font-size: 0.85rem; padding: 8px 20px; border-radius: 50px; text-decoration: none; width: fit-content; transition: all 0.3s ease; }
.tc-btn:hover { background: #c59d5f; color: #fff; transform: translateX(4px); }
.tc-icon-wrap { font-size: 2.5rem; color: #c59d5f; margin-bottom: 16px; width: 60px; height: 60px; background: rgba(197,157,95,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.tc-title-sm { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.tc-desc-sm { color: rgba(255,255,255,0.75); font-size: 0.85rem; line-height: 1.6; margin: 0; }
.route-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.route-card-header { background: linear-gradient(135deg, #0f172a, #1e293b); color: #fff; padding: 20px 28px; display: flex; align-items: center; gap: 12px; font-size: 1.1rem; }
.route-card-header i { color: #c59d5f; font-size: 1.3rem; }
.route-card-body { padding: 28px; }
.route-item { display: flex; gap: 20px; align-items: flex-start; }
.route-number { font-size: 2.5rem; font-weight: 900; color: rgba(197,157,95,0.2); line-height: 1; flex-shrink: 0; font-family: var(--premium-font); }
.route-info h6 { font-weight: 700; color: #1e293b; margin-bottom: 6px; }
.route-info p { color: #64748b; font-size: 0.85rem; margin-bottom: 8px; }
.route-duration { background: #f1f5f9; color: #475569; font-size: 0.78rem; padding: 3px 10px; border-radius: 50px; display: inline-block; }
.features-banner { background: linear-gradient(135deg, #0f172a, #1e293b); border-radius: 20px; overflow: hidden; }
.feature-banner-item { padding: 32px 20px; text-align: center; color: #fff; border-right: 1px solid rgba(255,255,255,0.08); transition: all 0.3s ease; }
.feature-banner-item:last-child { border-right: none; }
.feature-banner-item:hover { background: rgba(197,157,95,0.1); }
.feature-banner-item i { font-size: 1.8rem; color: #c59d5f; display: block; margin-bottom: 12px; }
.feature-banner-item h6 { font-weight: 700; margin-bottom: 4px; font-size: 0.9rem; }
.feature-banner-item p { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin: 0; }
@media (max-width: 768px) {
    .feature-banner-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .feature-banner-item:last-child { border-bottom: none; }
}