/* ==========================================================================
   DesiSTATE - Retro Authentic Indian Kitchen & Bar
   Strict 4-Color Palette: RED (#D32323), YELLOW (#FFCC00), WHITE (#FFFFFF), BLACK (#0A0A0A)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables & Reset
   -------------------------------------------------------------------------- */
:root {
    /* STRICT 4 COLORS */
    --color-red: #D32323;
    --color-red-dark: #A81616;
    --color-red-light: #FF3B3B;

    --color-yellow: rgb(219, 172, 52);
    --color-yellow-dark: rgb(186, 143, 35);
    --color-yellow-glow: rgba(219, 172, 52, 0.4);

    --color-white: #FFFFFF;
    --color-white-off: #F4F4F4;
    --color-white-muted: #D0D0D0;

    --color-black: #0A0A0A;
    --color-black-pure: #000000;
    --color-black-card: #141414;
    --color-black-elevated: #1F1F1F;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    --font-retro: 'Montserrat', sans-serif;

    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black-pure);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

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

ul {
    list-style: none;
}

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

/* --------------------------------------------------------------------------
   2. Utility Classes & Retro Animations
   -------------------------------------------------------------------------- */
.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

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

/* Retro Headings & Section Titles */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.retro-title {
    font-family: var(--font-heading);
    color: var(--color-yellow);
    letter-spacing: 1.5px;
    text-shadow: 0 0 20px var(--color-yellow-glow);
}

.retro-badge {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--color-yellow);
    border-left: 3px solid var(--color-red);
    color: var(--color-yellow);
    border-radius: 0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.retro-badge.red {
    border-color: var(--color-red);
    border-left-color: var(--color-yellow);
    color: var(--color-red);
}

.retro-badge.white {
    border-color: rgba(255, 255, 255, 0.3);
    border-left-color: var(--color-yellow);
    color: var(--color-white);
}

/* Infinite Marquee Ticker */
.marquee-ticker-wrap {
    width: 100%;
    background-color: var(--color-red);
    color: var(--color-white);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 10px 0;
    border-top: 1.5px solid var(--color-yellow);
    border-bottom: 1.5px solid var(--color-yellow);
    box-shadow: 0 4px 15px rgba(211, 35, 35, 0.4);
    z-index: 20;
}

.marquee-ticker-wrap.black-theme {
    background-color: var(--color-black-card);
    border-color: var(--color-yellow);
}

.marquee-track {
    display: inline-flex;
    animation: marqueeScroll 24s linear infinite;
    gap: 40px;
}

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

.marquee-item {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}

