/* ============================================================
   SWAD INDIA RESTAURANT — Premium UI Design System
   Modern Dark Gold Theme | 2025
   ============================================================ */

/* ─── GOOGLE FONTS PRELOADED in header.php ─── */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
    /* Brand Colors */
    --gold:         #D4A017;
    --gold-light:   #F5C842;
    --gold-dark:    #A8800E;
    --gold-glow:    rgba(212, 160, 23, 0.25);

    /* Backgrounds */
    --bg-primary:   #111111;
    --bg-secondary: #1a1a1a;
    --bg-card:      #222222;
    --bg-card2:     #2a2a2a;
    --bg-white:     #ffffff;
    --bg-cream:     #F9F5ED;
    --bg-light:     #f4f0e6;

    /* Text */
    --text-white:   #ffffff;
    --text-light:   #cccccc;
    --text-muted:   #999999;
    --text-dark:    #1a1a1a;
    --text-body:    #555555;
    --text-heading: #222222;

    /* Borders */
    --border-gold:  rgba(212, 160, 23, 0.3);
    --border-dark:  rgba(255,255,255,0.08);
    --border-light: rgba(0,0,0,0.08);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-script:  'Tangerine', cursive;

    /* Spacing */
    --section-py:   90px;
    --section-py-sm:50px;

    /* Shadows */
    --shadow-sm:    0 2px 12px rgba(0,0,0,0.08);
    --shadow-md:    0 8px 30px rgba(0,0,0,0.15);
    --shadow-lg:    0 20px 60px rgba(0,0,0,0.25);
    --shadow-gold:  0 8px 30px rgba(212,160,23,0.25);

    /* Transitions */
    --trans-fast:   0.2s ease;
    --trans-med:    0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --trans-slow:   0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Border Radius */
    --radius-sm:    6px;
    --radius-md:    12px;
    --radius-lg:    20px;
    --radius-xl:    30px;
    --radius-pill:  50px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    /* font-size: 17px; */
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -ms-text-size-adjust: 100%;
}

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

a { text-decoration: none; color: inherit; transition: var(--trans-fast); }
a:hover, a:focus { outline: none; }

ul, ol { list-style: none; padding: 0; margin: 0; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.25;
    color: var(--text-heading);
    margin-bottom: 1.2rem;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.85rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1.05rem; }

p { color: var(--text-body); margin-bottom: 1.2rem; }

.script-text {
    font-family: var(--font-script);
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 0.25rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-label::before, .section-label::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title.white { color: var(--text-white); }
.section-title.gold  { color: var(--gold); }

.section-desc {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.section-desc.white { color: rgba(255,255,255,0.8); }

/* ─── PAGE LOADER ─── */
#swad-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

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

.loader-logo {
    font-size: 3rem;
    animation: loaderPulse 1.5s infinite;
    margin-bottom: 1rem;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212,160,23,0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

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

/* ─── MOBILE CTA BAR ─── */
.mobile-cta-bar {
    display: flex;
    flex-direction: row;
    width: 100%;
    background: transparent;
    z-index: 999999;
    position: fixed;
    bottom: 20px;
    text-align: center;
    justify-content: space-around;
}
/* ─── NAVIGATION ─── */
.swad-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    padding: 0;
    background: #000;
    transition: background var(--trans-med), box-shadow var(--trans-med), padding var(--trans-med);
}

.swad-navbar.scrolled {
    background: rgba(17, 17, 17, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 20px;
}

.swad-navbar.scrolled .nav-inner { height: 70px; }

.nav-logo img {
    height: 65px;
    width: auto;
    transition: var(--trans-med);
    filter: brightness(1.1);
    border-radius: 10px;
}

.swad-navbar.scrolled .nav-logo img { 
    height: 55px;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--trans-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--trans-med);
    border-radius: 2px;
}

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

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

.nav-btn-order {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-primary) !important;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    transition: var(--trans-med);
    white-space: nowrap;
    box-shadow: var(--shadow-gold);
}

.nav-btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212,160,23,0.4);
}

.nav-btn-call {
    color: rgba(255,255,255,0.85) !important;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    white-space: nowrap;
    transition: var(--trans-fast);
}

