@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,700&display=swap');

:root {
    --primary-orange: #DD5903;
    --primary-dark: #F9F7F2; /* Changed from dark to cream */
    --text-white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-muted: #5E5E5E;
    --bg-light: #FFFFFF;
    --bg-cream: #F9F7F2;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
}

p {
    color: var(--text-muted);
}

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

.orange-text { color: var(--primary-orange); }

/* --- Top Bar --- */
.top-bar {
    background: #fdfdfd;
    padding: 10px 0;
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-order-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-logo {
    height: 40px; /* Significantly increased for high visibility */
    width: auto;
    transition: var(--transition);
}

.logo-link:hover .top-logo {
    transform: scale(1.1);
}

.swiggy {
    /* Optional slight brightness to stand out on dark bar */
    filter: brightness(1.1);
}

.zomato {
    filter: brightness(1.1);
}

.top-order-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.top-order-links a:hover {
    color: var(--primary-orange);
}

.top-socials {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-socials a {
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.top-socials a:hover {
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.top-socials i {
    width: 16px;
    height: 16px;
}

.social-icon {
    height: 18px; /* Consistent with header labels */
    width: auto;
    filter: none; /* Crucial to show original brand colors */
    transition: var(--transition);
}

.social-link:hover .social-icon {
    transform: scale(1.15);
}

/* --- Header & Navigation --- */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-light);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100px;
}

.logo-container {
    padding: 0 30px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 130px; /* Increased for better presence */
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li {
    position: relative;
    padding: 10px 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

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

/* --- Dropdown System --- */
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    border: 1px solid rgba(0,0,0,0.1);
    list-style: none !important;
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style: none !important;
    list-style-type: none !important;
}

.dropdown-link {
    display: block !important;
    padding: 12px 25px;
    background: transparent;
    border-radius: 0;
    color: var(--text-dark) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: var(--transition);
}

.dropdown-link:hover {
    background: var(--bg-cream);
    color: var(--primary-orange) !important;
    transform: translateX(10px);
}

.dropdown-link i {
    display: none !important;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.phone-big {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.phone-big span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Hero Slider Split Redesign --- */
.hero-slider-section {
    position: relative;
    min-height: 80vh;
    background: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    display: none; /* Controlled by JS active class */
    width: 100%;
    animation: fadeIn 0.8s ease-in-out;
}

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

.hero-slide.active {
    display: block;
}

.hero-split-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-content-col {
    flex: 1.2;
}

.hero-content-col h1 {
    font-size: clamp(35px, 5vw, 65px);
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content-col .subheading {
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 20px;
    display: block;
}

.hero-content-col .hero-body {
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 45px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 45px;
}

.hero-btns.btns-center {
    justify-content: center;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
}

/* Consolidated in main button section */

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: #fff;
}

.hero-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image-box {
    position: relative;
    width: 100%;
    max-width: 500px;
}


.hero-image-box img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 15px solid #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 40px; /* Aligned to the left with the text */
    z-index: 20;
    display: flex;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    width: 30px; /* Long active dot for Dinenos look */
    background: var(--primary-orange);
    border-radius: 5px;
}

/* --- Buttons (Dinenos Style) --- */
.btn {
    padding: 18px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border-radius: 0; /* Dinenos has 0px border radius */
}

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

.btn-primary:hover {
    background: #c24d02;
    transform: translateY(-5px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
}

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

/* Specific Custom Hovers */
.call-order-btn:hover {
    background: #000 !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.swiggy-btn:hover {
    background: #e67300 !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(252, 128, 25, 0.2);
}


/* --- Trust Badges Strip (Enhanced UI/UX) --- */
.trust-badges {
    background: #fff;
    padding: 25px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 3px solid var(--primary-orange); 
    z-index: 50;
}

.badges-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap; /* Forced onto a single horizontal line */
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
}

.badges-inner::-webkit-scrollbar { display: none; }

.badge-item {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    flex: 0 0 auto; /* Preventing any shrinking on the single line */
    gap: 10px;
    background: #fdfaf8; 
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(221, 89, 3, 0.1);
    white-space: nowrap;
    transition: var(--transition);
}

@media (max-width: 1200px) {
    .badges-inner { justify-content: flex-start; }
    .badge-item { font-size: 13px; padding: 8px 15px; }
}

@media (max-width: 576px) {
    .badge-item { font-size: 12px; }
}

/* --- General Section Styles --- */

/* --- General Section Styles --- */

/* --- Heritage Section Enhanced --- */
.heritage-section {
    padding: 140px 0;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.heritage-inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.heritage-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.heritage-image-box {
    position: relative;
    width: 100%;
    max-width: 500px;
}


.img-heritage {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 550px;
    object-fit: cover;
    border: 15px solid #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.heritage-badge span {
    font-size: 11px;
    text-transform: uppercase;
}

.heritage-badge strong {
    font-size: 22px;
    font-family: var(--font-heading);
    margin-top: 5px;
}

.heritage-content {
    flex: 1;
}

.heritage-content h2 {
    font-size: 48px;
    line-height: 1.2;
    margin: 15px 0 30px;
}

.heritage-text p {
    margin-bottom: 25px;
}

.heritage-text .lead {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
}

.heritage-signature {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.signature-seal {
    width: 60px;
    height: auto;
    opacity: 0.8;
}

.signature-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-orange);
    font-style: italic;
    line-height: 1;
}

.signature-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* --- General Section Styles --- */
section {
    padding: 120px 0;
}

.section-title, .section-heading-centered, .narrative-content {
    margin-bottom: 60px;
    max-width: 850px;
    text-align: left; 
}

/* Base CTA Box centering support */
.cta-box {
    margin-bottom: 60px;
    text-align: center; /* Default back to center for special boxes */
}

/* Removed centering classes for titles */
.section-title.text-center, .section-heading-centered {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.section-title .subtitle, .section-heading-centered span, .gold-subtitle, .section-label, .cta-box .subtitle {
    color: var(--primary-orange);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

/* --- Universal Premium Headings (Global Site-wide) --- */
/* Base heading style is already left-aligned */
h2, .serif-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(32px, 4.5vw, 48px);
    margin: 15px 0 25px;
    line-height: 1.25;
    background: linear-gradient(to right, #1a1a1a, var(--primary-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 22px;
    display: table;
    text-align: left;
}

/* Headings will respect parent alignment but default to left */
.section-title h2, .section-heading-centered h2 {
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.text-center h2, .cta-box h2 {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* The Premium Underline (Global) */
h2::after, .serif-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

/* Center underline for designated containers */
.text-center h2::after, .text-center .serif-title::after,
.cta-box h2::after, .cta-box .serif-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
}

/* Force left-aligned underline for standard section titles */
.section-title h2::after, .section-heading-centered h2::after {
    left: 0 !important;
    transform: none !important;
}

/* Override for larger main headings if needed */
.overlap-title h2 {
    font-size: clamp(34px, 5.5vw, 55px);
}

/* Exception for footer h2/h3 to keep them simple */
footer h2, footer h3, .mosaic-item h3, .glass-card h3 {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    padding-bottom: 0;
}
footer h2::after, footer h3::after, .mosaic-item h3::after, .glass-card h3::after {
    display: none;
}

.bg-alt { background: var(--bg-cream); }
.bg-dark { background: var(--bg-cream); color: var(--text-dark); }
.bg-dark h2, .bg-dark h3 { color: var(--text-dark); }

.section-title.text-white .subtitle { color: var(--primary-orange); }
.section-title.text-white p { color: var(--text-muted); }

/* --- Feature Cards --- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: #fff;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-10px);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* --- Showcase Header Styles --- */
.section-title.overlap-title {
    position: relative;
    z-index: 10;
    margin-bottom: 80px; 
    text-align: left;
}

.section-title.overlap-title h2 {
    font-size: clamp(32px, 5vw, 55px); /* Slightly larger for main showcase */
}

/* --- Best Biriyani Showcase (Screenshot Redesign) --- */
.glass-showcase {
    padding: 120px 0;
    background: #fdfdfd; 
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.glass-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

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

.glass-card-img {
    position: relative;
    height: 240px;
    width: 100%;
}

.glass-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffffff;
    color: #1a1a1a;
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge i {
    color: #ffb800;
}

.glass-card-content {
    padding: 25px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-location {
    font-size: 11px;
    font-weight: 700;
    color: #34a853; /* Success/Safe Green */
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.product-location i {
    width: 14px;
    height: 14px;
}

.glass-card-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.glass-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.amenities {
    display: flex;
    gap: 15px;
}

.amenities i {
    width: 20px;
    height: 20px;
    color: var(--primary-orange); 
    opacity: 0.4;
    transition: 0.3s ease;
}

.glass-card:hover .amenities i {
    opacity: 1;
}

.btn-text {
    font-weight: 800;
    color: var(--primary-orange);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
}

@media (max-width: 1200px) {
    .glass-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .glass-grid { grid-template-columns: 1fr; }
    .glass-card-img { height: 200px; }
}

/* --- Quality Standards (Check/Cross) --- */
.standards-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.standards-box {
    padding: 50px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
}

.standards-list {
    list-style: none;
    margin-top: 30px;
}

.standards-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.standards-list li.check::before { content: '✅'; }
.standards-list li.cross::before { content: '❌'; }

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

/* --- FAQ Accordion --- */
.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.faq-trigger {
    padding: 20px 0;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-content {
    padding-bottom: 20px;
    display: none;
}

/* --- Floating Icons --- */
.floating-actions {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
    animation: wave 2s infinite ease-in-out;
}

.float-icon.wa { background: #25D366; }
.float-icon.ph { background: var(--primary-orange); animation-delay: 0.5s; }

@keyframes wave {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); box-shadow: 0 20px 35px rgba(0,0,0,0.3); }
}

/* Wave Effect Outer Rings */
.float-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid currentColor;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* --- Seeraga Samba Section (Enhanced Feature) --- */
.samba-feature-section {
    padding: 120px 0;
    background: #fff;
}

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

.samba-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.stat-pill {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fdfdfd;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    transition: var(--transition);
}

.stat-pill:hover {
    transform: translateX(15px);
    border-color: var(--primary-orange);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-cream);
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.stat-text strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
}

.stat-text span {
    font-size: 14px;
    color: var(--text-muted);
}

.samba-visual {
    position: relative;
}

.samba-image-container {
    position: relative;
    border-radius: 30px;
    overflow: visible;
}

.samba-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.1));
}

.samba-tag {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--primary-orange);
    color: #fff;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(221, 89, 3, 0.3);
    border: 5px solid #fff;
}

.samba-tag strong {
    display: block;
    font-size: 24px;
    font-family: var(--font-heading);
}

.samba-tag span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .samba-grid { grid-template-columns: 1fr; gap: 60px; }
    .samba-visual { order: -1; }
}

/* --- Family Experience Section (Mosaic Layout) --- */
.family-experience-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.experience-list {
    list-style: none;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.experience-list li {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.experience-list i {
    color: #4CAF50;
    width: 18px;
    height: 18px;
}

.mosaic-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 600px;
}

.mosaic-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

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

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

.mosaic-item.main {
    grid-row: span 2;
}

@media (max-width: 992px) {
    .family-experience-grid { grid-template-columns: 1fr; gap: 60px; }
    .experience-list { grid-template-columns: 1fr; }
    .mosaic-container { height: 450px; }
}

@media (max-width: 576px) {
    .mosaic-container { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; display: flex; flex-direction: column; }
    .mosaic-item.main { height: 300px; }
}

/* --- Reputation Section (Light Edition) --- */
.reputation-section {
    padding: 120px 0;
    background: #fdfdfd;
    border-top: 1px solid rgba(0,0,0,0.05);
}

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

.reputation-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.rep-stat-card {
    padding: 40px 30px;
    background: #fff;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.rep-stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number span {
    font-size: 24px;
    margin-left: 5px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

@media (max-width: 576px) {
    .reputation-stats-grid { grid-template-columns: 1fr; }
}

/* --- Footer Main Design --- */
.footer-main {
    background: #fdfdfd;
    padding-top: 100px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-top {
    padding-bottom: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-orange);
}

.footer-logo img {
    height: 120px; /* More professional size */
    width: auto;
    object-fit: contain;
}

.brand-desc {
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 25px;
}

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

.footer-socials a {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.08);
    transition: var(--transition);
}

/* Explicitly target the social media images */
.footer-socials a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--bg-cream);
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.footer-socials a:hover img {
    transform: scale(1.15);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
}

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

.contact-strip {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-strip i {
    color: var(--primary-orange);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-strip p {
    font-size: 14px;
    margin: 0;
}

.btn-footer-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-top: 15px;
}

.footer-bottom {
    padding: 30px 0;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.04);
}

.bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.payment-badges span {
    font-weight: 600;
    color: var(--text-dark);
}

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

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .bottom-inner { flex-direction: column; text-align: center; gap: 20px; }
}

/* --- Menu List Section (Premium Upgrade - Enhanced Contrast) --- */
.menu-section {
    padding: 120px 0;
    background: #f7f7f7; /* Slightly darker to make white cards pop */
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    background: #fff;
    padding: 10px;
    border-radius: 100px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.filter-btn {
    padding: 12px 28px;
    border-radius: 50px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    color: var(--primary-orange);
}

.filter-btn.active {
    background: var(--primary-orange);
    color: #fff;
    box-shadow: 0 10px 20px rgba(221, 89, 3, 0.2);
}

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

.menu-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 3px solid var(--primary-orange); /* Persistent Accent */
}

/* Removed individual before pseudo-element accent in favor of direct border-left */

.menu-card:hover {
    transform: translateX(5px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.item-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 50px;
}

.badge-veg { background: #E8F5E9; color: #2E7D32; }
.badge-nonveg { background: #FFEBEE; color: #C62828; }

.popular-tag {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--primary-orange);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 12px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.card-body h3 {
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 800;
}

.card-body .item-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Footers and buttons removed per user request for cleaner design */

@media (max-width: 1200px) {
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .menu-grid { grid-template-columns: 1fr; }
    .menu-filters { border-radius: 20px; padding: 15px; }
}

/* --- Menu Footer CTA --- */
.menu-footer-cta {
    margin-top: 80px;
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.03);
}

.menu-footer-cta .cta-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.menu-footer-cta .cta-content p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 500px;
}

.menu-footer-cta .cta-actions {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .menu-footer-cta { flex-direction: column; text-align: center; padding: 40px; }
    .menu-footer-cta .cta-actions { flex-direction: column; width: 100%; }
    .menu-footer-cta .btn { width: 100%; text-align: center; }
}

/* --- Internal Pages: Breadcrumb Hero --- */
.internal-hero {
    position: relative;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #1A1A1A 0%, #222 100%);
    color: #fff;
    text-align: left;
    border-bottom: 2px solid var(--primary-orange);
    overflow: hidden;
}

.internal-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 69, 0, 0.15) 0%, transparent 60%),
                      radial-gradient(circle at 80% 80%, rgba(255, 69, 0, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.internal-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.internal-hero .container {
    position: relative;
    z-index: 10;
}

.breadcrumb-nav {
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumb-nav a {
    color: var(--primary-orange);
    text-decoration: none;
}

.breadcrumb-nav span {
    color: rgba(255,255,255,0.5);
    margin: 0 10px;
}

.internal-hero h1 {
    position: relative;
    z-index: 10;
    font-size: 50px;
    color: #fff !important;
    margin-bottom: 15px;
}

.hero-keywords {
    position: relative;
    z-index: 10;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
}

/* --- Contact Page Specific --- */
.contact-page-content {
    padding: 120px 0;
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info-card {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-cream);
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-details h4 { font-size: 18px; margin-bottom: 5px; }
.method-details p { font-size: 15px; color: var(--text-muted); }

.contact-form-card {
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

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

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    background: #f9f9f9;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-orange);
    outline: none;
    background: #fff;
}

@media (max-width: 992px) {
    .contact-split-grid { grid-template-columns: 1fr; }
    .internal-hero h1 { font-size: 35px; }
}

/* --- Light Theme Overrides (Final) --- */
.narrative-section {
    padding: 140px 0;
    overflow: hidden;
}

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

.narrative-visual .image-stack {
    position: relative;
}

.narrative-visual img.img-main {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.1);
}

.section-label { color: var(--primary-orange); font-weight: 800; text-transform: uppercase; margin-bottom: 20px; display: block; }

.serif-title { font-size: 45px; line-height: 1.2; margin-bottom: 30px; }

.accent-para { font-size: 20px; font-weight: 600; color: var(--text-dark); margin-bottom: 30px; line-height: 1.6; }

.signature-block {
    margin-top: 40px;
    padding-left: 30px;
    border-left: 4px solid var(--primary-orange);
}

.signature-text { font-size: 18px; color: var(--text-muted); }

.philosophy-mission-section { padding: 120px 0; background: #f9f9f9; }

.philosophy-grid-new {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.phi-card {
    background: #fff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    position: relative;
}

.phi-icon { font-size: 40px; color: var(--primary-orange); margin-bottom: 30px; }

.phi-card h3 { font-size: 28px; margin-bottom: 20px; }

.phi-card p { line-height: 1.8; color: var(--text-muted); }

.phi-accent {
    margin-top: 30px;
    font-weight: 900;
    color: var(--primary-orange);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
}

.pillars-section { padding: 140px 0; }

.section-heading-centered { text-align: center; margin-bottom: 80px; }

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

.pillar-item {
    padding: 50px;
    background: #fff;
    border-radius: 30px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.pillar-num {
    font-size: 50px;
    font-weight: 900;
    color: rgba(221, 89, 3, 0.1);
    display: block;
    margin-bottom: 20px;
    line-height: 1;
}

.pillar-item h4 { font-size: 20px; margin-bottom: 15px; }

.pillar-item p { font-size: 14px; color: var(--text-muted); }

.pillar-item:hover {
    transform: translateY(-15px);
    border-color: var(--primary-orange);
}

.highlight-pillar { background: #fffaf7; border-color: rgba(221, 89, 3, 0.2); }

.final-cta-section { padding: 120px 0; }

.cta-box {
    background: var(--primary-orange);
    padding: 80px;
    border-radius: 50px;
    color: #fff;
}

.cta-box h2 { 
    color: #fff !important; 
    font-size: 45px; 
    margin: 20px auto 30px; 
    background: none !important;
    -webkit-text-fill-color: #fff !important;
    text-align: center;
}

.cta-box p { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 700px; margin: 0 auto 40px; }

.visit-btns-row { 
    display: flex; 
    justify-content: flex-start; /* Default back to left */
    gap: 20px; 
}

/* Center buttons when container is centered */
.text-center .visit-btns-row, .cta-box .visit-btns-row {
    justify-content: center;
}

.visit-btns-row .btn-outline { border-color: #fff; color: #fff; }
.visit-btns-row .btn-outline:hover { background: #fff; color: var(--primary-orange); }

@media (max-width: 992px) {
    .narrative-grid, .philosophy-grid-new, .pillars-grid { grid-template-columns: 1fr; }
    .cta-box { border-radius: 30px; padding: 40px; }
    .visit-btns-row { flex-direction: column; }
    .experience-year-badge { width: 120px; height: 120px; right: 0; }
}

/* --- Enhanced SEO Discovery Tiles --- */
.seo-discovery-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.seo-discovery-section::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%; width: 60%; height: 80%;
    background: var(--primary-orange); opacity: 0.02;
    transform: translate(-50%, -50%) rotate(-5deg);
    z-index: 1; border-radius: 100px;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.seo-tile {
    background: #fff;
    padding: 40px 30px;
    border: 1px solid #f0f0f0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border-radius: 1px;
}

.seo-tile:hover {
    background: #fff;
    border-color: var(--primary-orange);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    transform: translateY(-10px);
}

.seo-num {
    font-family: var(--font-heading);
    font-size: 12px;
    color: var(--primary-orange);
    margin-bottom: 25px;
    display: block;
    font-weight: 900;
    letter-spacing: 2px;
    opacity: 0.5;
}

.seo-tile h5 {
    font-size: 17px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-family: var(--font-heading);
    line-height: 1.3;
}

.seo-tile p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.seo-tile::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0; height: 3px;
    background: var(--primary-orange);
    transition: var(--transition);
}

.seo-tile:hover::before {
    width: 100%;
}

@media (max-width: 1200px) { .seo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .seo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .seo-grid { grid-template-columns: 1fr; } }

/* --- Specialty Dish Showcase --- */
.specialty-showcase {
    padding: 140px 0;
    position: relative;
    background: #fff;
}

.showcase-grid {
    display: flex;
    align-items: center;
    gap: 100px;
}

.showcase-image-col {
    flex: 1;
    position: relative;
}

.showcase-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.15);
}

.showcase-image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 1s ease;
}

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

.showcase-bg-text {
    position: absolute;
    top: -40px; left: -40px;
    font-size: 120px;
    font-family: var(--font-heading);
    color: var(--primary-orange);
    opacity: 0.05;
    z-index: 1;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 900;
}

.showcase-content-col {
    flex: 1;
}

.showcase-tag {
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 20px;
    display: block;
}

.showcase-content-col h2 {
    font-size: clamp(35px, 4vw, 55px);
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.1;
}

.showcase-desc {
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.showcase-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
}

.highlight-item i {
    color: var(--primary-orange);
    width: 20px;
}

@media (max-width: 992px) {
    .showcase-grid { flex-direction: column; gap: 60px; }
    .showcase-bg-text { font-size: 60px; top: -20px; left: 0; }
}

/* --- Celebrations Page Luxury Components --- */
.celebration-hero {
    padding: 160px 0 120px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.celebration-hero::before {
    content: '★';
    position: absolute;
    top: 20%; left: 10%; font-size: 40px; color: gold; opacity: 0.1;
}

.celebration-hero::after {
    content: '🎂';
    position: absolute;
    bottom: 20%; right: 10%; font-size: 60px; opacity: 0.1;
}

.gift-reveal-box {
    background: #fff;
    border-radius: 40px;
    padding: 80px 60px;
    box-shadow: 0 60px 120px rgba(0,0,0,0.1);
    margin-top: -80px;
    position: relative;
    z-index: 10;
    border: 2px solid var(--bg-cream);
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

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

.mosaic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #fff;
    transition: var(--transition);
}

.mosaic-item:hover .mosaic-overlay {
    background: linear-gradient(to top, var(--primary-orange), transparent);
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    transition: var(--transition);
}

.process-step:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 900;
    flex-shrink: 0;
    font-size: 20px;
}

.expectation-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.expectation-table th {
    padding: 20px;
    text-align: left;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.expectation-table td {
    background: #fff;
    padding: 25px;
    font-weight: 600;
}

.expectation-table tr td:first-child { border-radius: 15px 0 0 15px; }
.expectation-table tr td:last-child { border-radius: 0 15px 15px 0; border-left: 1px solid #eee; }

.check-icon { color: #2ecc71; font-weight: 900; margin-right: 10px; }
.charge-tag { background: #f8f8f8; padding: 5px 12px; border-radius: 10px; font-size: 11px; text-transform: uppercase; }

@media (max-width: 992px) {
    .mosaic-grid { grid-template-columns: 1fr 1fr; }
    .mosaic-item.large { grid-column: span 1; }
}

@media (max-width: 576px) {
    .mosaic-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
}

/* --- Map & Full Width Sections --- */
.map-section-full iframe {
    display: block;
    filter: grayscale(0) contrast(1.1);
}

.footer-main {
    background: #fff;
    padding: 100px 0 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-top {
    padding-bottom: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-orange);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
}

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

.contact-strip {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-strip i {
    color: var(--primary-orange);
    flex-shrink: 0;
}

.contact-strip p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    background: #fdfdfd;
}

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

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* --- Light Theme Overrides (Final) --- */
/* --- Light Theme Overrides (Final) --- */

/* --- Responsive --- */
@media (max-width: 992px) {
    .feature-grid, .dish-grid, .standards-grid { grid-template-columns: 1fr; }
    .nav-menu { display: none; }
    .header-inner { height: 80px; }
    .heritage-inner { flex-direction: column; gap: 40px; }
    .heritage-image-box img { height: 400px; }
    .heritage-badge { width: 120px; height: 120px; bottom: -20px; border-width: 4px; }
    .heritage-badge strong { font-size: 18px; }
    .heritage-content h2 { font-size: 32px; }
}


/* ============================================================
   GLOBAL OVERFLOW FIX
   ============================================================ */
html, body { overflow-x: hidden; max-width: 100%; }

/* ============================================================
   HAMBURGER BUTTON
   ============================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px; /* Slightly more gap for clarity */
    width: 44px;
    height: 44px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0; /* Clear padding for better alignment */
    border-radius: 8px;
    transition: background 0.2s;
    z-index: 1100;
    flex-shrink: 0;
    align-self: center; /* Ensure vertical centering in flex header */
    margin-left: auto; /* Push to far right */
}
.hamburger:hover { background: rgba(0,0,0,0.05); }
.hamburger .bar {
    display: block;
    width: 26px; /* Slightly wider */
    height: 3px; /* Slightly thicker */
    background: var(--text-dark);
    border-radius: 4px;
    transition: all 0.3s;
    transform-origin: center;
}
.hamburger.open .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    transition: opacity 0.3s;
}
.mobile-nav-overlay.open { opacity: 1; }

.mobile-nav-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px; height: 100%;
    background: #fff;
    z-index: 1060;
    transition: right 0.35s cubic-bezier(0.25,0.8,0.25,1);
    overflow-y: auto;
    display: flex; flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.mobile-nav-drawer.open { right: 0; }

.mobile-nav-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.mobile-nav-logo {
    display: inline-flex;
    align-items: center;
    background: transparent;
    padding: 0;
    text-decoration: none;
}
.mobile-nav-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}
.mobile-nav-close {
    width: 36px; height: 36px;
    background: #f5f5f5; border: none; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--text-dark); line-height: 1;
}
.mobile-nav-links { list-style: none; padding: 12px 0; flex: 1; }
.mobile-nav-links li { border-bottom: 1px solid rgba(0,0,0,0.05); }
.mobile-nav-links > li > a {
    display: block; padding: 15px 24px;
    font-size: 14px; font-weight: 700;
    color: var(--text-dark); text-decoration: none;
    text-transform: uppercase; letter-spacing: 0.5px;
    transition: all 0.2s;
}
.mobile-nav-links > li > a:hover,
.mobile-nav-links > li > a.active { color: var(--primary-orange); background: #fdf5f0; }

.mobile-sub-links { list-style: none; background: #faf9f6; }
.mobile-sub-links a {
    display: block; padding: 12px 24px 12px 36px;
    font-size: 12px; font-weight: 600; text-transform: uppercase;
    color: var(--text-muted); text-decoration: none;
}
.mobile-sub-links a:hover { color: var(--primary-orange); }

.mobile-nav-footer {
    padding: 20px 24px; border-top: 1px solid rgba(0,0,0,0.07);
    display: flex; flex-direction: column; gap: 10px;
}
.mobile-nav-footer a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px; border-radius: 12px;
    font-size: 14px; font-weight: 700; text-decoration: none; transition: all 0.2s;
}
.mobile-cta-call { background: var(--text-dark); color: #fff !important; }
.mobile-cta-wa { background: #25D366; color: #fff !important; }

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   All pages: index, chicken, mutton, bucket, chicken65, about, contact
   Strategy: Desktop 100% untouched. Mobile-only via max-width queries.
   ============================================================ */

/* ── TABLET & MOBILE: 768px ── */
@media (max-width: 768px) {

    /* --- Global Spacing --- */
    section { padding: 60px 0 !important; }
    .container { padding: 0 16px; }

    /* --- Top Bar --- */
    .top-bar { display: none !important; }

    /* --- Header --- */
    .header-inner { height: 70px !important; padding: 0 16px; }
    .logo-container { font-size: 22px !important; padding: 0 16px !important; }
    .nav-menu { display: none !important; }
    .header-right { display: none !important; }
    /* Show hamburger button on mobile */
    .hamburger { display: flex !important; }
    /* Show mobile nav overlay (display controlled by JS) */
    .mobile-nav-overlay { display: block; }

    /* --- Section Titles --- */
    .section-heading-centered h2,
    h2.serif-title { font-size: 28px !important; line-height: 1.25 !important; }
    h1.serif-title { font-size: 34px !important; line-height: 1.15 !important; }
    .gold-subtitle { font-size: 11px !important; }
    .serif-title { font-size: 28px !important; }

    /* --- Homepage Hero Slider --- */
    .hero-slide { padding: 100px 16px 60px !important; min-height: 100svh !important; }
    .hero-slide-content h1,
    .hero-slide-content h2 { font-size: 32px !important; line-height: 1.2 !important; }
    .hero-slide-subtitle { font-size: 13px !important; }
    .hero-slide-body { font-size: 15px !important; }
    .hero-cta-group { flex-direction: column !important; gap: 12px !important; }
    .hero-cta-group a { width: 100% !important; text-align: center !important; justify-content: center !important; }

    /* --- Breadcrumb --- */
    .breadcrumb-nav { font-size: 12px !important; margin-bottom: 10px !important; }

    /* --- HERO of product pages (chicken/mutton/bucket/chicken65) --- */
    /* Stack left-right hero flex to column */
    .creative-hero .container > div,
    section[style*="padding: 160px"] .container > div { flex-direction: column !important; gap: 36px !important; }

    /* Circle hero image smaller */
    img[style*="border-radius: 50%"][style*="max-width: 480px"],
    img[style*="border-radius: 50%"][style*="max-width: 500px"] {
        max-width: 260px !important;
    }

    /* Decorative orange ring behind hero image — hide on mobile */
    div[style*="border-radius: 50%"][style*="position: absolute"][style*="border: 2px solid var(--primary-orange)"] {
        display: none !important;
    }

    /* Floating badge below hero image — make inline */
    div[style*="bottom: 20px"][style*="left: 0"][style*="background: #fff"][style*="position: absolute"] {
        position: relative !important;
        display: flex !important;
        bottom: auto !important;
        left: auto !important;
        margin-top: 14px !important;
    }

    /* --- CTA Button Groups — full width on mobile --- */
    div[style*="display: flex"][style*="gap: 14px"][style*="flex-wrap: wrap"],
    div[style*="display: flex"][style*="gap: 15px"][style*="flex-wrap: wrap"],
    div[style*="display: flex"][style*="gap: 16px"][style*="flex-wrap: wrap"],
    div[style*="display: flex"][style*="gap: 20px"][style*="flex-wrap: wrap"],
    div[style*="display: flex"][style*="gap: 25px"][style*="flex-wrap: wrap"] {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    div[style*="display: flex"][style*="gap: 14px"][style*="flex-wrap: wrap"] a,
    div[style*="display: flex"][style*="gap: 15px"][style*="flex-wrap: wrap"] a,
    div[style*="display: flex"][style*="gap: 16px"][style*="flex-wrap: wrap"] a,
    div[style*="display: flex"][style*="gap: 20px"][style*="flex-wrap: wrap"] a,
    div[style*="display: flex"][style*="gap: 25px"][style*="flex-wrap: wrap"] a {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
    }

    /* --- Grids — collapse to 1 column --- */
    div[style*="grid-template-columns: repeat(auto-fit"],
    div[style*="grid-template-columns: repeat(2, 1fr)"],
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
    }

    /* --- Flex dual-panel layouts — stack vertically --- */
    div[style*="flex: 1; min-width: 350px"],
    div[style*="flex: 1; min-width: 300px"],
    div[style*="flex: 1; min-width: 280px"],
    div[style*="flex: 1.2; min-width: 350px"],
    div[style*="flex: 1.2; min-width: 320px"],
    div[style*="flex: 1; min-width: 320px"] {
        min-width: 0 !important;
        width: 100% !important;
        flex: 1 1 100% !important;
    }

    /* --- Image panel height in split layouts --- */
    div[style*="min-height: 500px"][style*="background"][style*="url("],
    div[style*="min-height: 420px"][style*="background"][style*="url("],
    div[style*="min-height: 400px"][style*="background"][style*="url("],
    div[style*="min-height: 380px"][style*="background"][style*="url("] {
        min-height: 240px !important;
        width: 100% !important;
        border-radius: 16px !important;
    }

    /* --- Cards: spice, quality, occasion --- */
    .quality-card, .spice-card { padding: 26px 22px !important; }

    /* --- Occasion / Audience Tags --- */
    .occasion-tag, .audience-tag {
        font-size: 13px !important;
        padding: 10px 16px !important;
    }

    /* --- Flavour profile rows (chicken65) --- */
    .flavour-row { gap: 14px !important; padding: 20px 0 !important; }
    .flavour-num { font-size: 28px !important; width: 32px !important; }

    /* --- Sticky sidebar (chicken65) — un-sticky on mobile --- */
    div[style*="position: sticky"] { position: relative !important; top: auto !important; }

    /* --- Who Visits editorial section (mutton) --- */
    div[style*="gap: 80px; row-gap: 60px"] {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
        row-gap: 30px !important;
    }
    /* Huge decorative numbers — hide on mobile to save space */
    div[style*="font-size: 80px"][style*="font-style: italic"][style*="position: absolute"] {
        display: none !important;
    }
    /* Background watermark text 'The Patrons' — hide */
    div[style*="font-size: 15rem"] { display: none !important; }

    /* --- Portion Cards (bucket page) --- */
    .portion-card { padding: 36px 24px !important; }
    .portion-card.featured { transform: scale(1) !important; }
    .portion-number { font-size: 56px !important; }

    /* --- Step cards (how to book) --- */
    .step-card, .order-step { padding: 30px 22px !important; }
    .step-number, .order-step-icon {
        width: 48px !important; height: 48px !important; font-size: 18px !important;
    }

    /* --- Final CTA Floating White Card --- */
    div[style*="padding: 80px 40px"][style*="border-radius: 40px"],
    div[style*="padding: 80px 50px"][style*="border-radius: 40px"] {
        padding: 44px 22px !important;
        border-radius: 22px !important;
    }
    /* Hide decorative orb in CTA card */
    div[style*="width:220px"][style*="border-radius:50%"][style*="position:absolute"],
    div[style*="width: 250px"][style*="border-radius: 50%"][style*="position: absolute"] {
        display: none !important;
    }

    /* --- Info bar inside CTA card (address+phone chips) --- */
    div[style*="display: flex"][style*="margin-bottom: 35px"][style*="flex-wrap: wrap"],
    div[style*="display: flex"][style*="margin-bottom: 40px"][style*="flex-wrap: wrap"] {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
    }

    /* --- FAQ --- */
    .faq-trigger { font-size: 15px !important; padding: 18px 20px !important; }
    .faq-content { padding: 0 20px 18px !important; font-size: 15px !important; }

    /* --- Footer --- */
    .footer-main { padding: 60px 0 0 !important; }
    .footer-top { padding-bottom: 40px !important; }
    .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 36px !important; }
    .bottom-inner { flex-direction: column !important; gap: 10px !important; text-align: center !important; }

    /* --- Floating action buttons --- */
    .floating-actions { bottom: 20px !important; right: 14px !important; }
    .float-icon { width: 46px !important; height: 46px !important; }

    /* --- Padding on very tall hero-like sections --- */
    section[style*="padding: 140px 0"],
    section[style*="padding: 150px 0"],
    section[style*="padding: 120px 0"] { padding: 70px 0 !important; }
    section[style*="padding: 100px 0"] { padding: 60px 0 !important; }

    /* --- Product landing pages: top padding for hero below sticky header --- */
    section[style*="padding: 160px 0"] { padding: 110px 0 60px !important; }
}

/* ── SMALL MOBILE: 480px ── */
@media (max-width: 480px) {

    /* --- Typography --- */
    h1.serif-title { font-size: 28px !important; }
    h2.serif-title, .section-heading-centered h2 { font-size: 22px !important; }
    .hero-slide-content h1,
    .hero-slide-content h2 { font-size: 26px !important; }

    /* --- 4-col → 1 col on tiny screens --- */
    div[style*="grid-template-columns: repeat(4, 1fr)"],
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* --- Footer → 1 col --- */
    .footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; }

    /* --- Final CTA card tighter --- */
    div[style*="padding: 44px 22px"][style*="border-radius: 22px"] {
        padding: 32px 16px !important;
    }

    /* --- Portion number smaller --- */
    .portion-number { font-size: 46px !important; }

    /* --- Occasion / audience tags smaller --- */
    .occasion-tag, .audience-tag {
        font-size: 12px !important;
        padding: 8px 14px !important;
    }

    /* --- Step cards --- */
    .step-card, .order-step { padding: 26px 16px !important; }
}

/* Customer Reviews Slider Section */
.reviews-section {
    padding: 100px 0;
    overflow: hidden; /* Prevent overflow of the slider track */
}

.reviews-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    gap: 30px;
}

.review-card {
    flex: 0 0 calc(33.333% - 20px); /* 3 cards visible at once */
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border-top: 5px solid var(--primary-orange);
    box-sizing: border-box;
}

.review-stars {
    color: #FFB800;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--bg-cream);
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.author-info h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: var(--text-dark);
}

.author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.review-dot {
    width: 10px;
    height: 10px;
    background: #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
}

.review-dot.active {
    width: 30px;
    background: var(--primary-orange);
    border-radius: 5px;
}

/* Tablet / Mobile Slider Adjustments */
@media (max-width: 992px) {
    .review-card { flex: 0 0 calc(50% - 15px); }
}

@media (max-width: 768px) {
    .review-card { flex: 0 0 100%; }
}


@media (max-width: 992px) {
    .standards-center-img img { transform: scale(1.2) !important; margin: 20px 0; display: block; }
}


/* --- Blog Section --- */
.blog-section {
    padding: 120px 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.blog-img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.blog-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-img-container img {
    transform: scale(1.1);
}
.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-orange);
    color: #fff;
    padding: 5px 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    z-index: 5;
}
.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--text-muted);
}
.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.blog-meta i {
    width: 14px;
    height: 14px;
    color: var(--primary-orange);
}
.blog-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 15px;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: var(--text-dark);
    padding-bottom: 0;
}
.blog-card h3::after { display: none !important; }
.blog-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}
.blog-read-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.blog-read-more i { width: 16px; transition: transform 0.3s ease; }
.blog-read-more:hover i { transform: translateX(5px); }

@media (max-width: 992px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
}




/* --- Ultra Professional Menu Page Styling --- */
.menu-page-container {
    padding: 100px 0;
    background: #fdfdfd;
}

.menu-category-section {
    margin-bottom: 30px;
    scroll-margin-top: 150px;
}

.category-header {
    border-bottom: 2px solid var(--primary-orange);
    margin-bottom: 50px;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.category-header h2 {
    font-size: 38px;
    margin: 0;
    background: none;
    -webkit-text-fill-color: var(--text-dark);
}

.item-board {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    transition: var(--transition);
}

.menu-item-row:hover {
    background: var(--bg-cream);
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 8px;
    border-bottom-color: var(--primary-orange);
}

.item-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.sticky-menu-nav {
    position: sticky;
    top: 100px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    z-index: 100;
    margin-bottom: 40px;
    display: flex;
    gap: 15px;
    overflow-x: auto;
    white-space: nowrap;
    border: 1px solid #eee;
}

.sticky-nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 50px;
    transition: var(--transition);
}

.sticky-nav-link:hover, .sticky-nav-link.active {
    background: var(--primary-orange);
    color: #fff;
}

/* --- Ultra Luxury Menu Enhancements --- */
.menu-page-wrapper {
    display: flex;
    gap: 60px;
    padding: 40px 0;
}

.menu-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.menu-main-content {
    flex-grow: 1;
}

.styled-category-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 2px solid #eee;
}

.category-nav-item {
    padding: 14px 25px;
    display: block;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    border-left: 3px solid transparent;
    margin-left: -2px;
}

.category-nav-item:hover, .category-nav-item.active {
    color: var(--primary-orange);
    border-left-color: var(--primary-orange);
    background: linear-gradient(to right, rgba(221, 89, 3, 0.05), transparent);
}

.category-feature-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    min-height: 220px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background: var(--primary-orange);
    box-shadow: 0 20px 50px rgba(221, 89, 3, 0.15);
    border-left: 8px solid var(--text-dark);
}

.category-feature-circle-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255,255,255,0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    flex-shrink: 0;
    margin-left: 40px;
    background: #fff;
    position: relative;
    z-index: 5;
    transition: var(--transition);
}

