/* =========================================
   BALKAN BITES ATELIER - COMPLETE CSS
   Enhanced Color Palette: Earth & Terracotta
   ========================================= */

/* =========================================
   1. CSS VARIABLES - REFINED EARTH PALETTE
   ========================================= */
:root {
    /* BACKGROUNDS */
    --bg-cream: #FAF8F5;          /* Softer warm white */
    --bg-white: #FFFFFF;
    --bg-accent: #F0EBE3;         /* Warm beige accent */
    
    /* TEXT COLORS */
    --text-main: #2C3E37;         /* Deep forest with warmth */
    --text-muted: #6B7C74;        /* Sage grey-green */
    --text-inverse: #FAF8F5;
    
    /* PRIMARY ACCENT - Terracotta & Copper */
    --primary-color: #D4765A;     /* Warm terracotta */
    --primary-dark: #B85E43;      /* Deeper terracotta */
    --primary-light: #E89B82;     /* Lighter terracotta */
    
    /* SECONDARY ACCENT - Olive & Gold */
    --secondary-color: #8B956D;   /* Olive green */
    --secondary-dark: #6F7A57;    /* Darker olive */
    --accent-gold: #C9A677;       /* Muted gold */
    
    /* FONTS */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    /* TRANSITIONS & EFFECTS */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 30px rgba(44, 62, 55, 0.08);
    --shadow-hover: 0 20px 40px rgba(212, 118, 90, 0.2);
    --shadow-strong: 0 25px 50px rgba(44, 62, 55, 0.15);
}

/* =========================================
   2. GLOBAL RESET & BASE STYLES
   ========================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

ul { list-style: none; }

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* =========================================
   3. REUSABLE COMPONENTS
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.small-container {
    max-width: 900px;
}

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

.section {
    padding: 100px 0;
    position: relative;
}

.bg-light { background-color: var(--bg-white); }
.bg-dark { background-color: var(--text-main) !important; }

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

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

/* Diamond Separator */
.separator {
    width: 100%;
    max-width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 15px auto 25px;
    position: relative;
    opacity: 0.7;
}

.separator::after {
    content: '◆';
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-cream);
    padding: 0 10px;
    color: var(--primary-color);
    font-size: 0.8rem;
}

.bg-light .separator::after,
.reviews-section .separator::after {
    background: var(--bg-white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 700;
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 118, 90, 0.4);
}

.btn-transparent {
    border-color: #fff;
    color: #fff;
    background: transparent;
}

.btn-transparent::before {
    background: #fff;
}

.btn-transparent:hover {
    color: var(--text-main);
    border-color: #fff;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

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

.loader-content {
    text-align: center;
    font-family: var(--font-heading);
}

.loader-text {
    font-size: 2.5rem;
    display: block;
    animation: fadeIn 1s forwards;
    color: var(--text-main);
}

.loader-sub {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-style: italic;
}

.loader-line {
    width: 0;
    height: 2px;
    background: var(--primary-color);
    margin: 10px auto;
    animation: growLine 1.5s forwards;
}

@keyframes growLine {
    to { width: 80px; }
}

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

/* =========================================
   5. SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.active-reveal {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* =========================================
   6. NAVIGATION (CLEAN - NO BORDER LINE)
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    box-shadow: 0 2px 15px rgba(44, 62, 55, 0.05);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(44, 62, 55, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    z-index: 1001;
}

.logo-img {
    max-height: 60px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    max-height: 50px;
}

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

.nav-link {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-main);
    font-weight: 700;
    position: relative;
    padding: 5px 0;
}

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

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

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

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 10px;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background: var(--text-main);
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* REMOVED KILIM BORDER */
.kilim-border {
    display: none;
}

/* =========================================
   7. HERO SLIDER (FULL VIEWPORT)
   ========================================= */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Background with Ken Burns Effect */
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide-active .hero-slide-bg {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 62, 55, 0.3),
        rgba(44, 62, 55, 0.7)
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    padding: 20px;
}