.marquee-item .bullet {
    color: var(--color-yellow);
    font-size: 14px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-up {
    transform: translateY(35px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-zoom {
    transform: scale(0.92);
}

.reveal.revealed {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

/* Primary Red Button */
.btn-red {
    background-color: var(--color-red);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(211, 35, 35, 0.4);
}

.btn-red:hover {
    background-color: var(--color-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(211, 35, 35, 0.6);
    color: var(--color-white);
}

/* Primary Yellow Button (Marquee Glow) */
.btn-yellow {
    background-color: var(--color-yellow);
    color: var(--color-black);
    box-shadow: 0 4px 15px var(--color-yellow-glow);
}

.btn-yellow:hover {
    background-color: var(--color-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(219, 172, 52, 0.6);
    color: var(--color-black);
}

/* Outline Buttons */
.btn-outline-white {
    background: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(255, 255, 255, 0.3);
}

.btn-outline-yellow {
    background: transparent;
    border-color: var(--color-yellow);
    color: var(--color-yellow);
}

.btn-outline-yellow:hover {
    background-color: var(--color-yellow);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 18px var(--color-yellow-glow);
}

.btn-outline-red {
    background: transparent;
    border-color: var(--color-red);
    color: var(--color-red);
}

.btn-outline-red:hover {
    background-color: var(--color-red);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(211, 35, 35, 0.4);
}

/* --------------------------------------------------------------------------
   4. Floating Action Buttons (Bottom-Right Call & Scroll Top)
   -------------------------------------------------------------------------- */
.floating-call-btn {
    position: fixed;
    right: 24px;
    bottom: 78px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-yellow);
    color: var(--color-black-pure);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.8), 0 0 12px var(--color-yellow-glow);
    z-index: 99;
    transition: var(--transition);
    cursor: pointer;
}

.floating-call-btn:hover {
    background-color: var(--color-red);
    color: var(--color-white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 22px rgba(211, 35, 35, 0.6);
}

.scroll-top-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-yellow);
    color: var(--color-black-pure);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: var(--color-red);
    color: var(--color-white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(211, 35, 35, 0.5);
}

/* --------------------------------------------------------------------------
   5. Site Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    padding: 16px 36px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0) 100%);
    border-bottom: 1px solid rgba(219, 172, 52, 0.15);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-yellow);
    padding: 0px 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.9);
}

.nav-container {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo-wrap {
    display: flex;
    align-items: center;
}

.brand-logo-img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
    transition: var(--transition);
}

.brand-logo-img:hover {
    transform: scale(1.03);
}

.site-header.scrolled .brand-logo-img {
    width: 160px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

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

.nav-links li a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-white-off);
    position: relative;
    padding: 6px 0;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--color-yellow);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-yellow);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

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

/* Mobile Hamburger Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
}

.mobile-menu-toggle span {
    display: block;
    height: 2.5px;
    width: 100%;
    background-color: var(--color-yellow);
    border-radius: 2px;
    transition: var(--transition);
}

/* --------------------------------------------------------------------------
   6. Hero Section (Clean Retro Food Banner)
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('../images/banner-1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 120px 20px 60px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 340px;
    opacity: 1 !important;
    transform: none !important;
}

.hero-animated-logo {
    max-width: 780px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 35px rgba(219, 172, 52, 0.35));
    transition: var(--transition);
    pointer-events: none;
    outline: none;
    border: none;
    background: transparent;
}

/* --------------------------------------------------------------------------
   7. Intro & Story Section
   -------------------------------------------------------------------------- */
.intro-section {
    background-color: var(--color-black-pure);
    padding: 100px 20px 90px;
    position: relative;
    border-top: 1px solid rgba(219, 172, 52, 0.15);
}

.intro-content {
    max-width: 980px;
    margin: 0 auto;
}

.intro-lead {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.3vw, 1.8rem);
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-white-off);
    margin-bottom: 30px;
}

.intro-lead strong {
    color: var(--color-yellow);
}

.intro-phone-box {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    color: var(--color-white);
    margin-bottom: 36px;
}

.intro-phone-box a {
    color: var(--color-yellow);
    border-bottom: 1px dotted var(--color-yellow);
}

.intro-phone-box a:hover {
    color: var(--color-red);
    border-bottom-color: var(--color-red);
}

/* --------------------------------------------------------------------------
   8. Signature & Menu Highlights Section
   -------------------------------------------------------------------------- */
.explore-menu-section {
    position: relative;
    padding: 100px 20px 110px;
    background-color: var(--color-black);
    background-image: url('../images/menu-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 1px solid rgba(211, 35, 35, 0.2);
}

.menu-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.96) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
}

.explore-menu-section .container {
    position: relative;
    z-index: 10;
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-white-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 8px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.menu-category-card {
    position: relative;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border: 1.5px solid rgba(219, 172, 52, 0.25);
    background-color: var(--color-black-card);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
    text-decoration: none;
}

.menu-card-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

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

.menu-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(10, 10, 10, 0.7) 45%, rgba(0, 0, 0, 0.96) 100%);
    transition: var(--transition);
    z-index: 2;
}

.menu-category-card:hover .menu-card-overlay {
    background: linear-gradient(180deg, rgba(211, 35, 35, 0.2) 0%, rgba(10, 10, 10, 0.75) 45%, rgba(0, 0, 0, 0.98) 100%);
}

.menu-card-top {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-cat-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-red);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 0;
    border-left: 3px solid var(--color-yellow);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.menu-cat-badge.yellow {
    background-color: var(--color-yellow);
    color: var(--color-black);
    border-left: 3px solid var(--color-red);
}

.menu-cat-count {
    font-size: 10.5px;
    font-weight: 800;
    color: var(--color-yellow);
    background: rgba(0, 0, 0, 0.85);
    padding: 5px 12px;
    border-radius: 0;
    border: 1px solid rgba(219, 172, 52, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.menu-card-bottom {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-cat-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.5px;
    transition: var(--transition);
    line-height: 1.2;
}

.menu-cat-desc {
    font-size: 12px;
    color: var(--color-white-muted);
    line-height: 1.5;
    margin-bottom: 4px;
}

.menu-cat-tags {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-yellow);
    letter-spacing: 0.5px;
}

.menu-cat-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-top: 6px;
    transition: var(--transition);
}

.menu-category-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-yellow);
    box-shadow: 0 16px 40px rgba(219, 172, 52, 0.35);
}

.menu-category-card:hover .menu-cat-title {
    color: var(--color-yellow);
    text-shadow: 0 0 12px var(--color-yellow-glow);
}

.menu-category-card:hover .menu-cat-cta {
    color: var(--color-yellow);
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   9. Order Online & Catering Teaser
   -------------------------------------------------------------------------- */
.order-cta-section {
    background-color: var(--color-black-pure);
    padding: 85px 20px 50px;
    border-top: 1px solid rgba(219, 172, 52, 0.15);
}

.order-title {
    font-size: clamp(2.6rem, 4.8vw, 3.8rem);
    margin-bottom: 14px;
}

.order-subtitle {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.4vw, 16px);
    color: var(--color-white-muted);
    margin-bottom: 28px;
}

.events-section {
    background-color: var(--color-black-pure);
    padding: 50px 20px 110px;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.events-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9), 0 0 25px rgba(211, 35, 35, 0.2);
    border: 1.5px solid rgba(219, 172, 52, 0.3);
}

.events-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.events-image-wrapper:hover .events-img {
    transform: scale(1.05);
}