.category-feature-box:hover .category-feature-circle-img {
    transform: scale(1.1) rotate(5deg);
}

.category-feature-box::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M0 40 L40 0" stroke="rgba(255,255,255,0.03)" stroke-width="1" fill="none"/></svg>');
    opacity: 0.5;
}

.category-feature-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.category-feature-content .category-label-lux {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.8);
    display: block;
    margin-bottom: 12px;
}

.category-feature-content h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    background: none;
    -webkit-text-fill-color: #fff;
    text-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.category-feature-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0;
    line-height: 1.6;
}

.luxury-menu-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 100px;
    margin-bottom: 0px;
}

.luxury-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

.luxury-item:hover {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
    transform: translateX(5px);
}

.luxury-item-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1200px) {
    .luxury-menu-list { gap: 20px 40px; }
}

@media (max-width: 992px) {
    .menu-page-wrapper { flex-direction: column; padding-top: 40px; }
    .menu-sidebar { display: none; }
    .luxury-menu-list { grid-template-columns: 1fr; gap: 0; }
    .category-feature-box { padding: 40px; height: 250px; border-radius: 25px; }
    .category-title-luxury { font-size: 32px; }
}

/* --- Full Menu Page Polish --- */
.internal-hero {
    background: var(--bg-cream);
    padding: 60px 0 !important;
    border-bottom: 2px solid rgba(0,0,0,0.03);
}

