:root {
    /* Luxury Indian theme */
    --primary-color: #d35400; /* Saffron / orange accent */
    --secondary-color: #c7730c; /* Deep navy background */
    --accent-gold: #f1c40f; /* Subtle gold highlight */
    --background-color: #0b1220;
    --card-bg: #0f172a;
    --text-color: #f8fafc;
    --text-light: rgba(248, 250, 252, 0.78);
    --border-color: rgba(248, 250, 252, 0.12);
    --success-color: #27ae60;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-display: ui-serif, Georgia, 'Times New Roman', Times, serif;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --border-radius: 12px;
    --shadow: 0 10px 30px rgba(0,0,0,0.10);
    --shadow-soft: 0 6px 18px rgba(0,0,0,0.08);
    --shadow-lux: 0 18px 50px rgba(0,0,0,0.35);
    --max-width: 1200px;
}

/* ===== Luxury homepage blocks (hero, featured, popular, testimonials) ===== */

.site-header {
    background: transparent;
}

.site-navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 18, 32, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.site-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
}

.site-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.site-nav-link:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.site-nav-link.active {
    border-color: rgba(244, 163, 27, 0.55);
    background: rgba(244, 163, 27, 0.12);
    color: var(--text-color);
}

.hero-banner {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    background-image: linear-gradient(180deg, rgba(11, 18, 32, 0.5), rgba(11, 18, 32, 0.7)),
        url(../images/hero-background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--border-color);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-banner-content {
    position: relative;
    padding: 3.25rem 0;
    text-align: center;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-heading {
    margin: 0;
    font-size: clamp(2rem, 4.2vw, 3.25rem);
    letter-spacing: 0.2px;
    animation: slideInUp 1s ease-out forwards;
}

.hero-subheading {
    margin: 0.9rem auto 0;
    max-width: 58ch;
    color: var(--text-light);
    font-size: 1.05rem;
    animation: slideInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.hero-actions {
    margin-top: 1.4rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.15rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: rgba(244, 163, 27, 0.18);
    border-color: rgba(244, 163, 27, 0.5);
    color: var(--text-color);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--text-color);
}

/* Royal Indian Featured Categories Showcase */
.featured-categories-showcase {
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.95), rgba(15, 23, 42, 0.98));
    padding: 5rem 0;
    overflow: hidden;
}

.featured-categories-showcase .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, #f4a31b, #d4af37, #c17817);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.featured-cards-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.featured-card-large {
    position: relative;
    display: block;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform-origin: center;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card-large.scroll-visible {
    opacity: 1;
}

.featured-card-large[data-direction="left"].scroll-visible {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.featured-card-large[data-direction="right"].scroll-visible {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.featured-card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.1) saturate(1.18);
}

.featured-card-large:hover .featured-card-image {
    transform: scale(1.08);
    filter: brightness(1.15) saturate(1.22);
}

.featured-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(139, 0, 0, 0.25) 0%,
        rgba(120, 40, 31, 0.22) 35%,
        rgba(11, 18, 32, 0.32) 100%);
    transition: opacity 0.4s ease;
}

.featured-card-large:hover .featured-card-overlay {
    opacity: 0.6;
}

.featured-card-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    color: white;
    z-index: 2;
}

.featured-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #d4af37, #f4a31b);
    color: rgba(11, 18, 32, 0.95);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 6px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.featured-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin: 0 0 1rem;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.featured-card-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.5rem;
    max-width: 500px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.featured-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #f4a31b;
    font-size: 1.05rem;
    transition: gap 0.3s ease;
}

.featured-card-large:hover .featured-card-cta {
    gap: 1rem;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.scroll-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .featured-card-large {
        height: 550px;
    }
    
    .featured-card-content {
        padding: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .featured-card-large {
        height: 600px;
    }
}

.dish-card,
.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lux);
}

.dish-card {
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    will-change: transform;
}

.dish-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

.dish-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid var(--border-color);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dish-card:hover .dish-img {
    transform: scale(1.08);
}

.dish-body {
    padding: 1rem 1rem 1.05rem;
}

.dish-top {
    display: flex;
    gap: 0.75rem;
    align-items: baseline;
    justify-content: space-between;
}

.dish-name {
    margin: 0;
    font-size: 1.05rem;
}

.dish-price {
    font-weight: 800;
    color: rgba(244, 163, 27, 0.95);
    white-space: nowrap;
}