.events-title {
    font-size: clamp(2.8rem, 4.8vw, 4rem);
    line-height: 1.2;
    margin-bottom: 24px;
    text-align: left;
}

.events-desc {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    color: var(--color-white-off);
    line-height: 1.6;
    margin-bottom: 12px;
}

.events-contact {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 1.8vw, 1.45rem);
    color: var(--color-white-off);
    line-height: 1.6;
    margin-bottom: 24px;
}

.gold-link {
    color: var(--color-yellow);
    text-decoration: none;
    border-bottom: 1px dotted var(--color-yellow);
}

.gold-link:hover {
    color: var(--color-red);
    border-bottom-color: var(--color-red);
}

/* --------------------------------------------------------------------------
   10. Retro Photo Gallery Carousel
   -------------------------------------------------------------------------- */
.gallery-section {
    background-color: var(--color-black-pure);
    padding: 85px 20px 80px;
    border-top: 1px solid rgba(219, 172, 52, 0.15);
}

.gallery-header {
    max-width: 960px;
    margin: 0 auto;
}

.gallery-badge-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.gallery-title {
    font-size: clamp(2.4rem, 4.2vw, 3.6rem);
    margin: 0 auto 40px;
    line-height: 1.25;
}

.gallery-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
}

.gallery-track-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.gallery-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
}

.gallery-card {
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
    border: 1.5px solid rgba(219, 172, 52, 0.2);
    background-color: var(--color-black-card);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.gallery-arrow {
    background: var(--color-black-card);
    color: var(--color-white);
    border: 1.5px solid var(--color-yellow);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    z-index: 10;
    margin: 0 12px;
}

.gallery-arrow:hover {
    background-color: var(--color-red);
    border-color: var(--color-red);
    color: var(--color-white);
    transform: scale(1.1);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
}

.gallery-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-dots .dot.active {
    background: var(--color-yellow);
    width: 26px;
    border-radius: 12px;
}

.inquiry-banner {
    margin: 65px auto 0;
    padding-top: 20px;
    max-width: 800px;
}

.inquiry-text {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    color: var(--color-white);
    margin-bottom: 8px;
}

.inquiry-phone {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
}

.inquiry-phone a {
    color: var(--color-yellow);
}

.inquiry-phone a:hover {
    color: var(--color-red);
}

/* --------------------------------------------------------------------------
   11. Testimonials Section
   -------------------------------------------------------------------------- */
.testimonials-section {
    background-color: var(--color-black);
    padding: 85px 20px 100px;
    border-top: 1px solid rgba(219, 172, 52, 0.15);
}

.testimonials-title {
    font-size: clamp(2.6rem, 4.8vw, 4rem);
    margin-bottom: 40px;
}

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

.testimonial-card {
    background: var(--color-black-card);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-yellow);
    box-shadow: 0 12px 30px var(--color-yellow-glow);
}

.stars {
    color: var(--color-yellow);
    margin-bottom: 18px;
    font-size: 14px;
    display: flex;
    gap: 4px;
}

.testimonial-quote {
    font-family: var(--font-body);
    font-style: italic;
    color: var(--color-white-muted);
    font-size: 13.5px;
    line-height: 1.8;
    margin-bottom: 26px;
    flex-grow: 1;
}

.testimonial-author h4 {
    color: var(--color-white);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
}

.testimonial-author span {
    color: var(--color-red);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   12. Dedicated Menu Page Styling (menu.html)
   -------------------------------------------------------------------------- */
.page-hero {
    padding: 160px 20px 60px;
    background: radial-gradient(circle at center, rgba(211, 35, 35, 0.2) 0%, rgba(0, 0, 0, 0.95) 75%), #000;
    text-align: center;
    border-bottom: 1px solid rgba(219, 172, 52, 0.2);
}

.page-hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    margin-bottom: 12px;
}

/* ==========================================================================
   11. Professional Menu Filter Controls (Sticky, Centered, Clean UX)
   ========================================================================== */
.menu-filter-controls {
    position: sticky;
    top: 76px;
    z-index: 50;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(219, 172, 52, 0.22);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.85);
    padding: 14px 0 12px;
    transition: all 0.3s ease;
}

.diet-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.diet-toggle-group {
    display: inline-flex;
    background: rgba(22, 22, 22, 0.95);
    padding: 4px;
    border-radius: 30px;
    border: 1.5px solid rgba(219, 172, 52, 0.32);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.65);
    gap: 4px;
}

.diet-toggle-btn {
    background: transparent;
    border: none;
    color: var(--color-white-off);
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.diet-toggle-btn:hover {
    color: var(--color-yellow);
    background: rgba(255, 255, 255, 0.05);
}

.diet-toggle-btn.active {
    background: var(--color-yellow);
    color: #000000;
    box-shadow: 0 2px 10px rgba(219, 172, 52, 0.4);
}

.diet-toggle-btn.veg-btn.active {
    background: #00B050;
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 176, 80, 0.4);
}

