/* ==========================================================================
   IDRIS CATERERS - BRAND DESIGN SYSTEM & STYLE SHEET
   Aesthetic: Luxury Dark & Gold (Deep Charcoal, Metallic Golds, Crisp White)
   ========================================================================== */

/* 1. Reset & Core Variable Definition */
:root {
    --color-bg-dark: #121212;
    --color-bg-card: #1e1e1e;
    --color-bg-card-light: #282828;
    --color-gold: #d4af37;
    --color-gold-hover: #bda030;
    --color-gold-light: #f4e8c1;
    --color-text-light: #ffffff;
    --color-text-muted: #aaaaaa;
    --color-text-dark: #222222;
    --color-border: #333333;
    --color-border-gold: #d4af373f;
    --color-success: #2ecc71;
    --color-error: #e74c3c;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.15);

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1440px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    font-family: var(--font-body);
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
}

body {
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 95%;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.mt-5 {
    margin-top: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.block {
    display: block;
}

.text-white {
    color: #ffffff !important;
}

/* 2. Typography & Section Headings */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.highlight {
    color: var(--color-gold);
    background: linear-gradient(135deg, #fff 30%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-badge {
    display: inline-block;
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.divider {
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 1.5rem 0;
}

.divider.mx-auto {
    margin: 1.5rem auto 3rem;
}

body.no-scroll {
    overflow: hidden;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--color-gold);
    border-bottom-color: var(--color-gold);
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.preloader-ring::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-left-color: rgba(212, 175, 55, 0.5);
    border-right-color: rgba(212, 175, 55, 0.5);
    animation: spin 2s linear infinite reverse;
}

.preloader-logo {
    width: 65px;
    height: 65px;
    object-fit: contain;
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
        opacity: 1;
        filter: drop-shadow(0 0 10px var(--color-gold));
    }
}

/* 3. Top Announcement Bar */
.top-bar {
    background-color: #000000;
    border-bottom: 1px solid var(--color-border);
    padding: 0.5rem 0;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-muted);
}

.announcement {
    color: var(--color-gold);
    font-weight: 500;
}

.star-icon {
    font-size: 0.85rem;
    vertical-align: middle;
}

.certification span {
    margin: 0 0.5rem;
}

/* 4. Sticky Header Navigation */
.header {
    background-color: rgba(18, 18, 18, 0.98);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.brand-logo-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--color-gold);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-gold);
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.35);
    /* Zoom in to crop transparent outer spacing */
}

.brand-names {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: 'Cinzel Decorative', cursive, serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #ffffff;
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--color-gold);
    text-transform: uppercase;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    /* Reduced from 2rem to accommodate Gallery link nicely */
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

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

.nav-mobile-social,
.nav-close-btn {
    display: none;
}