.nav-btn-call:hover {
    color: var(--gold) !important;
    border-color: var(--gold);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--trans-med);
    transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(17,17,17,0.98);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    border-top: 1px solid var(--border-gold);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: var(--trans-med);
}

.nav-mobile.open {
    display: block;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.nav-mobile ul { padding: 0 20px; }

.nav-mobile li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-mobile li:last-child { border: none; }

.nav-mobile a {
    display: block;
    padding: 14px 20px;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--trans-fast);
}

.nav-mobile a:hover, .nav-mobile a.active { color: var(--gold); background: rgba(212,160,23,0.08); }

.nav-mobile .mobile-order-link {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-primary) !important;
    font-weight: 700;
    border-radius: var(--radius-pill);
    text-align: center;
    margin: 10px 20px 5px;
}

.nav-mobile .mobile-call-link {
    color: var(--gold) !important;
    text-align: center;
    margin: 5px 20px 10px;
}

/* ─── BUTTONS ─── */
.btn-swad-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: var(--trans-med);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-swad-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
    transform: translateX(-100%) skewX(-20deg);
    transition: transform 0.5s ease;
}

.btn-swad-primary:hover::after { transform: translateX(150%) skewX(-20deg); }

.btn-swad-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(212,160,23,0.4);
    color: var(--bg-primary);
}

.btn-swad-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 32px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: var(--trans-med);
}

.btn-swad-outline:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-swad-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: var(--trans-med);
    box-shadow: var(--shadow-md);
}

.btn-swad-white:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ─── HERO SECTION (Home) ─── */
.home-hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease;
    transform: scale(1.05);
    align-content: center;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    animation: heroZoom 8s ease forwards;
    pointer-events: auto;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1); }
}

/* .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.6) 100%
    );
    z-index: 1;
} */

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
    animation: heroFadeIn 1.2s ease 0.3s both;
}

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

.hero-script {
    font-family: var(--font-script);
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(212,160,23,0.3);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--text-white);
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 15px; */
    /* margin-bottom: 2rem; */
}

.hero-divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-divider-line.right {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-divider-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

.hero-address {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    font-style: italic;
}

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

/* Slider Dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--trans-fast);
}

.hero-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

/* Slider Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--trans-med);
    font-size: 1.2rem;
}

.hero-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-primary);
}

.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* Scroll Down Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 80px;
    right: 30px;
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.hero-scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 1.5s ease infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(1) translateY(0); opacity: 1; }
    100% { transform: scaleY(0.3) translateY(20px); opacity: 0; }
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 80px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.55));
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-hero-script {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Breadcrumb */
.swad-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-pill);
    padding: 8px 20px;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.swad-breadcrumb a { color: var(--gold); }
.swad-breadcrumb a:hover { color: var(--gold-light); }
.swad-breadcrumb span { color: rgba(255,255,255,0.5); }

/* ─── SECTION LAYOUT ─── */
.swad-section {
    padding: var(--section-py) 0;
}

.swad-section-dark {
    padding: var(--section-py) 0;
    background: var(--bg-primary);
}

.swad-section-cream {
    padding: var(--section-py) 0;
    background: var(--bg-cream);
}

.section-padding {
    padding: var(--section-py) 0;
}

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

/* ─── CARD & ICON STYLING ─── */
.bg-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--trans-med);
    height: 100%;
}

.bg-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.card-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--trans-med);
}

.bg-card:hover .card-icon-circle {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-primary) !important;
    transform: scale(1.1) rotate(10deg);
}

.gold-text {
    color: var(--gold) !important;
}

/* ─── ANIMATION CLASSES ─── */
.swad-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.swad-animate.from-left  { transform: translateX(-40px); }
.swad-animate.from-right { transform: translateX(40px); }
.swad-animate.from-scale { transform: scale(0.9); }

.swad-animate.swad-visible {
    opacity: 1;
    transform: none;
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ─── ABOUT SECTION ─── */
.about-section { background: var(--bg-white); }

.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.about-image-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--gold);
    color: var(--bg-primary);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    font-family: var(--font-heading);
}

.about-badge-num {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content { padding-left: 40px; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--gold);
    transition: var(--trans-fast);
}

.about-feature-item:hover {
    background: var(--gold-glow);
    border-left-color: var(--gold-light);
}