.diet-toggle-btn.nonveg-btn.active {
    background: var(--color-red);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(211, 35, 35, 0.4);
}

/* Category Tabs (Clean typography, no icons, centered) */
.menu-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2px 0;
}

.menu-tab-btn {
    padding: 7px 15px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white-off);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.menu-tab-btn:hover {
    border-color: var(--color-yellow);
    color: var(--color-yellow);
    background: rgba(219, 172, 52, 0.08);
}

.menu-tab-btn.active {
    background-color: var(--color-red);
    border-color: var(--color-red);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(211, 35, 35, 0.45);
}

/* ==========================================================================
   Menu Sections & Headings
   ========================================================================== */
.menu-category-section {
    padding: 40px 0;
}

.menu-category-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    color: var(--color-yellow);
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-red);
    display: inline-block;
}

.menu-subcategory-title {
    grid-column: 1 / -1 !important;
    width: 100%;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--color-yellow);
    margin: 28px 0 14px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.025);
    border-left: 3.5px solid var(--color-yellow);
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-subcategory-title.veg-sub {
    border-left-color: #00B050;
}

.menu-subcategory-title.nonveg-sub {
    border-left-color: var(--color-red);
}

.menu-subcategory-title:first-child {
    margin-top: 0;
}

/* ==========================================================================
   Menu Item Cards (High Contrast, Clean Layout, Styled Calorie Badge)
   ========================================================================== */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.menu-item-card {
    background: linear-gradient(145deg, rgba(22, 22, 22, 0.95) 0%, rgba(14, 14, 14, 0.98) 100%);
    border: 1px solid rgba(219, 172, 52, 0.16);
    border-radius: 12px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
    position: relative;
}

.menu-item-card:hover {
    border-color: rgba(219, 172, 52, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.8), 0 0 12px rgba(219, 172, 52, 0.1);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.item-title-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
}

.item-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    letter-spacing: 0.2px;
}

.item-price {
    font-family: var(--font-body);
    font-size: 15.5px;
    font-weight: 800;
    color: var(--color-yellow);
    white-space: nowrap;
    background: rgba(219, 172, 52, 0.08);
    border: 1px solid rgba(219, 172, 52, 0.25);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.item-desc {
    font-size: 13.5px;
    color: #BDBDBD;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.item-meta {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.item-cal-badge,
.item-cal {
    display: inline-flex;
    align-items: center;
    padding: 3px 11px;
    background: rgba(219, 172, 52, 0.08);
    border: 1px solid rgba(219, 172, 52, 0.28);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: #E2C068;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.diet-tag {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 3px;
    border: 1.5px solid var(--color-white-muted);
    position: relative;
    flex-shrink: 0;
}

.diet-tag.veg {
    border-color: #00B050;
}

.diet-tag.veg::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: #00B050;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.diet-tag.non-veg {
    border-color: var(--color-red);
}

.diet-tag.non-veg::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: var(--color-red);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* --------------------------------------------------------------------------
   13. Catering & Events Page (catering.html)
   -------------------------------------------------------------------------- */
.catering-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0 80px;
}

.catering-card {
    background: var(--color-black-card);
    border: 1.5px solid rgba(219, 172, 52, 0.25);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.catering-card.featured {
    border-color: var(--color-red);
    box-shadow: 0 0 30px rgba(211, 35, 35, 0.3);
    transform: scale(1.03);
}

.catering-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--color-yellow);
    box-shadow: 0 12px 35px var(--color-yellow-glow);
}

.package-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-yellow);
    margin-bottom: 10px;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.package-price span {
    font-size: 13px;
    color: var(--color-white-muted);
    font-weight: 400;
}

.package-features {
    text-align: left;
    margin: 24px 0 32px;
    padding: 0 10px;
}

.package-features li {
    font-size: 13.5px;
    color: var(--color-white-off);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li i {
    color: var(--color-yellow);
    font-size: 14px;
}

/* Inquiry Form */
.form-box {
    background: var(--color-black-card);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 45px;
    max-width: 780px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-yellow);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 13px 18px;
    background: var(--color-black-elevated);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--color-yellow);
    box-shadow: 0 0 12px var(--color-yellow-glow);
}

/* --------------------------------------------------------------------------
   14. Table Reservation & Contact Page (contact.html)
   -------------------------------------------------------------------------- */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 60px 0 100px;
    align-items: start;
}

.contact-info-card {
    background: var(--color-black-card);
    border: 1.5px solid rgba(219, 172, 52, 0.25);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-red);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-yellow);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.info-text p {
    font-size: 14px;
    color: var(--color-white-muted);
    line-height: 1.6;
}

/* Modal Confirmation */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop.active {
    display: flex;
}