.header-ctas {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-phone span {
    white-space: nowrap;
    flex-shrink: 0;
}

.header-phone:hover {
    color: var(--color-gold);
}

.icon-phone {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.cta-button {
    background: linear-gradient(135deg, var(--color-gold) 0%, #bda030 100%);
    color: var(--color-text-dark);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 110;
}

.burger-menu .bar {
    width: 100%;
    height: 2.5px;
    background-color: #ffffff;
    border-radius: 10px;
    transition: var(--transition-smooth);
}

/* 5. Hero Section & Quote Form */
.hero-section {
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 2px solid var(--color-border);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    align-self: flex-start;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.15;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 0.5rem 0;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #eeeeee;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    padding: 3px;
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: #25d366;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Quote Form Styling */
.hero-form-container {
    perspective: 1000px;
}

.form-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.45) 0%, rgba(15, 15, 15, 0.65) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1), 0 15px 35px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.form-card:hover {
    border-color: rgba(212, 175, 55, 0.65);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15), 0 20px 45px rgba(212, 175, 55, 0.12);
}

.form-title {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.form-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.8rem;
}

.form-error-banner {
    background-color: rgba(231, 76, 60, 0.15);
    border: 1px solid var(--color-error);
    color: #ff8f8f;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: #ffffff;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-group select option {
    background-color: var(--color-bg-card);
    color: #ffffff;
}

.validation-error {
    color: var(--color-error);
    font-size: 0.75rem;
    margin-top: 0.2rem;
    display: none;
}

.submit-btn {
    background: linear-gradient(135deg, var(--color-gold) 0%, #bda030 100%);
    color: var(--color-text-dark);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    padding: 1rem;
    border-radius: 50px;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-gold);
    margin-top: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.form-footer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 1.5rem;
}

/* 6. Stats Section */
.stats-section {
    background-color: #0b0b0b;
    border-bottom: 1px solid var(--color-border);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    border-right: 1px solid var(--color-border);
    padding: 1rem 0;
}

.stat-card.clone {
    display: none;
}

.stat-card:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.stat-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* 7. About Section */
.about-section {
    padding: 8rem 0;
    background-color: var(--color-bg-dark);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-main-img {
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    border: 2px solid var(--color-border);
}

.about-experience-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #bda030 100%);
    color: var(--color-text-dark);
    padding: 1.8rem 2.2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
}

.about-experience-badge .num {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

.about-experience-badge .txt {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 0.25rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.paragraph {
    color: var(--color-text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.about-subtitle {
    font-size: 1.4rem;
    color: #ffffff;
    margin-top: 0.5rem;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.about-point {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.point-icon-box {
    background-color: rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}

.about-point h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.about-point p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

/* 8. Services Section */
.services-section {
    padding: 8rem 0;
    background-color: #0b0b0b;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-image-box {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.service-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.service-card-title {
    font-size: 1.35rem;
    color: #ffffff;
}

.service-card-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
}

.service-features li {
    font-size: 0.82rem;
    color: var(--color-gold-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '◈';
    color: var(--color-gold);
    font-size: 0.7rem;
}

/* 9. Menu Bank Section */
.menu-section {
    padding: 8rem 0;
    background-color: var(--color-bg-dark);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-btn {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    border-color: var(--color-gold);
    color: #ffffff;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--color-gold) 0%, #bda030 100%);
    color: var(--color-text-dark);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.menu-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.menu-category {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.menu-category:hover {
    border-color: var(--color-border-gold);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.menu-cat-title {
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--color-gold);
    padding-left: 0.75rem;
}

.menu-cat-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
}

.item-dots {
    flex-grow: 1;
    border-bottom: 1px dashed var(--color-border);
    margin: 0 0.75rem;
    align-self: flex-end;
    margin-bottom: 5px;
}

.item-tag {
    font-size: 0.75rem;
    color: var(--color-gold);
    background-color: rgba(212, 175, 55, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    flex-shrink: 0;
    font-weight: 600;
}

.item-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gold-light);
}

.gold-border-btn {
    display: inline-block;
    border: 1.5px solid var(--color-gold);
    color: var(--color-gold);
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.gold-border-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-text-dark);
    box-shadow: var(--shadow-gold);
}

/* Custom Menu Poster Card Styles */
.menu-poster-card {
    background: linear-gradient(135deg, #181818 0%, #0d0d0d 100%);
    color: #ffffff;
    border-radius: 24px;
    padding: 3.5rem 3rem;
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.25), 0 25px 60px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.menu-poster-card:hover {
    transform: translateY(-4px);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.4), 0 30px 70px rgba(212, 175, 55, 0.12);
}

/* Fleur-de-lis subtle background pattern */
.menu-poster-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.012;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 100 100'%3E%3Cpath fill='%23ffffff' d='M50 20c-5.5 10-10 16-15 16S20 30 20 20s6.5-12 15-12 15 2 15 12zm0 0c5.5 10 10 16 15 16s15-6 15-16-6.5-12-15-12-15 2-15 12zm0 25c-8 8-15 15-15 25h30c0-10-7-17-15-25z'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* SVG Corner Mandalas */
.menu-mandala {
    position: absolute;
    width: 220px;
    height: 220px;
    opacity: 0.22;
    pointer-events: none;
    z-index: 1;
}

.menu-mandala-tl {
    top: -60px;
    left: -60px;
}

.menu-mandala-br {
    bottom: -60px;
    right: -60px;
}

/* Package Color Themes */
.menu-poster-card.classic {
    border: 12px solid #5a005a;
    color: #d466ff;
    /* mandala & checks use color inheritance */
}

.menu-poster-card.classic .menu-title,
.menu-poster-card.classic .menu-includes-header {
    color: #d466ff;
}

.menu-poster-card.classic .check-icon {
    background-color: #ba4de6;
}

.menu-poster-card.premium {
    border: 12px solid #14223d;
    color: var(--color-gold);
    /* Gold accent for mandala & checks */
}

.menu-poster-card.premium .menu-title,
.menu-poster-card.premium .menu-includes-header {
    color: var(--color-gold);
}

.menu-poster-card.premium .check-icon {
    background-color: #bca03c;
}

.menu-poster-card.golden {
    border: 12px solid #b34a00;
    color: #ffa64d;
}

.menu-poster-card.golden .menu-title,
.menu-poster-card.golden .menu-includes-header {
    color: #ffa64d;
}

.menu-poster-card.golden .check-icon {
    background-color: #ffa64d;
}

.menu-poster-card.diamond {
    border: 12px solid #004d99;
    color: #5cd6ff;
}

.menu-poster-card.diamond .menu-title,
.menu-poster-card.diamond .menu-includes-header {
    color: #5cd6ff;
}

.menu-poster-card.diamond .check-icon {
    background-color: #5cd6ff;
}

/* Poster Header Section */
.menu-poster-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.08);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.menu-poster-logo-area {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.menu-poster-logo-glow {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    padding: 2.5px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #bda030 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    /* Added to clip transparent margins */
}

.menu-poster-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1.5px solid #ffffff;
    object-fit: cover;
    background-color: #ffffff;
    /* Fallback white background */
    transform: scale(1.35);
    /* Zoom in to crop transparent outer spacing */
}

.menu-poster-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 1.5px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.menu-poster-brand span {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--color-text-muted);
    margin-top: 3px;
}

.menu-poster-contact {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #eeeeee;
    text-align: right;
}

.menu-poster-contact span {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
}

.menu-poster-contact i {
    font-size: 0.95rem;
    vertical-align: middle;
}

.menu-poster-contact span:first-child i {
    color: #25d366;
    /* Phone icon style */
}

.menu-poster-contact span:last-child i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Poster Main Title Area */
.menu-poster-main-info {
    text-align: center;
    margin-bottom: 2.2rem;
    position: relative;
    z-index: 2;
}

.menu-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    line-height: 1.1;
}

.menu-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-gold-light);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Includes list */
.menu-includes-header {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1.2px;
    margin-bottom: 1.8rem;
    text-align: left;
    position: relative;
    z-index: 2;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.6rem;
}

.menu-poster-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 3rem;
    text-align: left;
    position: relative;
    z-index: 2;
}

.menu-poster-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.check-icon i {
    font-weight: bold;
}

.item-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #eeeeee;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    line-height: 1.3;
}

/* Responsive updates for menu posters */
@media (max-width: 768px) {
    .menu-poster-card {
        padding: 2.2rem 1.5rem;
        border-width: 10px !important;
        border-radius: 16px;
    }

    .menu-poster-header {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
        text-align: center;
        border-bottom-style: solid;
        padding-bottom: 1.25rem;
    }

    .menu-poster-logo-area {
        flex-direction: column;
        gap: 0.75rem;
    }

    .menu-poster-brand {
        text-align: center;
        align-items: center;
    }

    .menu-poster-contact {
        text-align: center;
        align-items: center;
        width: 100%;
        gap: 0.25rem;
    }

    .menu-poster-contact span {
        justify-content: center;
    }

    .menu-title {
        font-size: 1.85rem;
    }

    .menu-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1.2px;
    }

    .menu-poster-items {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .menu-mandala {
        width: 150px;
        height: 150px;
    }

    .menu-mandala-tl {
        top: -40px;
        left: -40px;
    }

    .menu-mandala-br {
        bottom: -40px;
        right: -40px;
    }
}

/* 10. Reviews Section */
.reviews-section {
    padding: 8rem 0;
    background-color: #0b0b0b;
    border-top: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.section-badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 2rem;
}

.badge-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0.25) 50%, rgba(212, 175, 55, 0) 100%);
}