.hero-content-inner {
    max-width: 800px;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 1s ease-out 0.3s, 
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.swiper-slide-active .hero-content-inner {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-light);
    margin-bottom: 15px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
}

.swiper-slide-active .hero-label {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.7s, transform 0.8s ease-out 0.7s;
}

.swiper-slide-active .hero-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    letter-spacing: 3px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 0.9s, transform 0.8s ease-out 0.9s;
}

.swiper-slide-active .hero-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 1.1s, transform 0.8s ease-out 1.1s;
}

.swiper-slide-active .hero-btns {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Custom Pagination */
.hero-pagination {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    border-radius: 50%;
    transition: var(--transition);
    cursor: pointer;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* Hero Custom Navigation */
.hero-nav-prev,
.hero-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    z-index: 10;
    cursor: pointer;
    transition: var(--transition);
}

.hero-nav-prev:hover,
.hero-nav-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.hero-nav-prev {
    left: 30px;
}

.hero-nav-next {
    right: 30px;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    z-index: 10;
    animation: bounce 2s infinite;
}

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

.scroll-down i {
    font-size: 1.2rem;
}

/* =========================================
   8. SERVICES SECTION
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--primary-color);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .read-more {
    gap: 10px;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-card:hover .read-more i {
    transform: translateX(5px);
}

/* =========================================
   9. SERVICE MODALS
   ========================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 62, 55, 0.85);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
}

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

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 500px;
    background: #fff;
    padding: 40px;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    text-align: center;
    border-radius: 4px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-main);
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.modal-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.modal-body ul {
    text-align: left;
    margin: 20px 0;
    padding-left: 20px;
}

.modal-body ul li {
    margin-bottom: 10px;
    list-style-type: disc;
    color: var(--text-muted);
}

.modal .price {
    font-weight: 700;
    font-size: 1.2rem;
    margin: 20px 0;
    color: var(--text-main);
    display: block;
}

/* =========================================
   10. PROCESS SECTION
   ========================================= */
.process-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: stretch;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 40px 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: rgba(212, 118, 90, 0.1);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    line-height: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.6;
}

.process-connector {
    flex-grow: 0;
    width: 60px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    margin-top: 80px;
    position: relative;
}

.process-connector::after {
    content: '→';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* =========================================
   11. VIDEO SECTION
   ========================================= */
.video-section {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.video-overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
}

.video-text-box {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 50px;
    backdrop-filter: blur(5px);
    background: rgba(44, 62, 55, 0.3);
    max-width: 700px;
    margin: 0 auto;
    border-radius: 4px;
}

.video-text-box h2 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 20px;
}

.video-label {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
    color: var(--primary-light);
}

.play-btn-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    transition: var(--transition);
    margin-top: 20px;
}

.play-circle {
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-btn-wrapper:hover .play-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* =========================================
   12. MENU SECTION
   ========================================= */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    color: #999;
    padding-bottom: 5px;
    position: relative;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--text-main);
}

.tab-btn.active {
    color: var(--text-main);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

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

.menu-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid transparent;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--primary-color);
}

.card-image {
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.card-content {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
}

.category-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}

.menu-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.card-divider {
    width: 40px;
    height: 1px;
    background: var(--primary-light);
    margin: 15px auto;
}

.menu-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

.menu-card.hide {
    display: none;
}

.menu-card.show {
    animation: fadeIn 0.6s ease forwards;
}

/* =========================================
   13. SPOTLIGHT SLIDER (COMMERCIAL)
   ========================================= */
.spotlight-section {
    position: relative;
    height: 65vh;
    width: 100%;
    background: #000;
    overflow: hidden;
}

.spotlightSwiper {
    width: 100%;
    height: 100%;
}