.about-feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-heading);
    margin: 0;
}

/* ─── SERVICES CARDS ─── */
.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--trans-med);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.service-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

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

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.service-card-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
    transition: var(--trans-med);
}

.service-card:hover .service-card-icon {
    transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
}

.service-card-body {
    padding: 24px;
    text-align: center;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
}

.service-card-desc {
    color: var(--text-body);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* ─── MENU SECTION (Home Featured) ─── */
.menu-dark-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, #1a1210 100%);
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

.menu-dark-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.menu-item-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--trans-med);
    margin-bottom: 20px;
}

.menu-item-card:hover {
    border-color: var(--border-gold);
    background: var(--bg-card2);
    transform: translateX(4px);
    box-shadow: -4px 0 0 var(--gold), var(--shadow-md);
}

.menu-item-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    line-height: 1;
}

.menu-item-body { flex: 1; min-width: 0; }

.menu-item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-white);
    margin: 0;
    line-height: 1.3;
}

.menu-item-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-body);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-item-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* ─── MENU PAGE TABS ─── */
.menu-tabs-wrap {
    background: var(--bg-white);
    padding: var(--section-py) 0;
}

.menu-tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 6px;
    background: var(--bg-cream);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
}

.menu-tab-btn {
    background: none;
    border: none;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-body);
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--trans-med);
    white-space: nowrap;
}

.menu-tab-btn:hover { color: var(--gold); }

.menu-tab-btn.active {
    background: var(--gold);
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
}

.menu-tab-content { display: none; }
.menu-tab-content.active { display: block; animation: fadeInUp 0.4s ease; }

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

.menu-page-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 20px;
    border-bottom: 1px dashed var(--border-light);
    transition: var(--trans-fast);
    border-radius: var(--radius-sm);
    gap: 20px;
}

.menu-page-item:hover {
    background: var(--bg-cream);
    border-bottom-style: solid;
    border-bottom-color: var(--gold);
}

.menu-page-item:last-child { border-bottom: none; }

.menu-page-item-left { flex: 1; min-width: 0; }

.menu-page-item-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.menu-page-item-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.menu-page-item-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.15rem;
    font-family: var(--font-body);
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 2px;
}

.menu-category-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--text-heading);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-category-icon { color: var(--gold); }

/* ─── TESTIMONIALS ─── */
.testimonial-section {
    background: linear-gradient(135deg, #1a0f00 0%, var(--bg-primary) 50%, #0f1a00 100%);
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '"';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 20rem;
    color: rgba(212,160,23,0.04);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: var(--trans-med);
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(212,160,23,0.15);
    line-height: 1;
}

.testimonial-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.testimonial-stars i { color: var(--gold); font-size: 0.9rem; }

.testimonial-text {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    background: var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-name {
    color: var(--text-white);
    font-weight: 600;
    margin: 0;
    font-size: 1.05rem;
}

.testimonial-role {
    color: var(--gold);
    font-size: 0.9rem;
    margin: 0;
}

/* ─── STATS BAR ─── */
.stats-section {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    color: var(--bg-primary);
    padding: 10px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin: 0;
}

/* ─── FAQ ACCORDION ─── */
.faq-section { background: var(--bg-cream); padding: var(--section-py) 0; }

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--trans-fast);
}

.faq-item:hover { border-color: var(--gold); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-heading);
    text-align: left;
    transition: var(--trans-fast);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    transition: var(--trans-med);
    font-size: 0.85rem;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    background: var(--gold);
    color: var(--bg-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-body);
    line-height: 1.7;
    border-top: 1px solid var(--border-light);
    font-size: 0.95rem;
}

/* ─── CTA SECTION ─── */
.cta-section {
    background: linear-gradient(135deg, var(--bg-primary) 0%, #1a1210 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(212,160,23,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(212,160,23,0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* ─── GALLERY ─── */
.gallery-section { background: var(--bg-white); padding: var(--section-py) 0; }

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

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

.gallery-item:nth-child(3n+1):nth-child(3n-2) {
    grid-column: span 1;
}

.gallery-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-item-img { transform: scale(1.08); }


/* ─── CONTACT SECTION ─── */
.contact-section { background: var(--bg-white); padding: var(--section-py) 0; }

.contact-info-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-dark);
}

