/* CSS Variables */
:root {
    --bg-color: #120d09;
    --surface-color: #1b130d;
    --card-color: #261912;
    --text-primary: #fff2df;
    --text-secondary: #d8c1a0;
    --gold-accent: #d89b2d;
    --gold-hover: #efb447;
    --red-accent: #c14c2f;
    --green-accent: #6e7f39;
    --border-light: rgba(255, 237, 207, 0.11);
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;
    --font-punjabi: 'Noto Serif Gurmukhi', serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background:
        radial-gradient(circle at top left, rgba(216, 155, 45, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(193, 76, 47, 0.14), transparent 22%),
        linear-gradient(180deg, #1a120c 0%, #120d09 45%, #0d0907 100%);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 88px;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

a { color: var(--text-primary); text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.text-gold { color: var(--gold-accent); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.w-100 { width: 100%; }
.bg-surface { background-color: var(--surface-color); }
.rounded { border-radius: 12px; }
.shadow { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
.section-padding { padding: 5rem 0; }
.subtitle { color: var(--text-secondary); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.punjabi-script { font-family: var(--font-punjabi); letter-spacing: 0; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    color: var(--gold-accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.14rem;
}
.eyebrow.center { justify-content: center; }
.eyebrow-icon,
.info-icon,
.footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.btn-primary {
    background-color: var(--gold-accent);
    color: #000;
    border-color: var(--gold-accent);
}
.btn-primary:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 242, 223, 0.04);
    color: var(--text-primary);
    border-color: var(--text-secondary);
}
.btn-secondary:hover {
    border-color: var(--gold-accent);
    color: var(--gold-accent);
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.justify-center { justify-content: center; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background-color: rgba(18, 13, 9, 0.94);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
    padding: 1rem 0;
}
.navbar.scrolled { padding: 0.5rem 0; box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.brand-logo { display: flex; align-items: center; gap: 0.85rem; min-width: 0; }
.logo-img { height: 64px; width: auto; }
.brand-lockup { display: flex; flex-direction: column; gap: 0.15rem; }
.brand-name {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2vw, 1.6rem);
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}
.brand-tag {
    color: var(--gold-accent);
    font-size: 0.85rem;
    line-height: 1;
}

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-weight: 600; position: relative; }
.nav-links a:not(.btn)::after {
    content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px;
    background-color: var(--gold-accent); transition: var(--transition);
}
.nav-links a:not(.btn):hover::after, .nav-links a.active::after { width: 100%; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hamburger span { display: block; width: 25px; height: 2px; background-color: var(--text-primary); margin: 5px 0; transition: var(--transition); }

/* Hero Sections */
.hero {
    position: relative;
    height: calc(100vh - 88px);
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('https://images.pexels.com/photos/20446423/pexels-photo-20446423.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(216, 155, 45, 0.1), transparent 35%),
        radial-gradient(circle at 85% 18%, rgba(193, 76, 47, 0.18), transparent 20%);
}
.page-header {
    position: relative;
    overflow: hidden;
    padding: 12rem 0 4rem;
    background:
        linear-gradient(180deg, rgba(216, 155, 45, 0.08), transparent 50%),
        var(--surface-color);
    border-bottom: 1px solid var(--border-light);
}
.page-header > .container {
    position: relative;
    z-index: 1;
}
.contact-hero {
    background:
        linear-gradient(180deg, rgba(8, 6, 5, 0.4), rgba(8, 6, 5, 0.68)),
        linear-gradient(120deg, rgba(216, 155, 45, 0.08), rgba(0, 0, 0, 0.03)),
        url('contact-banner.png') center/cover no-repeat;
}
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 7, 5, 0.52), rgba(10, 7, 5, 0.68)),
        radial-gradient(circle at center, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.22));
}
.menu-hero {
    background:
        linear-gradient(180deg, rgba(8, 6, 5, 0.42), rgba(8, 6, 5, 0.68)),
        linear-gradient(120deg, rgba(216, 155, 45, 0.08), rgba(0, 0, 0, 0.03)),
        url('menu-banner.png') center/cover no-repeat;
}
.menu-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 7, 5, 0.5), rgba(10, 7, 5, 0.66)),
        radial-gradient(circle at center, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.2));
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(8, 8, 7, 0.95) 0%, rgba(8, 8, 7, 0.7) 100%);
}
.hero-content {
    position: relative; z-index: 1; padding: 0 1.5rem; max-width: 800px; margin: 0 auto; width: 100%;
}
.hero-content p { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 2rem; max-width: 600px; }
.hero-script {
    color: var(--gold-accent);
    font-size: 1.1rem;
    margin-bottom: 0.9rem;
}