.reviews-section .section-badge {
    margin-bottom: 0;
    white-space: nowrap;
}

.reviews-header-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    margin-bottom: 3.5rem;
    padding-left: 0.5rem;
}

.reviews-header-quote {
    width: 90px;
    height: auto;
    opacity: 0.15;
    /* Subtle gold quote watermark */
    flex-shrink: 0;
}

.reviews-header-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.reviews-carousel-container {
    position: relative;
    width: 100%;
}

.reviews-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 1.5rem 0.5rem;
    /* Vertical padding prevents hover elevation from clipping */
}

.reviews-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.review-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.45) 0%, rgba(15, 15, 15, 0.65) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    transition: var(--transition-smooth);
    flex: 0 0 100%;
    /* Default mobile: 1 slide */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    min-height: 340px;
}

@media (min-width: 768px) {
    .review-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
        /* Tablet: 2 slides */
    }
}

@media (min-width: 1025px) {
    .review-card {
        flex: 0 0 calc((100% - 3rem) / 3);
        /* Desktop: 3 slides */
    }
}

.review-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15), 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.reviewer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background-color: rgba(212, 175, 55, 0.15);
    border: 1.5px solid var(--color-gold);
    border-radius: 50%;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.quote-icon {
    width: 32px;
    height: auto;
    opacity: 0.35;
    /* Subtle yellow double quote accent */
    align-self: flex-start;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    display: block;
    user-select: none;
}