.breadcrumb-nav {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.breadcrumb-nav a { text-decoration: none; color: var(--primary-orange); }
.breadcrumb-nav span { margin: 0 10px; opacity: 1; color: var(--text-dark); font-weight: 900; }

.internal-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
    line-height: 1.1;
    color: var(--text-dark) !important;
    background: none !important;
    -webkit-text-fill-color: var(--text-dark) !important;
}

.hero-keywords {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-orange);
}

.menu-category-section {
    padding: 0 !important; /* Override default section padding */
    margin-bottom: 40px;
    scroll-margin-top: 150px;
}

@media (max-width: 992px) {
    .internal-hero { padding: 40px 0 !important; text-align: center; }
    .internal-hero h1 { font-size: 28px; }
}

/* --- Guaranteed 100% Mobile Responsiveness for Menu Elements --- */
@media (max-width: 768px) {
    /* Tighten Menu Page Layout */
    .menu-page-wrapper { padding-top: 20px !important; gap: 30px !important; }
    .menu-category-section { margin-bottom: 25px !important; }
    
    /* Responsive Brand Boards */
    .category-feature-box { 
        padding: 30px !important; 
        min-height: auto !important;
        height: auto !important;
        border-radius: 15px !important;
        border-left-width: 5px !important;
    }
    
    .category-feature-content .category-label-lux {
        font-size: 11px !important;
        letter-spacing: 2px !important;
        margin-bottom: 8px !important;
    }
    
    .category-feature-content h2 {
        font-size: 26px !important;
        line-height: 1.2 !important;
        margin-bottom: 8px !important;
    }
    
    .category-feature-content p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    .category-feature-circle-img {
        display: none !important; /* Hiding to keep mobile layout clean as per premium design standards */
    }
    
    /* Responsive Menu Lists */
    .luxury-menu-list {
        gap: 0 !important;
    }
    
    .luxury-item {
        padding: 12px 0 !important;
        flex-direction: column !important;
        gap: 4px !important;
        border-bottom: 1px dashed rgba(0,0,0,0.08) !important;
    }
    
    .luxury-item-name {
        font-size: 15px !important;
    }
    
    /* Hero fixes */
    .internal-hero h1 {
        font-size: 24px !important;
    }
}