/* Split Layout & Grid */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.accent-line { width: 60px; height: 3px; background-color: var(--gold-accent); margin: 1.5rem 0; }
.about-text p { margin-bottom: 1rem; color: var(--text-secondary); font-size: 1.1rem; }
.rounded-image { border-radius: 8px; }

.grid-container { display: grid; gap: 2rem; }
.cards-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.trust-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); text-align: center; }

/* Cards */
.card {
    background-color: var(--card-color);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.card::before,
.trust-card::before,
.menu-item::before,
.info-card::before,
.cta-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(216, 155, 45, 0.08);
    pointer-events: none;
}
.card:hover { transform: translateY(-5px); border-color: rgba(216, 160, 43, 0.3); box-shadow: 0 10px 20px rgba(0,0,0,0.4); }
.card-image-wrapper { position: relative; height: 220px; overflow: hidden; }
.card-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-image-wrapper img { transform: scale(1.05); }
.card-badge { position: absolute; top: 1rem; right: 1rem; background-color: rgba(0,0,0,0.8); color: var(--gold-accent); padding: 0.3rem 0.8rem; border-radius: 4px; font-size: 0.8rem; font-weight: 500; }
.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.9rem;
}
.card-content h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.card-content p { color: var(--text-secondary); font-size: 0.9rem; margin: 0; min-height: 40px; }
.price { color: var(--gold-accent); font-weight: 600; font-size: 1.2rem; font-family: var(--font-heading); }

/* Trust Cards */
.trust-card { padding: 2rem; background-color: var(--card-color); border-radius: 8px; border: 1px solid var(--border-light); position: relative; }
.trust-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: radial-gradient(circle, rgba(216, 155, 45, 0.18), rgba(216, 155, 45, 0.06));
    border: 1px solid rgba(216, 155, 45, 0.26);
}
.trust-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* Menu Page Styles */
.menu-intro {
    max-width: 760px;
    margin-bottom: 3rem;
}
.menu-intro p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}
.menu-category { margin-bottom: 4rem; }
.category-title {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    color: var(--gold-accent);
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    flex-wrap: wrap;
}
.category-script {
    color: var(--text-secondary);
    font-size: 1.05rem;
}
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.menu-item {
    background-color: var(--card-color);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.menu-item:hover { border-color: var(--border-light); background-color: var(--surface-color); }
.menu-item-image { width: 100%; height: 180px; object-fit: cover; background-color: var(--surface-color); }
.menu-item-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.9rem;
}
.menu-item-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.5rem; border-bottom: 1px dashed rgba(255,255,255,0.1); padding-bottom: 0.5rem; }
.menu-item-header h3 { margin: 0; font-size: 1.2rem; }
.menu-item p { color: var(--text-secondary); font-size: 0.95rem; margin: 0; }
.menu-item .price,
.card .price {
    display: inline-flex;
    align-items: center;
}
.order-now-btn {
    width: 100%;
    margin-top: auto;
    min-height: 48px;
    padding: 0.85rem 1.15rem;
    font-size: 0.96rem;
    letter-spacing: 0;
    box-shadow: 0 10px 22px rgba(216, 155, 45, 0.12);
}
.order-now-btn:hover,
.order-now-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(216, 155, 45, 0.2);
}
.order-now-btn:focus-visible {
    outline: 2px solid rgba(255, 242, 223, 0.9);
    outline-offset: 3px;
}