.spotlight-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Ken Burns Background Effect */
.spotlight-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.swiper-slide-active .spotlight-bg {
    transform: scale(1.15);
}

.spotlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

.spotlight-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 20px;
    z-index: 2;
    display: flex;
    justify-content: center;
    text-align: center;
}

.content-wrapper {
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.swiper-slide-active .content-wrapper {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.spotlight-label {
    display: inline-block;
    color: var(--primary-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 700;
}

.spotlight-content h3 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.spotlight-line {
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    margin: 0 auto 20px;
}

.spotlight-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.spotlight-content em {
    color: var(--primary-light);
    font-style: italic;
}

/* Spotlight Pagination */
.spotlight-pagination {
    position: absolute;
    bottom: 30px !important;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 20;
}

.spotlight-pagination .swiper-pagination-bullet {
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    opacity: 1;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.spotlight-pagination .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.3);
}

.spotlight-pagination .swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    transform: translateX(-100%);
    animation: fillProgress 6s linear forwards;
}

@keyframes fillProgress {
    to { transform: translateX(0); }
}

/* =========================================
   14. GALLERY (MASONRY)
   ========================================= */
.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
}

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

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

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(212, 118, 90, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.overlay span {
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .overlay span {
    transform: translateY(0);
}

.item-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
    grid-row: span 1;
}

/* =========================================
   15. REVIEWS SECTION
   ========================================= */
.reviews-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: #FFFFFF;
}

.review-card-glass {
    background: #fff;
    border: 1px solid rgba(212, 118, 90, 0.2);
    padding: 50px 40px;
    border-radius: 4px;
    color: var(--text-main);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.review-card-glass:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.quote-icon-bg {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: rgba(212, 118, 90, 0.15);
    font-family: serif;
}

.review-stars {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 0.8rem;
    letter-spacing: 3px;
}

.review-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
    line-height: 1.6;
    color: var(--text-main);
}

.review-author h4 {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.review-author span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.swiper-nav-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    z-index: 2;
    position: relative;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 50px;
    height: 50px;
    border: 1px solid var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    background: none;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* =========================================
   16. FAQ SECTION
   ========================================= */
.accordion {
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
}

.accordion-item {
    border-bottom: 1px solid rgba(44, 62, 55, 0.15);
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    padding: 25px 10px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.accordion-header i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.4s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    opacity: 0.8;
}

.accordion-content p {
    padding: 0 10px 30px 10px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.accordion-item.active .accordion-header {
    color: var(--primary-color);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    transition: max-height 0.5s ease-in-out;
}

.accordion-item.active i {
    transform: rotate(45deg);
}

/* =========================================
   17. LOCATION & FOOTER
   ========================================= */
.row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.col-text,
.col-img {
    flex: 1;
}

.reverse-mobile {
    flex-direction: row;
}

.location-list {
    margin: 30px 0;
}

.location-list li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.location-list i {
    color: var(--primary-color);
    margin-top: 5px;
}

.hours-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-left: 3px solid var(--primary-color);
    margin-top: 30px;
}

.hours-box h4 {
    color: #fff !important;
    margin-bottom: 10px;
}

.map-frame {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.map-frame iframe {
    display: block;
    border-radius: 4px;
    filter: grayscale(100%) invert(92%) contrast(0.83);
    transition: filter 0.5s ease;
}

.map-frame:hover iframe {
    filter: none;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-item p {
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    font-size: 0.85rem;
}

.contact-item a {
    color: #aaa;
    transition: var(--transition);
}

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

/* =========================================
   18. FLOATING ACTION BUTTON (FAB)
   ========================================= */
.fab-wrapper {
    position: fixed;
    bottom: 20px;
    right: 25px;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 15px;
    z-index: 1000;
}

.fab-main {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 118, 90, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse-terracotta 2s infinite;
    transition: var(--transition);
}

.fab-main:hover {
    transform: scale(1.1);
}

@keyframes pulse-terracotta {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 118, 90, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 118, 90, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.fab-wrapper.active .fab-main {
    animation: none;
    background: #333;
}

.fab-main .close-icon {
    display: none;
}

.fab-wrapper.active .open-icon {
    display: none;
}

.fab-wrapper.active .close-icon {
    display: block;
}

.fab-options {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

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

.fab-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fab-label {
    background: #fff;
    color: var(--text-main);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    white-space: nowrap;
}

.fab-wrapper.active .fab-label {
    opacity: 1;
    transform: translateX(0);
}

.fab-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.fab-action:hover .fab-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

/* =========================================
   19. CALL POPUP
   ========================================= */
.call-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 62, 55, 0.85);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    backdrop-filter: blur(4px);
}

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

.call-popup-content {
    background: #fff;
    padding: 50px 40px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    position: relative;
    border-radius: 4px;
    transform: translateY(50px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-strong);
}

.call-popup-overlay.active .call-popup-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-main);
    transition: var(--transition);
    line-height: 1;
}

.close-btn:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.popup-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.call-popup-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.call-popup-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.popup-sub {
    font-size: 0.9rem;
    margin-top: 15px;
    color: var(--text-muted);
}

.popup-sub a {
    color: var(--primary-color);
    text-decoration: underline;
}

.popup-sub a:hover {
    color: var(--primary-dark);
}

/* =========================================
   20. SCROLLBAR STYLING
   ========================================= */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border: 2px solid var(--bg-cream);
    border-radius: 20px;
}

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