.modal-box {
    background: var(--color-black-card);
    border: 2px solid var(--color-yellow);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 35px var(--color-yellow-glow);
    animation: modalPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-icon {
    font-size: 50px;
    color: var(--color-yellow);
    margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   15. Site Footer (Atmospheric Retro Luxury Background)
   -------------------------------------------------------------------------- */
.site-footer {
    position: relative;
    background-color: #050505;
    background-image: linear-gradient(180deg, rgba(6, 6, 6, 0.92) 0%, rgba(10, 10, 10, 0.97) 100%), url('../images/banner-1.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 95px 20px 35px;
    border-top: 2.5px solid var(--color-yellow);
    box-shadow: 0 -10px 35px rgba(0, 0, 0, 0.9);
    overflow: hidden;
}

.footer-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(8, 8, 8, 0.9) 0%, rgba(4, 4, 4, 0.97) 60%, rgba(0, 0, 0, 0.99) 100%),
        linear-gradient(180deg, rgba(211, 35, 35, 0.12) 0%, rgba(0, 0, 0, 0.75) 30%, rgba(0, 0, 0, 0.98) 100%);
    pointer-events: none;
    z-index: 1;
}

.site-footer .container {
    position: relative;
    z-index: 5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.1fr;
    gap: 45px;
    align-items: flex-start;
    padding-bottom: 55px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo-img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.9));
}

.footer-tagline {
    font-size: 13px;
    color: var(--color-white-muted);
    line-height: 1.7;
    margin-top: 4px;
}

.footer-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(219, 172, 52, 0.5);
    border-left: 3px solid var(--color-red);
    color: var(--color-yellow);
    padding: 5px 14px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    width: fit-content;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-yellow);
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--color-red);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links-list li a {
    font-size: 13px;
    color: var(--color-white-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links-list li a i {
    font-size: 9px;
    color: var(--color-yellow);
    transition: transform 0.2s ease;
}

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

.footer-links-list li a:hover i {
    color: var(--color-red);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: var(--color-white-muted);
    line-height: 1.6;
}

.footer-contact-item i {
    color: var(--color-yellow);
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: var(--color-white);
    transition: var(--transition);
}

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

.footer-social-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-social-desc {
    font-size: 13px;
    color: var(--color-white-muted);
    line-height: 1.6;
}

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

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--color-yellow);
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-yellow);
    font-size: 16px;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 6px 20px rgba(211, 35, 35, 0.6);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    font-size: 12.5px;
    color: #888888;
    letter-spacing: 0.5px;
    flex-wrap: wrap;
    gap: 16px;
}

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

.footer-bottom-links a {
    color: #aaaaaa;
    transition: var(--transition);
}

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

/* --------------------------------------------------------------------------
   10.1. Hero Quick Booking Bar & Live Status
   -------------------------------------------------------------------------- */
.hero-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 20px;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(219, 172, 52, 0.6);
    border-left: 4px solid var(--color-red);
    border-right: 4px solid var(--color-yellow);
    border-radius: 0;
    color: var(--color-yellow);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.85), 0 0 15px rgba(219, 172, 52, 0.2);
}

.status-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-red);
    box-shadow: 0 0 8px var(--color-red);
    animation: livePulse 1.8s infinite;
}

@keyframes livePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

.hero-trust-tags {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
}

.trust-tag-item {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-white-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-tag-item i {
    color: var(--color-yellow);
}

.hero-quick-book-box {
    margin-top: 25px;
    width: 100%;
    max-width: 860px;
    background: rgba(14, 14, 14, 0.88);
    backdrop-filter: blur(12px);
    border: 1.5px solid var(--color-yellow);
    border-radius: 16px;
    padding: 18px 24px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.9), 0 0 20px var(--color-yellow-glow);
}

.quick-book-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-yellow);
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-align: center;
}

.quick-book-form {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr auto;
    gap: 12px;
    align-items: center;
}

.quick-input-group {
    position: relative;
}

.quick-input-group label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-white-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
    text-align: left;
}

.quick-input {
    width: 100%;
    background-color: var(--color-black-card);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    padding: 9px 12px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    transition: var(--transition);
}

.quick-input:focus {
    outline: none;
    border-color: var(--color-yellow);
    box-shadow: 0 0 10px var(--color-yellow-glow);
}

/* --------------------------------------------------------------------------
   10.2. Chef's Signature Sizzler & Tandoor Showcase
   -------------------------------------------------------------------------- */
.signature-showcase-section {
    background-color: var(--color-black-pure);
    padding: 100px 20px 90px;
    position: relative;
    border-top: 1.5px solid var(--color-red);
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.signature-card {
    background-color: var(--color-black-card);
    border: 1.5px solid rgba(219, 172, 52, 0.25);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8);
}

.signature-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-yellow);
    box-shadow: 0 14px 35px rgba(219, 172, 52, 0.35);
}

.signature-img-wrap {
    position: relative;
    height: 190px;
    overflow: hidden;
}

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

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

.dish-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: var(--color-red);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 0;
    border-left: 3px solid var(--color-yellow);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.dish-price-pill {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background-color: var(--color-yellow);
    color: var(--color-black);
    font-size: 13px;
    font-weight: 900;
    padding: 5px 12px;
    border-radius: 0;
    border-left: 3px solid var(--color-red);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
}