.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-info-label {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-info-value {
    color: var(--text-white);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.contact-info-value a {
    color: var(--text-white);
    transition: var(--trans-fast);
}

.contact-info-value a:hover { color: var(--gold); }

/* Contact Form */
.contact-form-wrap {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--border-light);
}

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

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-heading);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-control-swad {
    width: 100%;
    padding: 14px 18px;
    background: white;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-heading);
    transition: var(--trans-fast);
    outline: none;
}

.form-control-swad:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-control-swad::placeholder { color: var(--text-muted); }

textarea.form-control-swad {
    resize: vertical;
    min-height: 130px;
}

/* ─── FOOTER ─── */
.swad-footer {
    background: var(--bg-primary);
    color: var(--text-light);
    position: relative;
}

.footer-wave {
    overflow: hidden;
    background: var(--bg-white);
    line-height: 0;
    margin-bottom: -1px;
}

.footer-wave svg { display: block; width: 100%; height: 60px; }

.footer-body { padding: 70px 0 50px; }

.footer-grid { gap: 30px 0; }

.footer-col { padding: 0 20px; }

.footer-brand img {
    width: 100px;
    margin-bottom: 12px;
}

.footer-tagline {
    color: var(--gold);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.footer-about-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--trans-fast);
}

.social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.5;
}

.footer-contact-list i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
}

.footer-contact-list a {
    color: var(--text-muted);
    transition: var(--trans-fast);
}

.footer-contact-list a:hover { color: var(--gold); }

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.95rem;
}

.footer-hours-list .day { color: var(--text-light); font-weight: 500; }
.footer-hours-list .hours { color: var(--gold); }
.footer-hours-list .closed-text { color: #e74c3c; }

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

.footer-links-list a {
    color: var(--text-muted);
    font-size: 0.98rem;
    transition: var(--trans-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links-list a::before {
    content: '›';
    color: var(--gold);
    font-size: 1.1rem;
}

.footer-links-list a:hover { color: var(--gold); padding-left: 4px; }

.footer-map {
    margin-top: 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-dark);
}

.footer-bottom {
    background: rgba(0,0,0,0.4);
    border-top: 1px solid var(--border-dark);
    padding: 20px 0;
}

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 0;
}

.footer-bottom a {
    color: var(--text-muted);
    transition: var(--trans-fast);
}

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

/* ─── ORDER ONLINE PAGE ─── */
.order-section { padding: var(--section-py) 0; background: var(--bg-white); }

.order-platform-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--trans-med);
    height: 100%;
}

.order-platform-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.order-platform-logo {
    height: 60px;
    object-fit: contain;
    margin: 0 auto 16px;
}

/* ─── UTILITIES ─── */
.text-gold { color: var(--gold) !important; }
.text-white { color: var(--text-white) !important; }
.bg-dark-swad { background: var(--bg-primary); }
.py-swad { padding: var(--section-py) 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-mobile { display: none; }
    .nav-mobile.open { display: block; }

    .about-content { padding-left: 0; margin-top: 30px; }
    .about-image-badge { right: 10px; }
    .about-features { grid-template-columns: 1fr; }

    :root { --section-py: 60px; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 1.8rem; }
    .hero-script { font-size: 3rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-arrow { display: none; }

    .page-hero { height: 280px; margin-top: 70px; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    .contact-form-wrap, .contact-info-card { padding: 24px 20px; }

    .menu-tab-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 8px 12px;
        border-radius: var(--radius-pill);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 6px;
    }
    .menu-tab-nav::-webkit-scrollbar {
        display: none;
    }
    .menu-tab-btn {
        flex: 0 0 auto;
        padding: 8px 16px;
        font-size: 0.95rem;
        text-align: center;
    }

    .stats-section .row > div { margin-bottom: 24px; }
}

@media (max-width: 480px) {
    .hero-scroll-indicator { display: none; }
    .about-image-badge { position: relative; right: auto; bottom: auto; margin-top: -20px; display: inline-block; }
}

/* ─── PRINT ─── */
@media print {
    .swad-navbar, .mobile-cta-bar, #swad-loader, .swad-footer { display: none !important; }
    body { color: #000; }
}