.dish-desc {
    margin: 0.55rem 0 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.chef-badge {
    margin-top: 0.7rem;
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(200, 170, 110, 0.5);
    background: rgba(200, 170, 110, 0.12);
    color: var(--text-color);
    font-weight: 700;
    font-size: 0.85rem;
}

.about-media {
    display: grid;
    align-items: center;
}

.about-extended {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    text-align: justify;
}

.about-extended:last-of-type {
    margin-bottom: 2rem;
}

.about-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lux);
    background: rgba(255, 255, 255, 0.04);
}

.review-card {
    padding: 1.15rem;
}

.stars {
    color: rgba(200, 170, 110, 0.95);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.review-quote {
    margin: 0;
    color: var(--text-light);
}

.review-name {
    margin-top: 0.8rem;
    font-weight: 800;
}

/* Footer upgrade */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.25rem 0 0.85rem;
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    width: 180px;
    height: auto;
    border-radius: 0;
}

.site-footer a {
    color: var(--text-color);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.4);
    font-weight: bold;
}

.copyright {
    margin: 0.5rem 0 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    text-shadow: 0 2px 8px rgba(234, 193, 113, 0.8);
}

@media (min-width: 860px) {
    .footer-grid {
        grid-template-columns: 1fr 2fr 1fr;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Visually hidden (accessible) text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.65;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Generic section spacing */
.section {
    padding: calc(var(--spacing-lg) + 0.5rem) 0;
}

.section-title {
    font-family: var(--font-display);
    color: var(--text-color);
    font-size: 1.8rem;
    letter-spacing: 0.2px;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    max-width: 70ch;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.grid-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 600px) {
    .grid-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .grid-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Header */
.site-header {
    background: linear-gradient(135deg, rgba(11, 18, 32, 0.2), rgba(44, 62, 80, 0.2)),
        url(../images/background_logo.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.site-logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .site-logo {
        max-width: 260px;
    }
}

.site-header h1 {
    margin-bottom: var(--spacing-sm);
    font-size: 2rem;
}

.tagline {
    font-style: italic;
    opacity: 0.9;
}

/* Hero */
.hero {
    padding: calc(var(--spacing-lg) + 0.5rem) 0;
    background:
        radial-gradient(900px 500px at 12% 0%, rgba(241, 196, 15, 0.22), rgba(241, 196, 15, 0) 60%),
        radial-gradient(800px 500px at 90% 20%, rgba(211, 84, 0, 0.10), rgba(211, 84, 0, 0) 55%),
        linear-gradient(180deg, rgba(249, 249, 249, 1), rgba(249, 249, 249, 0));
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

@media (min-width: 900px) {
    .hero-layout {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hero-title {
    color: var(--secondary-color);
    font-family: var(--font-display);
    font-size: 2.1rem;
    line-height: 1.15;
    margin-bottom: var(--spacing-sm);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.6rem;
    }
}

.hero-text {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    max-width: 56ch;
    font-size: 1.05rem;
}

.hero-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.hero-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.hero-img:nth-child(1) {
    grid-column: 1 / -1;
    height: 220px;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.site-nav-link {
    color: white;
    text-decoration: none;
    padding: 0.55rem 1.05rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(241, 196, 15, 0.55);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.16);
    border-color: rgba(241, 196, 15, 0.9);
    transform: translateY(-1px);
}

.site-nav-link.active {
    background-color: rgba(241, 196, 15, 0.16);
    border-color: var(--accent-gold);
    color: white;
}

/* Navigation */
.category-nav {
    background: rgba(11, 18, 32, 0.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: none;
    position: sticky;
    top: 64px;
    z-index: 40;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.category-list {
    display: flex;
    list-style: none;
    padding: var(--spacing-md) 0;
    gap: var(--spacing-md);
    white-space: nowrap;
}

.category-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: var(--spacing-sm) var(--spacing-md);
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-color);
    border-radius: 999px;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background-color: rgba(244, 163, 27, 0.14);
    border-color: rgba(244, 163, 27, 0.45);
}

.category-btn.active {
    background-color: rgba(244, 163, 27, 0.18);
    border-color: rgba(244, 163, 27, 0.6);
    color: var(--text-color);
}

@media (max-width: 520px) {
    .category-nav {
        top: 58px;
    }
}

/* Main Layout */
.main-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}

/* Simple page layout used by About/Directions */
.page-layout {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}

.page-title {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.page-subtitle {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.page-note {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.page-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: var(--spacing-lg);
}

.page-card + .page-card {
    margin-top: var(--spacing-lg);
}

.page-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.primary-link {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--primary-color);
    cursor: pointer;
}

.primary-link:hover {
    filter: brightness(0.95);
}

.primary-link:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Contact form */
.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-field {
    margin-bottom: var(--spacing-md);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font: inherit;
    background-color: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.field-error {
    display: block;
    min-height: 1rem;
    margin-top: 0.35rem;
    color: var(--primary-color);
    font-size: 0.85rem;
}

.contact-form [aria-invalid="true"] {
    border-color: var(--primary-color);
}

.form-status {
    margin-top: var(--spacing-md);
    color: var(--text-light);
}

@media (min-width: 768px) {
    .main-layout {
        grid-template-columns: 250px 1fr;
    }
}

/* Filters Panel */
.filters-panel {
    background: var(--card-bg);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    height: fit-content;
    border: 1px solid rgba(241, 196, 15, 0.35);
}

.filter-group {
    margin-bottom: var(--spacing-lg);
}

.filter-group h3 {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: var(--spacing-sm);
    display: inline-block;
}

.checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    cursor: pointer;
}

.checkbox-label input {
    margin-right: var(--spacing-sm);
    accent-color: var(--primary-color);
    width: 18px;
    height: 18px;
}

.sort-select {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

.sort-select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* Menu Grid */
.menu-content h2 {
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
    font-family: var(--font-display);
    letter-spacing: 0.2px;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 600px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Menu Card */
.menu-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: calc(var(--spacing-md) + 0.2rem);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.menu-card {
    box-shadow: var(--shadow-soft);
    border-top: 3px solid rgba(241, 196, 15, 0.65);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
}

.item-name {
    font-weight: 700;
    font-size: 1.18rem;
    color: var(--secondary-color);
}

.item-price {
    font-weight: 800;
    color: var(--primary-color);
    white-space: nowrap;
    margin-left: var(--spacing-sm);
    letter-spacing: 0.2px;
}

.item-desc {
    color: var(--text-light);
    font-size: 0.98rem;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: auto;
}

.badge {
    font-size: 0.72rem;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    font-weight: 700;
    background-color: rgba(241, 196, 15, 0.14);
    color: var(--secondary-color);
    border: 1px solid rgba(241, 196, 15, 0.45);
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.badge.gf,
.badge.v,
.badge.nf,
.badge.df {
    background-color: rgba(241, 196, 15, 0.14);
    color: var(--secondary-color);
    border-color: rgba(241, 196, 15, 0.55);
}

/* Footer */
.site-footer {
    background: url(../images/background_logo.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: var(--spacing-lg) 0;
    margin-top: var(--spacing-lg);
    text-align: center;
}

.footer-info p {
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.footer-info {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.disclaimer {
    margin-top: var(--spacing-md);
    font-size: 0.8rem;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--spacing-lg);
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Responsive map embed */
.map-embed {
    margin-top: var(--spacing-md);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-embed iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}
/* ===================== */
/* About Page Styles    */
/* ===================== */

.about-page {
    padding-top: 64px;
}

.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 60px;
}

.about-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.about-section {
    padding: 60px 20px;
}

.about-section.accent-bg {
    background: rgba(15, 23, 42, 0.5);
}

.about-heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 28px;
    font-weight: 700;
}

.about-heading.centered {
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: justify;
}

.about-text.centered-text {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-text.highlight-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 24px;
    padding: 24px;
    background: rgba(211, 84, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about-content {
    order: 2;
}

.about-image-wrapper {
    order: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.about-feature-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

/* Philosophy Grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.philosophy-card {
    background: var(--card-bg);
    padding: 32px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(211, 84, 0, 0.15);
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(211, 84, 0, 0.2);
}

.philosophy-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.philosophy-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.philosophy-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(248, 250, 252, 0.8);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    background: var(--card-bg);
    padding: 20px 24px;
    border-radius: 8px;
    font-size: 1.05rem;
    color: var(--text-color);
    border-left: 3px solid var(--primary-color);
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateX(8px);
    background: rgba(15, 23, 42, 0.8);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.1) 0%, rgba(199, 115, 12, 0.1) 100%);
    padding: 80px 20px !important;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.cta-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 24px 0 32px;
    font-style: italic;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 84, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 84, 0, 0.3);
}

/* Special Orders Section */
.special-orders {
    padding: 40px 20px !important;
}

.special-orders-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid rgba(211, 84, 0, 0.2);
}

.special-orders-card .about-heading {
    margin-bottom: 20px;
}

.special-orders-card .about-text {
    text-align: center;
    margin-bottom: 28px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .about-content {
        order: 1;
    }

    .about-image-wrapper {
        order: 2;
    }

    .about-section {
        padding: 80px 40px;
    }

    .about-hero {
        padding: 120px 40px;
    }
}

@media (max-width: 520px) {
    .about-hero {
        padding: 60px 20px;
    }

    .about-section {
        padding: 40px 20px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }
}