.signature-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dish-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.dish-desc {
    font-size: 12px;
    color: var(--color-white-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.dish-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
    margin-top: auto;
}

.dish-btn {
    width: 100%;
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    border-radius: 4px;
    background-color: var(--color-red);
    color: var(--color-white);
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(211, 35, 35, 0.35);
    transition: var(--transition);
}

.dish-btn:hover {
    background-color: var(--color-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(211, 35, 35, 0.55);
    color: var(--color-white);
}

/* --------------------------------------------------------------------------
   10.3. The 4 Golden Pillars of DesiSTATE Experience
   -------------------------------------------------------------------------- */
.experience-section {
    background-color: var(--color-black-card);
    padding: 100px 20px;
    position: relative;
    border-top: 1px solid rgba(219, 172, 52, 0.15);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 45px;
}

.pillar-card {
    background-color: var(--color-black-pure);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 32px 22px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    min-width: 0;
    overflow-wrap: break-word;
}

.pillar-card:hover {
    border-color: var(--color-yellow);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px var(--color-yellow-glow);
}

.pillar-number {
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: rgba(219, 172, 52, 0.25);
}

.pillar-icon-wrap {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: rgba(211, 35, 35, 0.15);
    border: 1.5px solid var(--color-red);
    color: var(--color-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.pillar-card:hover .pillar-icon-wrap {
    background-color: var(--color-red);
    color: var(--color-white);
    transform: scale(1.1);
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 21px;
    color: var(--color-yellow);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.pillar-desc {
    font-size: 13px;
    color: var(--color-white-muted);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   10.4. Vintage Stats & Milestones Bar
   -------------------------------------------------------------------------- */
.stats-strip-section {
    background: linear-gradient(180deg, #161616 0%, #0a0a0a 100%);
    padding: 55px 20px;
    border-top: 1.5px solid var(--color-yellow);
    border-bottom: 1.5px solid var(--color-yellow);
    box-shadow: inset 0 0 35px rgba(0, 0, 0, 0.95);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 700;
    color: var(--color-yellow);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.stat-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-white);
}

/* --------------------------------------------------------------------------
   10.5. Craft Bar & Cocktails Lounge Showcase
   -------------------------------------------------------------------------- */
.bar-lounge-section {
    background-color: var(--color-black-pure);
    padding: 100px 20px 90px;
    position: relative;
    border-top: 1px solid rgba(219, 172, 52, 0.15);
}

.bar-lounge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bar-lounge-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bar-drink-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 15px 0;
}

.bar-drink-card {
    background: var(--color-black-card);
    border-left: 3px solid var(--color-yellow);
    padding: 14px 18px;
    border-radius: 0 10px 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.bar-drink-card:hover {
    background: var(--color-black-elevated);
    border-left-color: var(--color-red);
    transform: translateX(6px);
}

.drink-name {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-white);
}

.drink-notes {
    font-size: 11px;
    color: var(--color-white-muted);
    margin-top: 3px;
}

.drink-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-yellow);
    letter-spacing: 1px;
}

.bar-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--color-yellow);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.9), 0 0 25px var(--color-yellow-glow);
}

.bar-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}

/* --------------------------------------------------------------------------
   10.6. Today's Daily Specials & Happy Hour Board
   -------------------------------------------------------------------------- */
.specials-board-section {
    background-color: var(--color-black-card);
    padding: 95px 20px 85px;
    position: relative;
    border-top: 1px solid rgba(211, 35, 35, 0.25);
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.special-deal-card {
    background-color: var(--color-black-pure);
    border: 1.5px dashed var(--color-yellow);
    border-radius: 14px;
    padding: 30px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
}

.special-deal-card:hover {
    border-style: solid;
    border-color: var(--color-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(211, 35, 35, 0.35);
}

.special-badge-day {
    display: inline-block;
    background-color: var(--color-yellow);
    color: var(--color-black);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 0;
    border-left: 4px solid var(--color-red);
    border-right: 4px solid var(--color-red);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    margin-bottom: 16px;
}

.special-badge-day.red {
    background-color: var(--color-red);
    color: var(--color-white);
    border-left: 4px solid var(--color-yellow);
    border-right: 4px solid var(--color-yellow);
}

.special-deal-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: 10px;
}

.special-deal-price {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-yellow);
    margin-bottom: 12px;
}

.special-deal-desc {
    font-size: 13px;
    color: var(--color-white-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   10.7. Interactive FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-section {
    background-color: var(--color-black-pure);
    padding: 95px 20px 85px;
    position: relative;
    border-top: 1px solid rgba(219, 172, 52, 0.15);
}

.faq-container {
    max-width: 860px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--color-black-card);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--color-yellow);
    box-shadow: 0 4px 20px var(--color-yellow-glow);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-white);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    user-select: none;
}

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