::selection {
    background: var(--primary-color);
    color: #fff;
}

/* =========================================
   21. RESPONSIVE DESIGN (MOBILE FIRST)
   ========================================= */

/* Tablets and Below (768px) */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: auto;
        flex-direction: column;
        background: var(--bg-cream);
        padding: 40px 0;
        transition: left 0.4s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

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

    .hamburger {
        display: block;
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }

    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-nav-prev,
    .hero-nav-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-nav-prev {
        left: 15px;
    }

    .hero-nav-next {
        right: 15px;
    }

    /* Process */
    .reverse-mobile {
        flex-direction: column-reverse;
    }

    .process-grid {
        flex-direction: column;
    }

    .process-connector {
        display: none;
    }

    /* Gallery */
    .gallery-wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 10px;
    }

    .item-tall,
    .item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Video */
    .video-section {
        height: 50vh;
    }

    .video-text-box {
        padding: 30px 20px;
    }

    /* Spotlight */
    .spotlight-section {
        height: 75vh;
    }

    .spotlight-content h3 {
        font-size: 2.2rem;
    }

    .spotlight-content {
        padding: 40px 20px;
    }

    /* Menu Grid */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Contact Grid */
    .contact-grid {
        flex-direction: column;
        gap: 30px;
    }

    /* FAB */
    .fab-wrapper {
        bottom: 15px;
        right: 15px;
    }

    .fab-main {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-pagination {
        bottom: 60px;
    }

    .scroll-down {
        font-size: 0.7rem;
    }

    .spotlight-pagination .swiper-pagination-bullet {
        width: 35px;
        height: 3px;
    }
}

/* Large Screens (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* =========================================
   22. ACCESSIBILITY IMPROVEMENTS
   ========================================= */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus Visible States */
a:focus-visible,
button:focus-visible,
.tab-btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================
   23. PRINT STYLES
   ========================================= */
@media print {
    .navbar,
    .fab-wrapper,
    .call-popup-overlay,
    .scroll-down,
    .hero-nav-prev,
    .hero-nav-next,
    .scroll-to-top {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .section {
        page-break-inside: avoid;
    }
}

/* =========================================
   24. SCROLL TO TOP BUTTON (From JS)
   ========================================= */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(212, 118, 90, 0.3);
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* =========================================
   25. CUSTOM CURSOR (From JS - Desktop)
   ========================================= */
.custom-cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}