/* Contact Forms & Cards */
.contact-grid {
    align-items: start;
}
.contact-info,
.contact-side {
    align-self: start;
}
.contact-side {
    display: grid;
    gap: 2rem;
}
.contact-form-container { padding: 2.5rem; border: 1px solid var(--border-light); position: relative; }
.form-intro {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; color: var(--text-secondary); font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.9rem 1rem; background-color: rgba(12, 8, 6, 0.95); border: 1px solid var(--border-light);
    color: var(--text-primary); border-radius: 999px; font-family: inherit; font-size: 1rem; transition: var(--transition);
}
.form-group textarea { border-radius: 18px; resize: vertical; min-height: 140px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold-accent); }
.info-card { background-color: var(--card-color); padding: 1.5rem; border-radius: 8px; position: relative; }
.info-card h3 { display: flex; align-items: center; gap: 0.7rem; }
.info-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(216, 155, 45, 0.14);
    border: 1px solid rgba(216, 155, 45, 0.24);
}
.social-links a { color: var(--text-secondary); margin-right: 0.5rem; }
.social-links a:hover { color: var(--gold-accent); }
.social-links-stack {
    display: grid;
    gap: 0.9rem;
}
.social-links-stack a {
    margin-right: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 600;
}
.social-links-stack img {
    width: 1rem;
    height: 1rem;
    filter: invert(85%) sepia(24%) saturate(347%) hue-rotate(347deg) brightness(93%) contrast(89%);
}
.map-card {
    padding: 1.35rem;
    border: 1px solid var(--border-light);
    position: relative;
    grid-column: 1 / -1;
}
.map-card-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.map-card-header h3 {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0;
}
.service-map {
    display: block;
    width: 100%;
    height: 380px;
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 242, 223, 0.08);
}
.form-status { font-size: 0.9rem; text-align: center; }
.form-status.success { color: #4CAF50; }
.form-status.error { color: var(--red-accent); }

/* CTA & Footer */
.cta-panel {
    background:
        linear-gradient(135deg, rgba(216, 155, 45, 0.08), rgba(193, 76, 47, 0.08)),
        var(--card-color);
    padding: 4rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    position: relative;
}
.cta-script {
    color: var(--gold-accent);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}
footer { background-color: #000; padding: 4rem 0 2rem; border-top: 1px solid var(--border-light); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { height: 64px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; }
footer h4 { color: var(--gold-accent); margin-bottom: 1.5rem; font-size: 1.1rem; }
.footer-links a, .footer-contact p { display: block; color: var(--text-secondary); margin-bottom: 0.8rem; font-size: 0.95rem; }
.footer-contact a { color: inherit; }
.footer-contact a:hover { color: var(--gold-accent); }
.footer-links a:hover { color: var(--gold-accent); }
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--surface-color);
    border-radius: 50%;
    margin-right: 0.5rem;
    border: 1px solid rgba(216, 155, 45, 0.12);
    transition: var(--transition);
}
.social-icons img {
    width: 18px;
    height: 18px;
    filter: invert(93%) sepia(13%) saturate(425%) hue-rotate(327deg) brightness(101%) contrast(103%);
}
.social-icons a:hover { background-color: var(--gold-accent); color: #000; }
.social-icons a:hover img {
    filter: invert(7%) sepia(9%) saturate(1945%) hue-rotate(353deg) brightness(95%) contrast(98%);
}
.footer-bottom { text-align: center; color: rgba(255,255,255,0.4); font-size: 0.85rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); }

/* Animations & Utility */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    *, ::before, ::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .split-layout { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .brand-logo { gap: 0.6rem; }
    .logo-img { height: 54px; }
    .brand-name { font-size: 1.1rem; }
    .brand-tag { font-size: 0.75rem; }
    .nav-links {
        position: fixed; top: 73px; left: -100%; width: 100%; height: calc(100vh - 73px);
        background-color: rgba(11, 11, 10, 0.98); flex-direction: column; justify-content: center;
        gap: 2rem; transition: 0.4s ease-in-out;
    }
    .nav-links.active { left: 0; }
    .hamburger { display: block; }
    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .hero-content { text-align: center; }
    .hero-content p { margin: 0 auto 2rem; }
    .hero-buttons { justify-content: center; }
    .map-card-header { align-items: start; }
    .service-map { height: 300px; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-brand, .subtitle { margin: 0 auto; }
}