.faq-icon {
    font-size: 16px;
    color: var(--color-yellow);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
    font-size: 13px;
    color: var(--color-white-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

/* --------------------------------------------------------------------------
   10.8. Dining Call to Action Section
   -------------------------------------------------------------------------- */
.dining-cta-section {
    background-color: var(--color-black-card);
    background-image: radial-gradient(circle at center, rgba(219, 172, 52, 0.08) 0%, rgba(10, 10, 10, 0.98) 75%);
    padding: 95px 20px;
    position: relative;
    border-top: 1px solid rgba(219, 172, 52, 0.25);
    border-bottom: 1px solid rgba(219, 172, 52, 0.15);
}

.dining-cta-box {
    max-width: 980px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(25, 25, 25, 0.95) 0%, rgba(14, 14, 14, 0.98) 100%);
    border: 1.5px solid var(--color-yellow);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.9), 0 0 30px rgba(219, 172, 52, 0.12);
}

.dining-cta-title {
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
    white-space: normal;
    overflow-wrap: break-word;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.dining-cta-desc {
    font-size: 15px;
    color: var(--color-white-off);
    max-width: 760px;
    margin: 0 auto 35px;
    line-height: 1.75;
}

.dining-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* --------------------------------------------------------------------------
   16. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-section {
        min-height: 88vh;
        padding: 120px 20px 40px;
        background-position: center bottom;
    }

    .hero-content {
        margin-bottom: 240px;
    }

    .hero-animated-logo {
        max-width: 580px;
    }

    .site-header {
        padding: 16px 24px;
    }

    .nav-links {
        gap: 20px;
    }

    .events-grid {
        gap: 40px;
    }

    .gallery-slide {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }

    .gallery-card {
        height: 330px;
    }

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

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

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

@media (max-width: 992px) {
    .site-header {
        padding: 14px 20px;
    }

    .brand-logo-img {
        width: 140px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.95);
        border-left: 2px solid var(--color-yellow);
        z-index: 95;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        font-size: 15px;
    }

    .page-hero {
        padding: 130px 20px 40px;
    }

    .menu-filter-controls {
        top: 60px;
        padding: 10px 12px 8px;
    }

    .diet-toggle-wrap {
        margin-bottom: 8px;
    }

    .diet-toggle-group {
        width: 100%;
        display: flex;
    }

    .diet-toggle-btn {
        flex: 1;
        justify-content: center;
        padding: 7px 8px;
        font-size: 11.5px;
    }

    .menu-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding: 2px 2px 6px;
        scrollbar-width: none;
    }

    .menu-tabs::-webkit-scrollbar {
        display: none;
    }

    .menu-tab-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .menu-subcategory-title {
        grid-column: 1 / -1;
        font-size: 1.3rem;
        margin: 22px 0 12px;
    }


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

    .menu-card {
        height: 175px;
    }

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

    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .menu-items-grid {
        grid-template-columns: 1fr;
    }

    .quick-book-form {
        grid-template-columns: 1fr 1fr;
    }

    .quick-book-form .btn {
        grid-column: span 2;
    }

    .bar-lounge-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .bar-img {
        height: 320px;
    }

    .specials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .floating-call-btn {
        right: 16px;
        bottom: 66px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .scroll-top-btn {
        right: 16px;
        bottom: 16px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .page-hero {
        padding: 105px 16px 30px;
    }

    .hero-section {
        padding: 105px 16px 30px;
        min-height: 82vh;
        background-position: 50% 90%;
        justify-content: flex-start;
    }

    .hero-content {
        margin-top: 15px;
        margin-bottom: auto;
    }

    .hero-animated-logo {
        max-width: 420px;
        width: 88%;
    }

    .hero-title {
        white-space: normal;
        font-size: clamp(2.1rem, 6.5vw, 3rem);
    }

    .menu-filter-controls {
        top: 60px;
        padding: 14px 12px 10px;
    }

    .menu-category-section {
        padding: 35px 14px;
    }

    .menu-category-title {
        font-size: 1.8rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }

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

    .events-img {
        height: 320px;
    }

    .gallery-slide {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }

    .gallery-card {
        height: 300px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 35px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .catering-packages-grid {
        grid-template-columns: 1fr;
    }

    .catering-card.featured {
        transform: none;
    }

    .signature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .quick-book-form {
        grid-template-columns: 1fr;
    }

    .dining-cta-title {
        white-space: normal;
        font-size: clamp(1.6rem, 5.5vw, 2.2rem);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .site-header {
        padding: 12px 16px;
    }

    .brand-logo-img {
        width: 160px;
        height: auto;
    }

    .nav-cta-wrap .btn {
        display: none;
    }

    .hero-section {
        padding: 90px 12px 20px;
        min-height: 80vh;
        background-position: 50% 95%;
        justify-content: flex-start;
    }

    .hero-content {
        margin-top: 10px;
        margin-bottom: auto;
        width: 100%;
    }

    .hero-animated-logo {
        max-width: 320px;
        width: 85%;
    }

    .btn {
        padding: 11px 24px;
        font-size: 11px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .menu-category-card {
        height: 300px;
        padding: 20px;
    }

    .menu-card {
        height: 145px;
    }

    .menu-filter-controls .container {
        padding: 4px;
    }

    .menu-tabs {
        gap: 6px;
        padding: 2px 2px 6px;
    }

    .menu-tab-btn {
        padding: 5px 11px;
        font-size: 11px;
    }

    .menu-items-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .menu-item-card {
        padding: 16px;
    }

    .item-name {
        font-size: 15px;
    }

    .item-price {
        font-size: 14.5px;
        padding: 2px 8px;
    }

    .item-desc {
        font-size: 13px;
    }

    .gallery-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .gallery-card {
        height: 280px;
    }

    .gallery-arrow {
        width: 36px;
        height: 36px;
        margin: 0 4px;
    }

    .form-box {
        padding: 25px 20px;
    }

    .contact-info-card {
        padding: 25px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .dining-cta-box {
        padding: 35px 20px;
    }

    .dining-cta-buttons .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-brand-col {
        align-items: center;
    }

    .footer-links-list li a {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 400px) {
    .hero-section {
        padding: 80px 10px 15px;
        min-height: 78vh;
        background-position: 50% 98%;
    }

    .hero-content {
        margin-top: 8px;
    }

    .hero-animated-logo {
        max-width: 270px;
        width: 82%;
    }
}

/* ==========================================================================
   Meet The Founder Section (about.html)
   ========================================================================== */
.founder-section {
    padding: 95px 20px 85px;
    background: radial-gradient(circle at 80% 20%, rgba(211, 35, 35, 0.1) 0%, rgba(0, 0, 0, 0.98) 65%), #000000;
    border-top: 1px solid rgba(219, 172, 52, 0.2);
    border-bottom: 1px solid rgba(219, 172, 52, 0.2);
    position: relative;
    overflow: hidden;
}

.founder-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 45px;
}

/* Sticky Profile Card on Left */
.founder-profile-card {
    position: sticky;
    top: 95px;
    background: var(--color-black-card);
    border: 1.5px solid rgba(219, 172, 52, 0.35);
    border-radius: 16px;
    padding: 24px 30px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.9), 0 0 25px rgba(219, 172, 52, 0.12);
}

.founder-img-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--color-yellow);
    box-shadow: 0 0 25px var(--color-yellow-glow);
    transition: var(--transition);
}

.founder-profile-card:hover .founder-img {
    transform: scale(1.03);
    box-shadow: 0 0 35px rgba(219, 172, 52, 0.6);
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    color: var(--color-yellow);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    line-height: 1.1;
}

.founder-role {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-white-muted);
    margin-bottom: 18px;
}

.founder-credentials-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed rgba(219, 172, 52, 0.25);
}