.review-text {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    flex-grow: 1;
}

.review-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
    margin-top: auto;
}

.google-review-badge {
    height: 28px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.review-card:hover .google-review-badge {
    opacity: 1;
}

/* Reviews Carousel Navigation Arrows */
.reviews-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    z-index: 10;
}

.reviews-carousel-nav:hover {
    background-color: var(--color-gold);
    color: var(--color-text-dark);
    border-color: var(--color-gold);
}

.reviews-carousel-nav.prev {
    left: -20px;
}

.reviews-carousel-nav.next {
    right: -20px;
}

@media (max-width: 1024px) {
    .reviews-carousel-nav {
        display: none;
        /* Hide arrows on touch viewports */
    }
}

.reviews-action {
    display: flex;
    justify-content: center;
    margin-top: 3.5rem;
}

@media (max-width: 768px) {
    .reviews-header-main {
        padding-left: 0;
    }

    .reviews-header-quote {
        position: absolute;
        top: -15px;
        left: -10px;
        width: 70px;
        opacity: 0.08;
        /* softer overlap opacity */
        z-index: -1;
    }
}

/* 11. FAQ Section */
.faq-section {
    padding: 8rem 0;
    background-color: var(--color-bg-dark);
}

.faq-grid {
    max-width: 800px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.faq-toggle-icon {
    font-size: 1.4rem;
    color: var(--color-gold);
    transition: var(--transition-smooth);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-answer p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    padding-bottom: 1.5rem;
    line-height: 1.6;
}

/* Active FAQ states */
.faq-item.active {
    border-color: var(--color-border-gold);
}

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

/* 12. Footer Section */
.footer {
    background-color: #050505;
    border-top: 2px solid var(--color-border);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand .brand-logo-wrapper {
    width: 60px;
    height: 60px;
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link-icon {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

.social-link-icon:hover {
    background-color: var(--color-gold);
    color: var(--color-text-dark);
    border-color: var(--color-gold);
}

.social-link-icon svg {
    width: 20px;
    height: 20px;
}

.footer-title {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
    margin-bottom: 0.15rem;
}

.contact-item .value {
    font-size: 0.92rem;
    color: #ffffff;
    font-weight: 500;
}

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

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

/* 13. Floating Action Buttons (WhatsApp / Call) */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
    /* Boosted to float above footer & all sections */
}

body.nav-open .floating-actions {
    display: none !important;
    /* Hide widgets when menu is open to prevent overlapping */
}

.floating-wa,
.floating-call {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.floating-wa {
    background-color: #25d366;
}

.floating-wa:hover {
    background-color: #20ba5a;
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.floating-call {
    background-color: var(--color-gold);
    color: var(--color-text-dark);
}

.floating-call:hover {
    background-color: var(--color-gold-hover);
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
}

.floating-actions svg {
    width: 26px;
    height: 26px;
}

/* 14. Success Modal Popup Window */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

.modal-card {
    background-color: var(--color-bg-card);
    border: 2px solid var(--color-gold);
    border-radius: 12px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(46, 204, 113, 0.15);
    border: 2px solid var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.modal-check-icon {
    width: 36px;
    height: 36px;
    color: var(--color-success);
}

.modal-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.modal-message {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.modal-summary {
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 1.25rem;
    margin-bottom: 2rem;
    text-align: left;
}

.modal-summary p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: #eeeeee;
}

.modal-summary p:last-child {
    margin-bottom: 0;
}

.modal-cta-box {
    margin-bottom: 2rem;
}

.modal-cta-info {
    font-size: 0.8rem;
    color: var(--color-gold-light);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.modal-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #25d366;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    width: 100%;
    justify-content: center;
}

.modal-wa-btn:hover {
    background-color: #20ba5a;
}

.close-modal-btn {
    background-color: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-decoration: underline;
    cursor: pointer;
    font-family: var(--font-body);
}

.close-modal-btn:hover {
    color: #ffffff;
}

/* 15. Entrance & Animation Effects */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

.fade-in-left,
.fade-in-right,
.fade-in-up {
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

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

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

.fade-in-up {
    transform: translateY(40px);
}

.fade-in-left.animated,
.fade-in-right.animated,
.fade-in-up.animated {
    opacity: 1;
    transform: translate(0, 0);
}


/* ==========================================================================
   16. Media Queries & Mobile Responsiveness
   ========================================================================== */

/* Small Desktop/Laptop Header Spacing Optimizations (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
    .header-container {
        width: 95%;
    }

    .nav-menu {
        gap: 0.85rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .header-ctas {
        gap: 1rem;
    }

    .cta-button {
        padding: 0.65rem 1.1rem;
        font-size: 0.8rem;
    }

    .brand-title {
        font-size: 1.15rem;
    }
}

/* Tablet & Mobile Breakpoint (Under 1024px) */
@media (max-width: 1024px) {
    .top-bar {
        display: none;
        /* Hide topbar on mobile to conserve screen space */
    }

    .header-container {
        height: 70px;
    }

    .brand-title {
        font-size: 1.1rem;
    }

    .brand-subtitle {
        font-size: 0.6rem;
    }

    .brand-logo-wrapper {
        width: 44px;
        height: 44px;
    }

    /* Navigation Bar Slide Drawer */
    .burger-menu {
        display: flex;
        z-index: 1010;
        /* Boosted above drawer z-index */
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100dvh;
        background-color: rgba(18, 18, 18, 0.85);
        /* Premium glassmorphism dark background */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-left: 1px solid rgba(255, 215, 0, 0.15);
        /* Subtle gold border on left edge */
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 2.5rem 3rem;
        /* Extra padding for elegant spacing */
        gap: 1.5rem;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
        z-index: 1000;
        visibility: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
    }

    .nav-menu.open {
        right: 0;
        visibility: visible;
        /* Show when active */
    }

    body.nav-open {
        overflow: hidden !important;
    }

    body.nav-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 90;
        transition: opacity 0.3s ease;
    }

    .nav-link {
        font-size: 1.25rem;
        font-weight: 500;
        color: #ffffff;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 1rem;
        opacity: 0;
        /* For staggered animation */
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
    }

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

    .nav-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255, 215, 0, 0.1);
        border: 1px solid rgba(255, 215, 0, 0.2);
        color: var(--color-gold);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1010;
        transition: var(--transition-smooth);
    }

    .nav-close-btn:hover {
        background: var(--color-gold);
        color: var(--color-text-dark);
    }

    .nav-close-btn svg {
        width: 24px;
        height: 24px;
    }

    .nav-menu.open .nav-link {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.open .nav-link:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.open .nav-link:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-menu.open .nav-link:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-menu.open .nav-link:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-menu.open .nav-link:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-menu.open .nav-link:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-mobile-social {
        display: flex;
        gap: 1.5rem;
        margin-top: auto;
        /* Push to bottom of drawer */
        padding-top: 1.5rem;
        width: 100%;
        justify-content: center;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease 0.45s, transform 0.4s ease 0.45s;
    }

    .nav-menu.open .nav-mobile-social {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-mobile-social .social-link-icon {
        color: var(--color-gold);
        background: rgba(255, 215, 0, 0.05);
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid rgba(255, 215, 0, 0.15);
        transition: all 0.3s ease;
    }

    .nav-mobile-social .social-link-icon svg,
    .nav-mobile-social .social-link-icon i {
        width: 20px;
        height: 20px;
    }

    /* Hide original burger menu when open, rely on dedicated close button */
    .burger-menu.open {
        opacity: 0;
        pointer-events: none;
    }

    .header-phone,
    .header-ctas .cta-button,
    .header-social {
        display: none !important;
        /* Hide desktop specific buttons & override inline styles */
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-features {
        align-items: flex-start;
        display: inline-flex;
    }

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

    .stat-card {
        border-right: none;
    }

    .stat-card:nth-child(2n) {
        border-right: none;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

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

    .menu-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Mobile Breakpoint (Under 768px) */
@media (max-width: 768px) {

    .badge {
        display: none !important;
    }

    /* Systematic Typography Scale */
    h1,
    .hero-title {
        font-size: 1.85rem !important;
    }

    h2,
    .section-title {
        font-size: 1.8rem !important;
    }

    .section-subtitle {
        font-size: 0.95rem !important;
    }

    .about-subtitle {
        font-size: 1.2rem !important;
    }

    .service-card-title {
        font-size: 1.15rem !important;
    }

    .reviews-header-text .section-title {
        font-size: 1.7rem !important;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .whatsapp-btn {
        width: 100%;
    }

    .form-card {
        padding: 1.5rem;
    }

    /* Stats Section Marquee */
    .stats-section {
        padding: 2.5rem 0;
    }

    .services-section,
    .menu-section {
        overflow-x: hidden;
        /* Prevent negative-margin grids from causing horizontal page scroll */
    }

    .stats-marquee-container {
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .stats-marquee-track {
        display: flex;
        flex-direction: row;
        width: max-content;
        max-width: none;
        margin: 0;
        padding: 0;
        gap: 0;
        animation: stats-marquee 20s linear infinite;
    }

    .stat-card {
        flex: 0 0 240px;
        width: 240px;
        padding: 0.5rem 1rem;
        border-right: 1px solid var(--color-border);
        border-bottom: none;
    }

    .stat-card.clone {
        display: block;
    }

    .stat-num {
        font-size: 2.8rem;
    }

    .about-experience-badge {
        bottom: -15px;
        right: 15px;
        padding: 1rem 1.5rem;
    }

    .about-experience-badge .num {
        font-size: 2rem;
    }

    /* Services Swipeable Snap Carousel */
    .services-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 1.5rem;
        padding: 0.5rem 5% 1.5rem;
        margin-left: -5.5%;
        margin-right: -5.5%;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        flex: 0 0 82%;
        height: auto;
        transform: translateZ(0);
        will-change: transform;
    }

    .service-image-box {
        height: 180px;
    }

    .service-body {
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .service-features {
        padding-top: 0.75rem;
    }

    .service-features li {
        font-size: 0.78rem;
    }

    /* Menu Showcase Tab Navigation (Horizontal Scroll) */
    .menu-tabs {
        display: flex;
        flex-direction: row;
        justify-content: center;
        overflow-x: auto;
        white-space: nowrap;
        gap: 0.5rem;
        padding: 0.5rem 1.5rem;
        margin-left: -5.5%;
        margin-right: -5.5%;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

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

    /* Gallery Carousel Mobile */
    .gallery-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 1rem;
        padding: 0.5rem 5% 1.5rem;
        margin-left: -5.5%;
        margin-right: -5.5%;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        flex: 0 0 85%;
    }

    .tab-btn {
        flex: 0 0 auto;
        text-align: center;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Menu Poster Card Mobile Scaling */
    .menu-poster-card {
        padding: 1.5rem 1rem !important;
        border-width: 5px !important;
        border-radius: 16px;
    }

    .menu-mandala {
        width: 90px !important;
        height: 90px !important;
    }

    .menu-mandala-tl {
        top: -30px !important;
        left: -30px !important;
    }

    .menu-mandala-br {
        bottom: -30px !important;
        right: -30px !important;
    }

    .menu-title {
        font-size: 1.6rem !important;
    }

    .item-text {
        font-size: 0.8rem !important;
    }

    .menu-poster-items {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .menu-category {
        padding: 1.5rem;
    }

    .menu-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .item-dots {
        display: none;
    }

    .item-name {
        white-space: normal;
    }

    /* Reviews Header Mobile Styling */
    .reviews-header-main {
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
    }

    .reviews-header-quote {
        display: none;
    }

    .reviews-header-text {
        text-align: center;
        align-items: center;
    }

    .badge-line {
        display: none;
    }

    .reviews-section .section-badge {
        border: none;
        background: transparent;
        padding: 0;
        margin-bottom: 0;
    }
}

/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 900;
}

.floating-wa {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
}

.floating-wa:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.floating-wa svg {
    width: 34px;
    height: 34px;
}

/* ==========================================================================
   AI CHAT BOT STYLING (GLOSSY GLASSMORPHISM)
   ========================================================================== */
.floating-chat-container {
    position: relative;
    display: flex;
    align-items: center;
}

.floating-chat-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold) 0%, #bda030 100%);
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    outline: none;
}

.floating-chat-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.floating-chat-btn i {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 1.8rem;
    line-height: 1;
    display: inline-block;
    color: #ffffff !important;
}

/* Tooltip Bubble */
.chat-tooltip {
    position: absolute;
    right: 75px;
    white-space: nowrap;
    background-color: #ffffff;
    color: #121212;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    opacity: 0;
    top: 50%;
    transform: translateY(-50%) scale(0.85);
    transform-origin: right center;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.chat-tooltip.show {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    animation: tooltipFloat 3s ease-in-out infinite;
}

.chat-tooltip::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 7px;
    border-style: solid;
    border-color: transparent transparent transparent #ffffff;
}

@media (max-width: 768px) {
    .chat-tooltip {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        right: 65px;
    }
}

.typing-cursor {
    animation: cursorBlink 1s infinite step-end;
    color: var(--color-gold);
    font-weight: 700;
    margin-left: 2px;
}

@keyframes cursorBlink {

    from,
    to {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@keyframes tooltipEntrance {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

@keyframes tooltipFloat {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-58%) scale(1);
    }
}

/* Chat Window Container */
.chat-window-overlay {
    position: fixed;
    bottom: 95px;
    right: 20px;
    width: 380px;
    max-width: calc(100vw - 40px);
    height: 500px;
    max-height: calc(100vh - 140px);
    z-index: 1000;
    display: none;
    perspective: 1000px;
}

.chat-window-overlay.open {
    display: block;
    animation: slideInChat 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slideInChat {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

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

.chat-window-overlay .chat-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.85) 0%, rgba(15, 15, 15, 0.95) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1), 0 20px 50px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    overflow: hidden;
}

.chat-header {
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-bot-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-bot-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.chat-bot-avatar i {
    font-size: 1.25rem;
    color: var(--color-gold);
}

.chat-bot-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-heading);
}

.chat-bot-status {
    font-size: 0.7rem;
    color: var(--color-gold-light);
    display: block;
}

.chat-close-btn {
    background: transparent;
    border: none;
    color: #aaaaaa;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.chat-close-btn:hover {
    color: #ffffff;
}

.chat-messages {
    flex-grow: 1;
    padding: 1.2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scroll-behavior: smooth;
}

/* Custom Scrollbar for Chat */
.chat-messages::-webkit-scrollbar {
    width: 5px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 10px;
}

.chat-bubble {
    padding: 0.85rem 1.1rem;
    border-radius: 16px;
    max-width: 80%;
    font-size: 0.88rem;
    line-height: 1.5;
}

.chat-bubble.bot {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #eeeeee;
    align-self: flex-start;
    border-top-left-radius: 4px;
}

.chat-bubble.user {
    background: linear-gradient(135deg, var(--color-gold) 0%, #bda030 100%);
    color: var(--color-text-dark);
    align-self: flex-end;
    border-top-right-radius: 4px;
    font-weight: 600;
}

.chat-input-area {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 0.75rem;
}

.chat-input-area input {
    flex-grow: 1;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.75rem 1.2rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition-smooth);
}

.chat-input-area input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.chat-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.chat-send-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-text-dark);
    transform: scale(1.05);
}

.chat-send-btn svg {
    width: 18px;
    height: 18px;
    margin-right: 1px;
}

/* Typing Indicator */
.typing-bubble {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.85rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    align-self: flex-start;
    border-top-left-radius: 4px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background-color: #888888;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typingBounce {

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

    40% {
        transform: scale(1);
    }
}

@keyframes stats-marquee {
    0% {
        transform: translateX(0);
    }

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

/* ==========================================================================
   INSTAGRAM REELS SHOWCASE SECTION
   ========================================================================== */
.instagram-section {
    padding: 8rem 0;
    background-color: var(--color-bg-dark);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.instagram-container {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 3rem;
    align-items: center;
}

/* Left side: Instagram Profile Card */
.instagram-left {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.ig-mockup-link {
    display: block;
    width: 100%;
    max-width: 320px;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    animation: floatingMockup 6s ease-in-out infinite;
}

.ig-mockup-link:hover {
    transform: translateY(-8px) scale(1.03) rotateY(-5deg) rotateX(5deg);
}

.ig-mockup-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

.ig-mockup-link:hover .ig-mockup-img {
    transform: scale(1.01);
    filter: drop-shadow(0 20px 45px rgba(212, 175, 55, 0.35));
}

@keyframes floatingMockup {

    0%,
    100% {
        transform: translateY(0) rotate(-1.5deg);
    }

    50% {
        transform: translateY(-15px) rotate(1.5deg);
    }
}

/* Right side: Reels Carousel */
.instagram-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reels-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.reels-carousel-wrapper {
    position: relative;
    width: 100%;
}

.reels-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 0.75rem 0.5rem;
    width: 100%;
}

.reel-card {
    flex: 0 0 calc(50% - 0.75rem);
    aspect-ratio: 9/16;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.reel-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.reel-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #000;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.85) 100%);
    cursor: pointer;
}

.reel-instagram-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-smooth);
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.reel-instagram-badge:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(220, 39, 67, 0.45);
}

.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: 3;
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.reel-play-btn i {
    font-size: 2rem;
}

/* Play button overlay states */
.reel-card.paused .reel-play-btn {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(1);
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.75);
}

.reel-card.paused:hover .reel-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
    background: rgba(212, 175, 55, 0.95);
    color: var(--color-text-dark);
    border-color: var(--color-gold);
}

.reel-card.playing .reel-play-btn {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}

.reel-card.playing:hover .reel-play-btn {
    opacity: 0.75;
    transform: translate(-50%, -50%) scale(1);
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.reel-overlay {
    padding: 1.5rem 1.2rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.reel-caption {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reel-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-gold-light);
}

.reel-stats span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.reel-stats i {
    font-size: 0.95rem;
}

/* Carousel Nav Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    z-index: 10;
}

.carousel-nav:hover {
    background-color: var(--color-gold);
    color: var(--color-text-dark);
    border-color: var(--color-gold);
}

.carousel-nav.prev {
    left: -20px;
}

.carousel-nav.next {
    right: -20px;
}

/* Responsive adjustments for Instagram Section */
.mobile-reels-header {
    display: none;
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
    .instagram-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ig-mockup-link {
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    .reels-header {
        display: none;
    }

    .mobile-reels-header {
        display: block;
    }
}

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

    .carousel-nav.prev {
        left: -5px;
    }

    .carousel-nav.next {
        right: -5px;
    }
}

/* ==========================================================================
   PORTFOLIO GALLERY SECTION
   ========================================================================== */
.gallery-section {
    padding: 8rem 0;
    background-color: #0b0b0b;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.filter-btn {
    background-color: var(--color-bg-card);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    color: var(--color-gold);
    border-color: var(--color-gold-hover);
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: var(--color-gold);
    color: var(--color-text-dark);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    transition: all 0.5s ease;
}

.gallery-item {
    border-radius: 0;
    /* Straight edges like the reference screenshot */
    overflow: hidden;
    position: relative;
    box-shadow: none;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, scale 0.4s ease;
    transform-origin: center;
    height: 300px;
}

/* Masonry layout spans based on the 6 items */
.gallery-item:nth-child(1) {
    grid-column: span 1;
}

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

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

.gallery-item:nth-child(4) {
    grid-column: span 2;
}

.gallery-item:nth-child(5) {
    grid-column: span 2;
}

.gallery-item:nth-child(6) {
    grid-column: span 1;
}

.gallery-item.hide {
    opacity: 0;
    scale: 0.8;
    position: absolute;
    pointer-events: none;
    visibility: hidden;
}

.gallery-item.show {
    opacity: 1;
    scale: 1;
    position: relative;
    pointer-events: auto;
    visibility: visible;
}

.gallery-img-box {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 50%);
    opacity: 1;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    box-sizing: border-box;
    pointer-events: none;
}

.gallery-overlay-content {
    width: 100%;
    text-align: left;
}

.gallery-cat {
    display: none;
}

.gallery-item-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0;
    letter-spacing: 0.2px;
}

.gallery-item-desc {
    display: none;
}

.gallery-zoom-btn {
    display: none;
}

/* Hover States for Grid Item */
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================= */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 35px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    opacity: 0.6;
    z-index: 2100;
}

.lightbox-close:hover {
    color: var(--color-gold);
    opacity: 1;
    transform: rotate(90deg);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 30, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    opacity: 0.6;
    z-index: 2100;
}

.lightbox-arrow:hover {
    background: var(--color-gold);
    color: var(--color-text-dark);
    border-color: var(--color-gold);
    opacity: 1;
    box-shadow: var(--shadow-gold);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-content {
    max-width: 85vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    max-width: 100%;
    max-height: 62vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.lightbox-caption {
    width: 100%;
    max-width: 650px;
    text-align: center;
    margin-top: 1.5rem;
    color: #ffffff;
}

.lightbox-cat {
    color: var(--color-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    display: inline-block;
}

.lightbox-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.lightbox-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Responsive adjust for Gallery & Lightbox */
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .lightbox-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 1.8rem;
    }

    .lightbox-img {
        max-height: 55vh;
    }
}

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

    .gallery-section {
        padding: 6rem 0;
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
    }

    .gallery-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .lightbox-caption {
        padding: 0 10px;
    }

    .lightbox-title {
        font-size: 1.3rem;
    }

    .lightbox-desc {
        font-size: 0.8rem;
    }

    /* Floating Action Buttons */
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 0.75rem;
    }

    .floating-wa,
    .floating-call,
    .floating-chat-btn {
        width: 50px;
        height: 50px;
    }

    .floating-actions svg,
    .floating-chat-btn i {
        width: 22px !important;
        height: 22px !important;
        font-size: 1.4rem !important;
    }

    /* Chatbot window adjustments */
    .chat-window-overlay {
        bottom: 80px;
        right: 15px;
        width: calc(100vw - 30px);
        max-width: 360px;
        height: 440px;
        max-height: calc(100vh - 110px);
    }
}

/* ==========================================================================
   MOBILE OVERRIDES FOR GALLERY AND LATE ADDITIONS
   ========================================================================= */
@media (max-width: 768px) {

    /* Force Gallery Carousel Mobile */
    .gallery-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 1rem !important;
        padding: 0.5rem 5% 1.5rem !important;
        margin-left: -5.5% !important;
        margin-right: -5.5% !important;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        flex: 0 0 85% !important;
        height: 250px !important;
    }
}