@media (max-width: 480px) {
    .category-feature-box {
        padding: 24px 20px !important;
        border-radius: 12px !important;
    }
    
    .category-feature-content h2 {
        font-size: 22px !important;
    }
    
    .category-feature-content p {
        font-size: 13px !important;
    }
    
    .luxury-item-name {
        font-size: 14px !important;
    }
    
    .internal-hero {
        padding: 30px 0 !important;
    }
    
    .internal-hero h1 {
        font-size: 20px !important;
    }
    
    .breadcrumb-nav {
        margin-bottom: 10px !important;
    }
}

/* --- Responsive CTA Sections (Final Fix) --- */
.final-cta-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.cta-box {
    background: var(--primary-orange);
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 50px rgba(221, 89, 3, 0.2);
}

.cta-box h2 {
    color: #fff !important;
    background: none !important;
    -webkit-text-fill-color: #fff !important;
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 20px;
    display: block !important; /* Fix for display: table overflow */
}

.cta-box h2::after {
    background: #fff !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.visit-btns-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.visit-btns-row .btn-outline {
    border-color: #fff;
    color: #fff;
}

.visit-btns-row .btn-outline:hover {
    background: #fff;
    color: var(--primary-orange);
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 60px 0;
    }
    
    .cta-box {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .cta-box h2 {
        font-size: 24px !important;
    }
    
    .visit-btns-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .visit-btns-row .btn {
        width: 100%;
    }
}