.founder-credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
    color: var(--color-white-off);
}

.founder-credential-item i {
    color: var(--color-yellow);
    font-size: 14px;
    width: 18px;
    text-align: center;
}

/* Timeline & Narrative on Right */
.founder-story-wrap {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.founder-intro-lead {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--color-white-off);
    background: rgba(20, 20, 20, 0.9);
    border-left: 4px solid var(--color-yellow);
    padding: 24px 28px;
    border-radius: 0 14px 14px 0;
    border-top: 1px solid rgba(219, 172, 52, 0.2);
    border-right: 1px solid rgba(219, 172, 52, 0.2);
    border-bottom: 1px solid rgba(219, 172, 52, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

.founder-chapter-card {
    background: var(--color-black-card);
    border: 1px solid rgba(219, 172, 52, 0.22);
    border-left: 3.5px solid var(--color-yellow);
    border-radius: 14px;
    padding: 28px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
    transition: var(--transition);
}

.founder-chapter-card:hover {
    border-color: var(--color-yellow);
    border-left-color: var(--color-red);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.85), 0 0 22px rgba(219, 172, 52, 0.18);
    transform: translateY(-2px);
}

.founder-chapter-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-yellow);
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.25;
}

.founder-chapter-title i {
    font-size: 1.15rem;
    color: var(--color-red);
}

.founder-chapter-text {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--color-white-muted);
    margin-bottom: 14px;
}

.founder-chapter-text:last-child {
    margin-bottom: 0;
}

.founder-chapter-text strong {
    color: var(--color-white);
    font-weight: 700;
}

.founder-chapter-text .seo-keyword {
    color: var(--color-yellow);
    font-weight: 600;
}

.founder-highlight-box {
    background: linear-gradient(135deg, rgba(211, 35, 35, 0.95) 0%, rgba(168, 22, 22, 0.98) 100%);
    border-radius: 10px;
    padding: 18px 22px;
    margin: 18px 0;
    color: var(--color-white);
    border: 1px solid rgba(219, 172, 52, 0.45);
    box-shadow: 0 6px 22px rgba(211, 35, 35, 0.4);
}

.founder-highlight-header {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-yellow);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.founder-highlight-quote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.45;
    color: var(--color-white);
}

@media (max-width: 992px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-profile-card {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .founder-profile-card {
        padding: 22px 16px;
    }

    .founder-chapter-card {
        padding: 22px 18px;
    }

    .founder-intro-lead {
        padding: 20px 18px;
        font-size: 14px;
    }

    .founder-chapter-title {
        font-size: 1.45rem;
    }
}