/* === Neat Contact Info Alignment === */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-row i {
    color: #E61E1F;
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 0;
}

.contact-info-row span,
.contact-info-row a {
    color: #555;
    font-size: 1.1rem;
    font-family: inherit;
    line-height: 1.4;
    font-weight: 400;
}

/**
 * Chowking Theme — Main Stylesheet
 * All global styles, header, mobile nav, and utility classes
 *
 * CSS Variables are set dynamically via customizer.php
 * Font: Rubik (headings/CTA) + Inter (body) — loaded via Google Fonts
 *
 * @package chowking-theme
 */

/* =============================================
   0. CSS VARIABLES (defaults — overridden by customizer)
   ============================================= */
:root {
    --primary-color: #E61E1F;
    --secondary-color: #000000;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --mid-gray: #888888;
    --dark-gray: #333333;
    --header-bg: #FFFFFF;
    --footer-top-bg: #FDF5EE;
    /* cream top section — overridden by customizer */
    --footer-bottom-bg: #FFFFFF;
    /* white bottom bar  — overridden by customizer */
    --footer-divider: #E0D8D0;

    /* Typography */
    --font-heading: 'Rubik', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-max: 1280px;
    --section-padding: 80px;
    --header-height: 80px;

    /* Border Radius */
    --radius-pill: 5px;
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;

    /* Shadows */
    --shadow-header: 0 4px 30px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.20);
    --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.08);

    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Z-indexes */
    --z-header: 1000;
    --z-dropdown: 1100;
    --z-mobile: 1200;
    --z-overlay: 1150;
}


/* =============================================
   1. RESET & BASE
   ============================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--secondary-color);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-color);
}

/* =============================================
   2. UTILITY CLASSES
   ============================================= */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-white {
    color: var(--white);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

/* Primary Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 30, 31, 0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Section spacing */
.section-padding {
    padding: var(--section-padding) 0;
}

/* =============================================
   3. SITE LAYOUT
   ============================================= */
.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
}

/* Elementor override — remove default margins */
.elementor-section.elementor-section-boxed>.elementor-container {
    max-width: var(--container-max);
}


/* =============================================
   4. HEADER — Floating Pill Design
   ============================================= */
.site-header {
    position: relative;
    z-index: var(--z-header);
    padding: 16px 24px;
    width: 100%;
    transition: var(--transition-base);
}

/* Sticky behaviour */
.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 12px 24px;
}

/* When scrolled — shrink pill slightly */
.site-header.is-sticky.scrolled {
    padding: 8px 24px;
}

/* The pill container */
.header-wrap {
    max-width: var(--container-max);
    margin: 0 auto;
}

.header-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    background-color: var(--header-bg);
    border-radius: var(--radius-pill);
    padding: 10px 20px 10px 28px;
    box-shadow: var(--shadow-header);
    transition: var(--transition-base);
    min-height: 64px;
}

.site-header.scrolled .header-pill {
    box-shadow: var(--shadow-hover);
}


/* — — LOGO — — */
.header-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.header-logo a {
    display: flex;
    align-items: center;
}

.header-logo img,
.header-logo .custom-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-base);
}

.site-header.scrolled .header-logo img,
.site-header.scrolled .header-logo .custom-logo {
    height: 42px;
}

/* Fallback text logo */
.text-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}


/* — — PRIMARY NAV — — */
.header-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--secondary-color);
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.nav-menu>li>a:hover,
.nav-menu>li.current-menu-item>a,
.nav-menu>li.current-menu-ancestor>a {
    color: var(--primary-color);
    background-color: rgba(230, 30, 31, 0.06);
}

/* Dropdown Arrow */
.dropdown-arrow {
    font-size: 0.6rem;
    transition: transform 0.25s ease;
    display: inline-block;
    margin-left: 2px;
}

.nav-menu>li:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* NEW Badge */
.nav-badge-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
    vertical-align: middle;
    line-height: 1;
    text-transform: uppercase;
}

/* Dropdown Sub-menu */
.nav-menu .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 180px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: var(--z-dropdown);
    list-style: none;
}

.nav-menu>li:hover .sub-menu,
.nav-menu>li:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-menu .sub-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary-color);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.nav-menu .sub-menu li a:hover {
    background-color: rgba(230, 30, 31, 0.06);
    color: var(--primary-color);
}

/* Dropdown indicator triangle */
.nav-menu>li.menu-item-has-children::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 0 solid transparent;
    transition: border 0.2s ease;
}

.nav-menu>li.menu-item-has-children:hover::after {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(0, 0, 0, 0.05);
}


/* — — HEADER RIGHT — — */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* 2.2 LOGO TOGGLING - Supports dual logo switching on hero sections */
.logo-wrapper.logo-white {
    display: none;
}
.logo-wrapper.logo-standard {
    display: block;
}
.header-logo .custom-logo-link img,
.logo-wrapper img {
    max-height: 50px;
    width: auto;
    display: block;
}

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}

.call-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--mid-gray);
    text-transform: uppercase;
}

.phone-number {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 0.02em;
    transition: var(--transition-fast);
}

.phone-number:hover {
    color: var(--primary-color);
}

/* Header CTA Button */
.btn-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    border: 2px solid var(--primary-color);
    transition: var(--transition-base);
    letter-spacing: 0.02em;
}

.btn-header-cta:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(230, 30, 31, 0.30);
}


/* =============================================
   5. MOBILE HAMBURGER TOGGLE
   ============================================= */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    /* Increased for touch accessibility */
    height: 44px;
    /* Increased for touch accessibility */
    padding: 12px 8px;
    /* Inner padding for the bars */
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 1001;
    /* Above header pill */
}

.hamburger-bar {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--secondary-color);
    border-radius: 4px;
    transition: var(--transition-base);
    transform-origin: center;
}

/* Animated X state */
.mobile-toggle.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(8.75px) rotate(45deg);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-8.75px) rotate(-45deg);
}


/* =============================================
   6. MOBILE NAVIGATION DRAWER
   ============================================= */
.mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background-color: var(--white);
    z-index: var(--z-mobile);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.is-open {
    right: 0;
}

.mobile-nav-inner {
    padding: 30px 24px 40px; /* Reduced top padding to fit logo */
    display: flex;
    flex-direction: column;
}

/* Mobile Logo Drawer Styling */
.mobile-logo-drawer {
    margin-bottom: 25px;
    display: flex;
    justify-content: flex-start;
}

.mobile-logo-drawer img,
.mobile-logo-drawer .custom-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* Mobile Menu List */
.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-menu-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.mobile-menu-list li.current-menu-item>a {
    color: var(--primary-color);
}

/* Hide the desktop dropdown arrow on mobile to prevent double icons */
.mobile-menu-list .dropdown-arrow {
    display: none !important;
}

/* Dropdown Icon (Font Awesome handled via JS) */
.mobile-dropdown-icon {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.mobile-menu-list li.is-active>a .mobile-dropdown-icon {
    transform: rotate(180deg);
}

/* Mobile sub-menu */
.mobile-menu-list .sub-menu {
    display: none;
    /* Controlled by JS */
    padding-left: 15px;
    list-style: none;
}

.mobile-menu-list li.is-active>.sub-menu {
    display: block;
}

.mobile-menu-list .sub-menu li {
    border: none;
}

.mobile-menu-list .sub-menu li a {
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: none;
    padding: 10px 0;
    color: #666;
}

.mobile-menu-list .sub-menu li a:hover {
    color: var(--primary-color);
}

/* Mobile footer */
.mobile-nav-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.mobile-phone-link i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.btn-mobile-cta {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 1rem;
}


/* =============================================
   7. MOBILE OVERLAY
   ============================================= */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(2px);
}

.mobile-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =============================================
   8. HEADER SPACER (pushes content below fixed header)
   ============================================= */
.header-spacer {
    height: var(--header-height);
}

/* When the page has a hero that goes behind the header */
.has-hero-header .site-main {
    margin-top: 0;
}

/* =============================================
   TRANSPARENT HEADER — on hero/front page
   Header becomes transparent so hero fills
   the full viewport including behind the header.
   Transitions back to solid when scrolled.
   ============================================= */

/* Make the entire header wrapper transparent */
.has-hero-header .site-header:not(.scrolled) {
    background: transparent;
}

/* Make the pill itself transparent + remove shadow */
.has-hero-header .site-header:not(.scrolled) .header-pill {
    background: transparent !important;
    box-shadow: none !important;
}

/* Nav links — white on transparent header */
.has-hero-header .site-header:not(.scrolled) .nav-menu>li>a {
    color: rgba(255, 255, 255, 0.92);
}

.has-hero-header .site-header:not(.scrolled) .nav-menu>li>a:hover,
.has-hero-header .site-header:not(.scrolled) .nav-menu>li.current-menu-item>a {
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.12);
}

/* Phone label + number — white on transparent header */
.has-hero-header .site-header:not(.scrolled) .call-label {
    color: rgba(255, 255, 255, 0.70);
}

.has-hero-header .site-header:not(.scrolled) .phone-number {
    color: #FFFFFF;
}

.has-hero-header .site-header:not(.scrolled) .phone-number:hover {
    color: var(--hero-orange-light);
}

/* Hamburger bars — white on transparent header */
.has-hero-header .site-header:not(.scrolled) .hamburger-bar {
    background-color: #FFFFFF;
}

/* CTA button — white outline on transparent header */
.has-hero-header .site-header:not(.scrolled) .btn-header-cta {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.60);
    color: #FFFFFF;
    backdrop-filter: blur(4px);
}

.has-hero-header .site-header:not(.scrolled) .btn-header-cta:hover {
    background: #FFFFFF;
    border-color: #FFFFFF;
    color: var(--secondary-color);
}

/* Smooth transition back to solid when scrolled */
.has-hero-header .site-header {
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.has-hero-header .site-header.scrolled .header-pill {
    background: var(--header-bg) !important;
    box-shadow: var(--shadow-header) !important;
}

/* Hero section — extend behind the fixed header */
.has-hero-header .hero-section {
    margin-top: calc(-1 * (var(--header-height) + 32px));
    padding-top: calc(var(--header-height) + 32px);
    height: 100vh;
    min-height: var(--hero-min-height);
}



/* =============================================
   9. RESPONSIVE — TABLET & MOBILE
   ============================================= */

/* Tablet (≤ 1024px) — hide phone, keep nav */
@media (max-width: 1024px) {
    .header-phone {
        display: none;
    }

    .nav-menu>li>a {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
}

/* Mobile (≤ 768px) — hamburger menu */
@media (max-width: 768px) {
    .site-header {
        padding: 12px 16px;
    }

    .header-nav {
        display: none;
    }

    .header-right {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .mobile-overlay {
        display: block;
    }

    .header-pill {
        padding: 10px 16px;
        min-height: 58px;
        border-radius: 40px;
    }

    .header-logo img,
    .header-logo .custom-logo {
        height: 40px;
    }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
    .site-header {
        padding: 10px 12px;
    }

    .header-pill {
        padding: 8px 14px;
    }
}


/* =============================================
   10. WORDPRESS CORE FIXES
   ============================================= */

/* Admin bar offset */
.admin-bar .site-header.is-sticky {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header.is-sticky {
        top: 46px;
    }
}

/* WP default alignments */
.alignleft {
    float: left;
    margin: 0 24px 16px 0;
}

.alignright {
    float: right;
    margin: 0 0 16px 24px;
}

.aligncenter {
    display: block;
    margin: 0 auto 16px;
}

/* Elementor overrides */
.elementor-page .site-main {
    padding: 0;
}

/* Hide default page title on Elementor pages */
.elementor-page .entry-title {
    display: none;
}

/* =============================================
   11. SITE FOOTER
   ============================================= */

/* ── Shared container ── */
.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}


/* ══════════════════════════════════════════════
   FOOTER TOP — Cream Section
   ══════════════════════════════════════════════ */
.footer-top {
    background-color: var(--footer-top-bg);
    padding: 48px 0 44px;
}

/* 4-column grid: Logo | Col1 | Col2 | Contact+Social */
.footer-top .footer-container {
    display: grid;
    grid-template-columns: auto 1fr 1fr auto;
    gap: 40px 60px;
    align-items: start;
}

/* ── Logo area ── */
.footer-logo-area {
    display: flex;
    align-items: flex-start;
    padding-top: 4px;
}

.footer-logo-area a {
    display: inline-flex;
}

.footer-logo-area img,
.footer-logo-area .custom-logo {
    height: 64px; /* Slightly bigger in the new layout */
    width: auto;
    object-fit: contain;
}

.footer-text-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* ── Footer nav columns ── */

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-nav-list li a {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--secondary-color);
    transition: var(--transition-fast);
    position: relative;
    display: inline-block;
}

.footer-nav-list li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1.5px;
    background-color: var(--primary-color);
    transition: width 0.25s ease;
}

.footer-nav-list li a:hover {
    color: var(--primary-color);
}

.footer-nav-list li a:hover::after {
    width: 100%;
}

/* ── Contact + Social ── */
.footer-contact-social {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

/* Call box */
.footer-call-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.footer-call-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--secondary-color);
    text-transform: none;
}

.footer-call-number {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 0.02em;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.footer-call-number:hover {
    color: var(--primary-color);
}

/* Social Icons Row */
.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(230, 30, 31, 0.35);
}

.social-icon svg {
    display: block;
    fill: currentColor;
}


/* ══════════════════════════════════════════════
   FOOTER DIVIDER
   ══════════════════════════════════════════════ */
.footer-divider-wrap {
    background-color: var(--footer-top-bg);
}

.footer-divider {
    border: none;
    border-top: 1.5px solid var(--footer-divider);
    margin: 0;
}


/* ══════════════════════════════════════════════
   FOOTER BOTTOM — White Bottom Bar
   ══════════════════════════════════════════════ */
.footer-bottom {
    background-color: var(--footer-bottom-bg);
    padding: 32px 0; /* Increased padding to fit 80x80 logos */
}

.footer-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two-column layout */
    align-items: center; /* Vertically align logos and copyright */
    gap: 40px;
    padding: 10px 0;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

/* ── Payment Logos ── */
.footer-payments {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-self: start;
}

/* Fixed-size uniform box for each payment logo */
.payment-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.payment-logo-wrap img {
    height: 22px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}

.payment-logo-wrap:hover img {
    transform: translateY(-2px);
}

/* Fallback styled badges (shown if no image uploaded) */
.payment-logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #D0D0D0;
    border-radius: 6px;
    padding: 4px 10px;
    height: 34px;
    background: #fff;
}

.payment-visa {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: #1a1f71;
    letter-spacing: 0.05em;
}

/* Mastercard circles fallback */
.payment-mastercard {
    position: relative;
    width: 50px;
    gap: 0;
    padding: 4px 8px;
}

.mc-circle {
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.mc-left {
    background-color: #EB001B;
    left: 8px;
}

.mc-right {
    background-color: #F79E1B;
    right: 8px;
}

/* ── Copyright ── */
.footer-copyright {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: #666666;
    text-align: left;
    justify-self: start;
    margin: 0;
    white-space: nowrap;
}

/* ── Delivery Platforms ── */
.footer-bottom-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    justify-self: end;
}

.platforms-label-bottom {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.75;
}

.footer-platforms {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

/* Each platform logo gets a uniform height container */
.platform-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    padding: 4px;
    transition: var(--transition-base);
    box-sizing: border-box;
    text-decoration: none;
}

.platform-logo-wrap:hover {
    transform: translateY(-3px);
    opacity: 1;
}

/* The image inside — uniform height, natural width */
.platform-logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}



/* Platform fallback badges (shown if no image uploaded) */
.platform-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.03em;
    text-align: center;
    line-height: 1.2;
    white-space: normal;
}

.platform-noon-badge {
    background-color: #FECC00;
    color: #000;
}

.platform-talabat-badge {
    background-color: #FF6F00;
    color: #fff;
}

.platform-deliveroo-badge {
    background-color: #00CCBC;
    color: #fff;
}

.platform-careem-badge {
    background-color: #3BB143;
    color: #fff;
}

.platform-keeta-badge {
    background-color: #000;
    color: #fff;
}




/* ══════════════════════════════════════════════
   BACK TO TOP BUTTON
   ══════════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #E0D8D0;
    color: var(--secondary-color);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: var(--transition-base);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 30, 31, 0.3);
}

.back-to-top svg {
    display: block;
}


/* ══════════════════════════════════════════════
   FOOTER RESPONSIVE
   ══════════════════════════════════════════════ */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
    .footer-top .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 32px 40px;
    }

    .footer-logo-area {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .footer-contact-social {
        grid-column: 1 / -1;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
    .footer-top {
        padding: 36px 0 32px;
    }

    .footer-top .footer-container {
        grid-template-columns: 1fr;
        gap: 28px 0;
    }

    .footer-logo-area {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .footer-logo-area img,
    .footer-logo-area .custom-logo {
        height: 44px;
    }

    .footer-contact-social {
        grid-column: 1 / -1;
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .footer-call-box {
        align-items: flex-start;
    }

    .footer-call-number {
        font-size: 1.15rem;
    }

    .footer-bottom-grid {
        grid-template-columns: 1fr;
        justify-items: flex-start;
        gap: 32px;
        padding: 40px 24px; /* Added horizontal padding and more top/bottom */
        text-align: left;
    }

    .footer-bottom-left {
        align-items: flex-start;
        order: 2;
    }

    .footer-bottom-right {
        align-items: flex-start;
        order: 1;
        justify-self: flex-start;
    }

    .footer-payments {
        justify-content: flex-start;
        gap: 16px;
    }

    .footer-platforms {
        display: grid;
        grid-template-columns: repeat(4, auto); /* 4 logos on first line */
        gap: 16px;
        justify-content: start;
    }

    .footer-copyright {
        text-align: left;
        justify-self: flex-start;
    }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
    .footer-top .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-nav-list {
        align-items: flex-start;
    }

    .footer-nav-list li a::after {
        left: 0;
    }

    .footer-social-icons {
        justify-content: flex-start;
    }
}

/* =============================================
   11. PAGE HERO & BREADCRUMBS
   ============================================= */
.page-hero {
    position: relative;
    padding: 120px 0 80px;
    background-color: var(--secondary-color);
    background-image: url('https://images.unsplash.com/photo-1594212699903-ec8a3eca50f5?q=80&w=2071&auto=format&fit=crop');
    /* Placeholder */
    background-size: cover;
    background-position: center;
    text-align: var(--hero-alignment, center);
    color: var(--hero-text-color, var(--white));
    overflow: hidden;
}

/* Dark Overlay */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, var(--hero-overlay-alpha, 0.5));
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: var(--hero-alignment, center);
    justify-content: center;
}

.hero-title {
    font-size: var(--hero-title-size, clamp(2.5rem, 5vw, 4rem));
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: inherit;
    text-transform: var(--hero-text-case, none);
}


/* Breadcrumbs Styling */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background-color: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
}

.breadcrumb-link,
.breadcrumb-current {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
}

.breadcrumb-link:hover {
    color: var(--primary-color);
}

.breadcrumb-link.home-icon svg {
    color: var(--primary-color);
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    opacity: 0.8;
}

.breadcrumb-current {
    opacity: 0.8;
    font-weight: 400;
}

/* Adjust for floating header */
.page-hero {
    margin-top: -110px;
    /* Pull hero under the floating transparent header */
    padding-top: 200px;
    /* Compensate for the pullup */
}

@media (max-width: 768px) {
    .page-hero {
        margin-top: -80px;
        padding-top: 160px;
        padding-bottom: 60px;
    }
}

/* — — — — — — — — — — — — — — — — — — — — — — — — — — — 
   ELEMENTOR DESIGN SYSTEM (FOR TEMPLATE KITS)
   — — — — — — — — — — — — — — — — — — — — — — — — — — — */

/* 1. HERO SECTION */
.elementor-section.ck-hero-section {
    position: relative;
    padding-top: 180px !important;
    padding-bottom: 120px !important;
    margin-top: -110px !important;
    /* Push under floating header */
    z-index: 1;
}

/* Background Overlay — Robust version */
.elementor-section.ck-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5) !important;
    z-index: -1;
    pointer-events: none;
}

/* 2. HERO TITLE */
.ck-hero-title .elementor-heading-title {
    font-family: var(--font-heading) !important;
    font-size: clamp(2.8rem, 7vw, 4.5rem) !important;
    font-weight: 900 !important;
    color: #FFFFFF !important;
    line-height: 1.1 !important;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    margin-bottom: 25px !important;
    display: block !important;
}

/* 3. BREADCRUMBS (Icon List Widget) */
.ck-breadcrumbs {
    display: flex !important;
    justify-content: center !important;
}

.ck-breadcrumbs .elementor-icon-list-items {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    list-style: none !important;
    padding: 10px 28px !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 100px !important;
    gap: 0 !important;
}

.ck-breadcrumbs .elementor-icon-list-item {
    display: flex !important;
    align-items: center !important;
    color: #FFFFFF !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ck-breadcrumbs .elementor-icon-list-icon {
    margin-right: 8px !important;
    color: var(--primary-color) !important;
    font-size: 16px !important;
    display: flex !important;
}

/* Separator Arrow */
.ck-breadcrumbs .elementor-icon-list-item:not(:last-child)::after {
    content: '❯' !important;
    margin: 0 16px !important;
    color: var(--primary-color) !important;
    font-size: 10px !important;
    font-weight: 900 !important;
}


/* ══════════════════════════════════════════════
   CONTACT US — HERO SECTION (page-contact.php)
   ══════════════════════════════════════════════ */

.contact-hero {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Pull up under the floating transparent header */
    margin-top: -110px;
    padding-top: 150px;
    padding-bottom: 60px;
}

/* Dark overlay */
.contact-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Content stacks above overlay */
.contact-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 0 20px;
}

/* Title */
.contact-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Breadcrumbs row */
.contact-hero__breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.crumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: #FFFFFF;
    transition: color 0.2s ease;
}

/* Red home icon */
.crumb--home i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.crumb--home:hover {
    color: var(--primary-color);
}

/* Chevron separator */
.crumb-sep {
    color: var(--primary-color);
    font-size: 0.65rem;
    display: flex;
    align-items: center;
}

/* Current page text — slightly dimmed */
.crumb--current {
    opacity: 0.85;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .contact-hero {
        margin-top: -80px;
        padding-top: 130px;
        padding-bottom: 50px;
        min-height: 200px;
    }

    .contact-hero__title {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }
}


/* ══════════════════════════════════════════════
   CONTACT — INFO CARDS STRIP
   ══════════════════════════════════════════════ */

.contact-cards {
    background: #f5f5f5;
    padding: 50px 0;
}

.contact-cards__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


.contact-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: var(--radius-md);
    padding: 28px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    text-align: left;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    min-height: 80px;
}

.contact-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Circular icon */

.contact-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 0;
}

.contact-card__icon i {
    font-size: 22px;
    color: #fff;
    display: inline-block;
}

.contact-card__label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.contact-card__value {
    font-family: var(--font-body);
    font-size: 1.08rem;
    font-weight: 400;
    color: #555;
    transition: color 0.2s ease;
    line-height: 1.4;
}

a.contact-card__value:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-cards__container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* ══════════════════════════════════════════════
   CONTACT US — INFO + FORM SECTION
   ══════════════════════════════════════════════ */

.contact-section {
    padding: 80px 0 100px;
    background: #fff;
}

.contact-section__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ── LEFT: Info column ── */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Badge */
.contact-info__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1.5px solid var(--primary-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-color);
    width: fit-content;
}

.contact-info__badge i {
    font-size: 0.95rem;
}

/* Heading */
.contact-info__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.15;
    margin: 0;
}

.text-highlight {
    color: var(--primary-color);
}

/* Description */
.contact-info__text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
    max-width: 480px;
}

/* Map */
.contact-info__map {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1.5px solid #e5e5e5;
    box-shadow: var(--shadow-card);
}

.contact-info__map iframe {
    display: block;
    width: 100%;
}

/* ── RIGHT: Form column ── */
.contact-form-wrap {
    background: #fff;
    border: 1.5px solid #ebebeb;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-wrap__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0 0 28px;
}

/* Form layout */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
}

.contact-form__field--full {
    grid-column: 1 / -1;
}

/* Inputs */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e8e8e8;
    border-radius: var(--radius-sm);
    background: #f8f8f8;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--secondary-color);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(230, 30, 31, 0.08);
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

/* Submit Button */
.contact-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    width: fit-content;
}

.contact-form__submit:hover {
    background-color: #c41819;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 30, 31, 0.3);
}

.contact-form__submit i {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.contact-form__submit:hover i {
    transform: translateX(4px);
}

/* Notice */
.contact-form__notice {
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 22px;
}

.contact-form__notice.success {
    color: #16a34a;
}

.contact-form__notice.error {
    color: var(--primary-color);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .contact-section__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 60px 0 70px;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════
   PRIVACY POLICY — BODY SECTION
   ══════════════════════════════════════════════ */

.policy-section {
    padding: 72px 0 100px;
    background: #fff;
}

.policy-section__container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

.policy-updated {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(230, 30, 31, 0.07);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 40px;
}

.policy-body {
    font-family: var(--font-body);
    color: #444;
    font-size: 1rem;
    line-height: 1.85;
}

.policy-body h2 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 48px 0 14px;
    padding-left: 16px;
    border-left: 4px solid var(--primary-color);
    line-height: 1.3;
}

.policy-body h2:first-of-type {
    margin-top: 0;
}

.policy-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 28px 0 10px;
}

.policy-body p {
    margin: 0 0 18px;
    color: #555;
}

.policy-body ul {
    margin: 0 0 20px;
    padding-left: 0;
    list-style: none;
}

.policy-body ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #555;
}

.policy-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.policy-body ol {
    margin: 0 0 20px;
    padding-left: 24px;
    color: #555;
}

.policy-body ol li {
    margin-bottom: 10px;
}

.policy-body a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.policy-body a:hover {
    opacity: 0.75;
}

.policy-highlight {
    background: #FFF8F8;
    border: 1.5px solid rgba(230, 30, 31, 0.2);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 18px 22px;
    margin: 24px 0;
    color: #555;
    font-size: 0.95rem;
}

.policy-body hr {
    border: none;
    border-top: 1.5px solid #EFEFEF;
    margin: 40px 0;
}

.policy-contact-box {
    background: #F8F8F8;
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 16px;
}

.policy-contact-box p {
    margin: 0 0 8px;
}

.policy-contact-box p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .policy-section {
        padding: 50px 0 70px;
    }

    .policy-body h2 {
        font-size: 1.25rem;
        margin-top: 36px;
    }
}

@media (max-width: 480px) {
    .policy-section__container {
        padding: 0 16px;
    }

    .policy-body {
        font-size: 0.95rem;
    }
}


/* ══════════════════════════════════════════════
   FEEDBACK PAGE
   ══════════════════════════════════════════════ */

.feedback-section {
    padding: 80px 0 100px;
    background: #F8F8F8;
}

.feedback-section__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 60px;
    align-items: start;
}

/* ── LEFT: Intro ── */
.feedback-intro {
    position: sticky;
    top: 100px;
}

.feedback-intro__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border: 2px solid #E61E1F;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #E61E1F;
    margin-bottom: 22px;
}

.feedback-intro__heading {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    color: #1A1A1A;
    line-height: 1.15;
    margin: 0 0 18px;
}

.feedback-intro__heading--accent {
    color: #E61E1F;
}

.feedback-intro__text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #666;
    line-height: 1.75;
    margin: 0 0 28px;
}

/* Checklist */
.feedback-intro__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feedback-intro__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.feedback-intro__list-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #E61E1F;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 11px;
    margin-top: 1px;
}

/* Direct contact links */
.feedback-intro__contact {
    border-top: 1.5px solid #E8E8E8;
    padding-top: 24px;
}

.feedback-intro__contact p {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #999;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.feedback-intro__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #1A1A1A;
    text-decoration: none;
    margin-right: 20px;
    margin-bottom: 6px;
    transition: color 0.2s ease;
}

.feedback-intro__contact-link i {
    color: #E61E1F;
    font-size: 14px;
}

.feedback-intro__contact-link:hover {
    color: #E61E1F;
}

/* ── RIGHT: Form Card ── */
.feedback-form-wrap {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 18px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.07);
    padding: 44px 40px;
}

.feedback-form-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1.5px solid #F0F0F0;
}

.feedback-form-header__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 6px;
}

.feedback-form-header__sub {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #999;
    margin: 0;
}

/* Required star */
.req {
    color: #E61E1F;
    font-weight: 700;
}

/* Notice banners */
.feedback-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.feedback-notice--success {
    background: #F0FFF4;
    border: 1.5px solid #38A169;
    color: #276749;
}

.feedback-notice--error {
    background: #FFF5F5;
    border: 1.5px solid #E61E1F;
    color: #C41819;
}

/* Form layout */
.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feedback-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feedback-form__group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.feedback-form__label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
}

.feedback-form__input,
.feedback-form__textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #E5E5E5;
    border-radius: 10px;
    background: #F9F9F9;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #1A1A1A;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    -webkit-appearance: none;
}

.feedback-form__input::placeholder,
.feedback-form__textarea::placeholder {
    color: #BBBBBB;
    font-size: 0.9rem;
}

.feedback-form__input:focus,
.feedback-form__textarea:focus {
    border-color: #E61E1F;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(230, 30, 31, 0.08);
}

.feedback-form__textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.65;
}

/* Submit button */
.feedback-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: #E61E1F;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    align-self: flex-start;
    margin-top: 6px;
}

.feedback-form__submit i {
    transition: transform 0.25s ease;
}

.feedback-form__submit:hover {
    background: #C41819;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(230, 30, 31, 0.32);
}

.feedback-form__submit:hover i {
    transform: translateX(5px);
}

.feedback-form__submit:active {
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .feedback-section__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feedback-intro {
        position: static;
    }

    .feedback-intro__heading {
        font-size: 1.9rem;
    }
}

@media (max-width: 600px) {
    .feedback-section {
        padding: 50px 0 70px;
    }

    .feedback-section__container {
        padding: 0 16px;
    }

    .feedback-form-wrap {
        padding: 28px 20px;
    }

    .feedback-form__row {
        grid-template-columns: 1fr;
    }

    .feedback-intro__heading {
        font-size: 1.65rem;
    }

    .feedback-form__submit {
        width: 100%;
    }
}


/* ══════════════════════════════════════════════════════════
   LOCATIONS PAGE
   ══════════════════════════════════════════════════════════ */

/* ── Wrap ── */
.locs-wrap {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 80px);
    background: #fff;
}

/* ── Hero Band ── */
.locs-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 36px 40px;
    background-color: #1A1A1A;
    background-image: repeating-linear-gradient(-45deg,
            transparent, transparent 14px,
            rgba(255, 255, 255, 0.025) 14px, rgba(255, 255, 255, 0.025) 28px);
    flex-shrink: 0;
}

.locs-hero__left {
    flex: 1 1 auto;
}

.locs-hero__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 8px;
    line-height: 1.15;
}

.locs-hero__sub {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.locs-hero__right {
    flex-shrink: 0;
    width: 320px;
}

.locs-search-wrap {
    position: relative;
}

.locs-search__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
    pointer-events: none;
}

.locs-search__input {
    width: 100%;
    padding: 13px 16px 13px 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s, background 0.2s;
}

.locs-search__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.locs-search__input:focus {
    border-color: #E61E1F;
    background: rgba(255, 255, 255, 0.12);
}

/* ── Filter Chips ── */
.locs-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 40px;
    background: #F5F5F5;
    border-bottom: 1px solid #E8E8E8;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.locs-filters__label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #999;
    margin-right: 4px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.locs-chip {
    padding: 7px 18px;
    border-radius: 5px;
    border: 1.5px solid #D0D0D0;
    background: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.locs-chip:hover {
    border-color: #E61E1F;
    color: #E61E1F;
}

.locs-chip--active {
    background: #1A1A1A;
    border-color: #1A1A1A;
    color: #FFFFFF;
}

/* ── Stats Bar ── */
.locs-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 40px;
    background: #FAFAFA;
    border-bottom: 1px solid #EBEBEB;
    flex-shrink: 0;
}

.locs-stats__info {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #666;
}

.locs-stats__info strong {
    color: #1A1A1A;
}

.locs-stat-sep {
    margin: 0 6px;
    color: #CCC;
}

/* View toggle */
.locs-view-toggle {
    display: flex;
    align-items: center;
    gap: 2px;
    background: #EBEBEB;
    border-radius: 8px;
    padding: 3px;
}

.locs-view-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 6px;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.locs-view-btn--active {
    background: #1A1A1A;
    color: #FFFFFF;
}

.locs-view-btn:not(.locs-view-btn--active):hover {
    background: rgba(0, 0, 0, 0.07);
    color: #333;
}

/* ── Main Split ── */
.locs-main {
    display: grid;
    grid-template-columns: 340px 1fr;
    grid-template-rows: auto;
    height: calc(100vh - 290px);
    min-height: 580px;
    overflow: hidden;
    position: relative;
}

.locs-main[data-view="map-only"] {
    grid-template-columns: 1fr;
}

.locs-main[data-view="grid"] {
    grid-template-columns: 1fr;
    height: auto;
    overflow: visible;
}

/* ── LEFT: Accordion List ── */
.locs-list-panel {
    border-right: 1px solid #EBEBEB;
    overflow-y: auto;
    background: #FAFAFA;
    scroll-behavior: smooth;
}

.locs-list-panel::-webkit-scrollbar {
    width: 4px;
}

.locs-list-panel::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.locs-list-panel::-webkit-scrollbar-thumb {
    background: #DDD;
    border-radius: 4px;
}

/* Accordion Group */
.locs-group {
    border-bottom: 1px solid #EBEBEB;
}

.locs-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    background: #F0F0F0;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    text-align: left;
    transition: background 0.15s;
}

.locs-group-header:hover {
    background: #E8E8E8;
}

.locs-group-name {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.locs-group-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #E61E1F;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-body);
}

.locs-group-header i {
    color: #999;
    font-size: 11px;
    flex-shrink: 0;
}

/* Branch Row */
.locs-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #F0F0F0;
    cursor: pointer;
    background: #FFFFFF;
    transition: background 0.15s;
    position: relative;
    overflow: hidden;
}

.locs-row:last-child {
    border-bottom: none;
}

.locs-row:hover {
    background: #FFF5F5;
}

.locs-row--selected {
    background: #FFF5F5;
    border-left: 3px solid #E61E1F;
}

.locs-row__indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #DDD;
    flex-shrink: 0;
    transition: background 0.15s;
}

.locs-row--selected .locs-row__indicator {
    background: #E61E1F;
}

.locs-row__info {
    flex: 1;
    min-width: 0;
}

.locs-row__name {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.locs-row--selected .locs-row__name {
    color: #E61E1F;
}

.locs-row__addr {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.locs-row__arrow {
    color: #CCC;
    font-size: 11px;
    flex-shrink: 0;
    transition: color 0.15s, transform 0.15s;
}

.locs-row:hover .locs-row__arrow,
.locs-row--selected .locs-row__arrow {
    color: #E61E1F;
    transform: translateX(2px);
}

/* NEW Badge */
.locs-new-badge {
    display: inline-block;
    padding: 2px 7px;
    background: #E61E1F;
    color: #fff;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: 100px;
    line-height: 1.6;
}

/* Show More */
.locs-show-more {
    display: block;
    width: 100%;
    padding: 11px 16px;
    background: #F8F8F8;
    border: none;
    border-top: 1px dashed #E0E0E0;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #E61E1F;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s;
}

.locs-show-more:hover {
    background: #FFF0F0;
}

/* Empty state */
.locs-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: #CCC;
}

.locs-empty i {
    font-size: 40px;
    margin-bottom: 14px;
}

.locs-empty p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

.locs-empty strong {
    color: #666;
}

/* ── RIGHT: Map ── */
.locs-map-panel {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#locs-map {
    width: 100%;
    flex: 1;
    min-height: 400px;
    height: 100%;
    background: #E8E4DC;
}

/* Leaflet overrides */
.leaflet-container {
    font-family: var(--font-body) !important;
}

.leaflet-tooltip {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    background: #1A1A1A !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 5px 10px !important;
}

.leaflet-tooltip::before {
    border-top-color: #1A1A1A !important;
}

/* ── Floating Detail Card ── */
.locs-detail-card {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 280px;
    background: #FFFFFF;
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    z-index: 800;
    animation: locs-card-in 0.25s ease;
}

@keyframes locs-card-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.locs-dc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #F5F5F5;
    border-bottom: 1px solid #EBEBEB;
}

.locs-dc-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.locs-dc-emirate {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #E61E1F;
}

.locs-dc-selected-label {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.07em;
    color: #AAAAAA;
    text-transform: uppercase;
}

.locs-dc-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
    font-size: 13px;
}

.locs-dc-close:hover {
    color: #E61E1F;
    background: rgba(230, 30, 31, 0.08);
}

.locs-dc-body {
    padding: 16px;
}

.locs-dc-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 12px;
}

.locs-dc-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.locs-dc-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: #555;
    line-height: 1.45;
}

.locs-dc-info li i {
    color: #E61E1F;
    font-size: 12px;
    margin-top: 2px;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.locs-dc-info a {
    color: #555;
    text-decoration: none;
    transition: color 0.15s;
}

.locs-dc-info a:hover {
    color: #E61E1F;
}

.locs-dc-footer {
    padding: 0 16px 16px;
}

.locs-dc-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    background: #1A1A1A;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.locs-dc-cta:hover {
    background: #E61E1F;
    transform: translateY(-1px);
}

.locs-dc-cta i {
    transition: transform 0.2s;
}

.locs-dc-cta:hover i {
    transform: translateX(4px);
}

/* ── Grid Panel ── */
.locs-grid-panel {
    padding: 32px 40px 60px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    background: #F5F5F5;
}

.locs-grid-card {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
}

.locs-grid-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.locs-grid-card__pin {
    width: 48px;
    background: #E61E1F;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 18px;
    flex-shrink: 0;
}

.locs-grid-card__body {
    padding: 16px;
    flex: 1;
}

.locs-grid-card__name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.locs-grid-card__emirate {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    color: #E61E1F;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.locs-grid-card__addr {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: #777;
    line-height: 1.5;
    margin: 0 0 12px;
}

.locs-grid-card__contacts {
    margin-bottom: 14px;
}

.locs-grid-card__contacts a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.locs-grid-card__contacts i {
    color: #E61E1F;
    font-size: 11px;
}

.locs-grid-card__dir {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #1A1A1A;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s;
}

.locs-grid-card__dir:hover {
    background: #E61E1F;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .locs-main {
        grid-template-columns: 300px 1fr;
    }
}

@media (max-width: 768px) {
    .locs-hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
        gap: 16px;
    }

    .locs-hero__right {
        width: 100%;
    }

    .locs-filters {
        padding: 10px 16px;
    }

    .locs-stats {
        padding: 10px 16px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .locs-main {
        grid-template-columns: 1fr;
        grid-template-rows: 420px 1fr;
        height: auto;
    }

    .locs-list-panel {
        order: 2;
        height: 420px;
    }

    .locs-map-panel {
        order: 1;
        height: 420px;
    }

    .locs-detail-card {
        right: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
        max-width: 320px;
    }

    .locs-grid-panel {
        padding: 20px 16px 50px;
    }
}

@media (max-width: 480px) {
    .locs-view-toggle {
        display: none;
    }

    .locs-hero__title {
        font-size: 1.65rem;
    }
}

/* ── Grid as standalone page layout ── */
.locs-grid-panel {
    padding: 36px 40px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
    background: #F5F5F5;
    min-height: 400px;
}

.locs-grid-empty {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    color: #CCC;
}

.locs-grid-empty i {
    font-size: 48px;
    margin-bottom: 16px;
}

.locs-grid-empty p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #999;
    margin: 0;
}

.locs-grid-empty strong {
    color: #666;
}

/* Card: improved layout */
.locs-grid-card {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}

.locs-grid-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.locs-grid-card__pin {
    background: #E61E1F;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.locs-grid-card__pin i {
    color: #FFFFFF;
    font-size: 16px;
}

.locs-grid-card__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.locs-grid-card__name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.locs-grid-card__emirate {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    color: #E61E1F;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.locs-grid-card__addr,
.locs-grid-card__meta {
    font-family: var(--font-body);
    font-size: 0.84rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.locs-grid-card__addr i,
.locs-grid-card__meta i {
    color: #E61E1F;
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

.locs-grid-card__addr a,
.locs-grid-card__meta a {
    color: #666;
    text-decoration: none;
    transition: color 0.15s;
}

.locs-grid-card__addr a:hover,
.locs-grid-card__meta a:hover {
    color: #E61E1F;
}

.locs-grid-card__dir {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #1A1A1A;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    margin-top: auto;
    align-self: flex-start;
}

.locs-grid-card__dir:hover {
    background: #E61E1F;
    transform: translateY(-1px);
}

.locs-grid-card__dir i {
    transition: transform 0.2s;
}

.locs-grid-card__dir:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .locs-grid-panel {
        padding: 24px 16px 60px;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .locs-grid-panel {
        grid-template-columns: 1fr;
    }
}


/* ══════════════════════════════════════════════════════
   LOCATIONS — MAP + GRID SPLIT BODY
   ══════════════════════════════════════════════════════ */

/* Body container: map left, grid right */
.locs-body {
    display: grid;
    grid-template-columns: 1fr 440px;
    height: calc(100vh - 185px);
    min-height: 600px;
    overflow: hidden;
    position: relative;
}

/* ── LEFT: Map column ── */
.locs-map-col {
    position: sticky;
    top: 0;
    height: calc(100vh - 185px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#locs-map {
    flex: 1;
    width: 100%;
    min-height: 400px;
    background: #E8E4DC;
    z-index: 1;
}

/* ── RIGHT: Grid column ── */
.locs-grid-col {
    overflow-y: auto;
    background: #F5F5F5;
    border-left: 1px solid #E0E0E0;
    scroll-behavior: smooth;
}

.locs-grid-col::-webkit-scrollbar {
    width: 4px;
}

.locs-grid-col::-webkit-scrollbar-track {
    background: #F0F0F0;
}

.locs-grid-col::-webkit-scrollbar-thumb {
    background: #CCC;
    border-radius: 4px;
}

/* Grid panel inside the column */
.locs-grid-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 20px 16px 60px;
}

/* Grid cards */
.locs-grid-card {
    background: #FFFFFF;
    border: 2px solid transparent;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.18s, border-color 0.18s;
}

.locs-grid-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.locs-grid-card--selected {
    border-color: #E61E1F;
    box-shadow: 0 6px 24px rgba(230, 30, 31, 0.2);
}

.locs-grid-card__pin {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    background: #E61E1F;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.locs-grid-card__pin i {
    font-size: 13px;
}

.locs-grid-card__body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.locs-grid-card__name {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.locs-grid-card--selected .locs-grid-card__name {
    color: #E61E1F;
}

.locs-grid-card__addr,
.locs-grid-card__meta {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 7px;
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.locs-grid-card__addr i,
.locs-grid-card__meta i {
    color: #E61E1F;
    font-size: 11px;
    margin-top: 2px;
    width: 12px;
    text-align: center;
    flex-shrink: 0;
}

.locs-grid-card__addr a,
.locs-grid-card__meta a {
    color: #666;
    text-decoration: none;
    transition: color 0.15s;
}

.locs-grid-card__addr a:hover,
.locs-grid-card__meta a:hover {
    color: #E61E1F;
}

.locs-grid-card__dir {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 10px;
    padding: 8px 16px;
    background: #1A1A1A;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s;
    align-self: flex-start;
    margin-top: 8px;
}

.locs-grid-card__dir:hover {
    background: #E61E1F;
}

.locs-grid-card__dir i {
    font-size: 10px;
    transition: transform 0.2s;
}

.locs-grid-card__dir:hover i {
    transform: translateX(3px);
}

/* Empty state */
.locs-grid-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: #CCC;
}

.locs-grid-empty i {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.locs-grid-empty p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

.locs-grid-empty strong {
    color: #555;
}

/* Leaflet overrides */
.leaflet-container {
    font-family: var(--font-body) !important;
}

.leaflet-tooltip {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    background: #1A1A1A !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 5px 10px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.leaflet-tooltip::before {
    border-top-color: #1A1A1A !important;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .locs-body {
        grid-template-columns: 1fr 360px;
    }

    .locs-grid-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .locs-body {
        grid-template-columns: 1fr;
        grid-template-rows: 380px auto;
        height: auto;
        overflow: visible;
    }

    .locs-map-col {
        position: relative;
        height: 380px;
    }

    .locs-grid-col {
        overflow-y: visible;
        border-left: none;
        border-top: 1px solid #E0E0E0;
    }

    .locs-grid-panel {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .locs-grid-panel {
        grid-template-columns: 1fr;
    }
}


/* ══════════════════════════════════════════════════════════════
   LOCATIONS PAGE — full rebuild (vertical layout)
   ══════════════════════════════════════════════════════════════ */

.locs-page {
    background: #F8F8F8;
}

/* ── HERO ───────────────────────────────────────────────────── */
.locs-hero {
    background: #1A1A1A;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 14px,
            rgba(255, 255, 255, 0.03) 14px, rgba(255, 255, 255, 0.03) 28px);
    padding: 40px 0 0;
}

.locs-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.locs-hero__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 6px;
    line-height: 1.15;
}

.locs-hero__sub {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.locs-hero__sub strong {
    color: #E61E1F;
}

/* Search */
.locs-hero__search {
    position: relative;
    flex-shrink: 0;
    width: 320px;
}

.locs-hero__search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    pointer-events: none;
}

.locs-hero__search input {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 16px 13px 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.locs-hero__search input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.locs-hero__search input:focus {
    border-color: #E61E1F;
    background: rgba(255, 255, 255, 0.14);
}

/* Filter Chips Strip */
.locs-chips {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 40px 20px; */
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.locs-chip {
    padding: 8px 20px;
    border-radius: 5px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.locs-chip:hover {
    border-color: #E61E1F;
    color: #FFFFFF;
}

.locs-chip--active {
    background: #E61E1F;
    border-color: #E61E1F;
    color: #FFFFFF;
}

/* ── MAP ────────────────────────────────────────────────────── */
.locs-map-wrap {
    position: relative;
    width: 100%;
    height: 480px;
    border-bottom: 3px solid #E61E1F;
}

#locs-map {
    width: 100%;
    height: 100%;
    background: #E8E4DC;
}

/* Popup card over map */
.locs-popup-card {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 290px;
    background: #FFFFFF;
    border-radius: 14px;
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.2);
    z-index: 900;
    overflow: hidden;
    animation: popupIn 0.22s ease;
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.locs-popup-card__close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.07);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 12px;
    transition: background 0.15s, color 0.15s;
}

.locs-popup-card__close:hover {
    background: #E61E1F;
    color: #fff;
}

.locs-popup-card__emirate {
    display: block;
    padding: 14px 16px 0;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #E61E1F;
}

.locs-popup-card__name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: #1A1A1A;
    margin: 4px 0 6px;
    padding: 0 16px;
}

.locs-popup-card__addr {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #777;
    margin: 0 0 14px;
    padding: 0 16px;
    line-height: 1.5;
}

.locs-popup-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: #1A1A1A;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.locs-popup-card__cta:hover {
    background: #E61E1F;
}

.locs-popup-card__cta i {
    transition: transform 0.2s;
}

.locs-popup-card__cta:hover i {
    transform: translateX(4px);
}

/* Leaflet */
.leaflet-container {
    font-family: var(--font-body) !important;
}

.leaflet-tooltip {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    background: #1A1A1A !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 5px 10px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
}

.leaflet-tooltip::before {
    border-top-color: #1A1A1A !important;
}

/* ── LISTING ─────────────────────────────────────────────────── */
.locs-listing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 80px;
}

/* Emirate group */
.locs-group {
    margin-bottom: 56px;
}

.locs-group__header {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid #E61E1F;
}

.locs-group__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0;
    line-height: 1;
}

.locs-group__count {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: #999;
    font-weight: 500;
}

/* Cards grid */
.locs-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

/* Individual card */
.locs-card {
    background: #FFFFFF;
    border: 2px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

.locs-card:hover {
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.locs-card--active {
    border-color: #E61E1F;
    box-shadow: 0 8px 30px rgba(230, 30, 31, 0.2);
}

/* Card top */
.locs-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 16px 12px;
    border-bottom: 1px solid #F0F0F0;
}

.locs-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #E61E1F;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 15px;
    flex-shrink: 0;
    transition: background 0.2s;
}

.locs-card__icon i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    color: #fff !important;
    font-size: 22px !important;
    display: inline-block !important;
}

.locs-card--active .locs-card__icon {
    background: #C41819;
}

.locs-card__name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 3px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.locs-card--active .locs-card__name {
    color: #E61E1F;
}

.locs-card__emirate {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    color: #AAAAAA;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Card info list */
.locs-card__info {
    list-style: none;
    padding: 14px 16px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
}

.locs-card__info li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
}

.locs-card__info li i {
    color: #E61E1F;
    font-size: 11px;
    margin-top: 2px;
    width: 12px;
    text-align: center;
    flex-shrink: 0;
}

.locs-card__info a {
    color: #555;
    text-decoration: none;
    transition: color 0.15s;
}

.locs-card__info a:hover {
    color: #E61E1F;
}

/* Card footer */
.locs-card__footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid #F0F0F0;
    background: #FAFAFA;
}

.locs-card__dir {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 14px;
    background: #1A1A1A;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.locs-card__dir:hover {
    background: #E61E1F;
}

.locs-card__view-map {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 9px 12px;
    background: transparent;
    border: 1.5px solid #E0E0E0;
    color: #777;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.locs-card__view-map:hover {
    border-color: #E61E1F;
    color: #E61E1F;
}

/* NEW Badge */
.locs-badge-new {
    display: inline-block;
    padding: 2px 7px;
    background: #E61E1F;
    color: #fff;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 100px;
    line-height: 1.7;
}

/* ── Empty state ─────────────────────────────────────────────── */
.locs-empty {
    text-align: center;
    padding: 80px 20px;
    max-width: 400px;
    margin: 0 auto;
}

.locs-empty i {
    font-size: 48px;
    color: #DDD;
    display: block;
    margin-bottom: 16px;
}

.locs-empty h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #333;
    margin: 0 0 8px;
}

.locs-empty p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
    .locs-map-wrap {
        height: 380px;
    }

    .locs-listing {
        padding: 40px 24px 60px;
    }

    .locs-chips,
    .locs-hero__inner {
        /* padding-left: 24px;
            padding-right: 24px; */
    }
}

@media (max-width: 768px) {
    .locs-hero__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .locs-hero__search {
        width: 100%;
    }

    .locs-map-wrap {
        height: 300px;
    }

    .locs-popup-card {
        width: calc(100% - 32px);
        left: 16px;
        top: 16px;
    }

    .locs-group__title {
        font-size: 1.25rem;
    }

    .locs-listing {
        padding: 32px 16px 56px;
    }

    .locs-chips {
        /* padding-left: 16px;
        padding-right: 16px; */
    }

    .locs-hero__inner {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 520px) {
    .locs-cards {
        grid-template-columns: 1fr;
    }

    .locs-hero__title {
        font-size: 1.65rem;
    }
}

.locs-no-results {
    text-align: center;
    padding: 60px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #999;
    grid-column: 1/-1;
}

/* ── Locations card footer — single Get Directions button ── */
.locs-card__footer {
    padding: 12px 16px !important;
}

.locs-card__dir {
    width: 100% !important;
    justify-content: center !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    border-radius: 10px !important;
    font-size: 0.82rem !important;
    padding: 10px 16px !important;
    gap: 8px !important;
}

.locs-card__dir i {
    font-size: 11px !important;
    transition: transform 0.2s;
}

.locs-card__dir:hover i {
    transform: translateX(4px);
}

/* ── Locations search + filter bar (below hero) ── */
.locs-bar {
    background: #FFFFFF;
    border-bottom: 1px solid #EBEBEB;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.locs-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

/* Search input */
.locs-bar__search {
    position: relative;
    flex: 0 0 280px;
    max-width: 300px;
}

.locs-bar__search i {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #AAAAAA;
    font-size: 13px;
    pointer-events: none;
}

.locs-bar__search input {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 14px 11px 38px;
    border: 1.5px solid #E0E0E0;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #333;
    outline: none;
    background: #FAFAFA;
    transition: border-color 0.2s, background 0.2s;
}

.locs-bar__search input:focus {
    border-color: #E61E1F;
    background: #FFFFFF;
}

/* Filter chips */
.locs-chips {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.locs-chip {
    padding: 8px 18px;
    border-radius: 5px;
    border: 1.5px solid #E0E0E0;
    background: transparent;
    color: #555;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.locs-chip:hover {
    border-color: #E61E1F;
    color: #E61E1F;
}

.locs-chip--active {
    background: #E61E1F;
    border-color: #E61E1F;
    color: #FFFFFF;
}

/* Branch count */
.locs-bar__count {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: #999;
    white-space: nowrap;
    flex-shrink: 0;
}

.locs-bar__count strong {
    color: #E61E1F;
}

@media (max-width: 768px) {
    .locs-bar__inner {
        padding: 12px 16px;
        gap: 8px;
        flex-wrap: wrap;
    }

    .locs-bar__search {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .locs-chips {
        flex-wrap: wrap;
    }
}

/* ── Fix chip text disappearing on click ── */
.locs-chip:active,
.locs-chip--active:active,
.locs-chip--active:focus,
.locs-chip:focus {
    color: #FFFFFF !important;
    outline: none;
}

.locs-chip--active,
.locs-chip--active:hover,
.locs-chip--active:active,
.locs-chip--active:focus {
    background: #E61E1F !important;
    border-color: #E61E1F !important;
    color: #FFFFFF !important;
}

/* ── Google Maps embed inside branch card ── */
.locs-card__map {
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    display: block;
    line-height: 0;
}

.locs-card__map iframe {
    width: 100% !important;
    height: 100% !important;
    display: block;
    border: 0;
}


/* =============================================
   HERO SECTION — Full-width Background Slider
   ============================================= */

/* ---- CSS Variables for hero ---- */
:root {
    --hero-orange: #F97316;
    --hero-orange-light: #FDBA74;
    --hero-dark-green: #0D2818;
    --hero-overlay-bg: rgba(0, 0, 0, 0.58);
    --hero-height: 100vh;
    --hero-min-height: 620px;
}

/* ---- Section container ---- */
.hero-section {
    position: relative;
    width: 100%;
    height: var(--hero-height);
    min-height: var(--hero-min-height);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Background Slides ---- */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease;
    /* Ken Burns (zoom-in) */
    animation: kenBurns 20s ease-in-out infinite;
    animation-play-state: paused;
}

.hero-slide--active {
    opacity: 1;
    animation-play-state: running;
}

/* Each slide gets its own slightly offset Ken Burns phase */
.hero-slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    animation-delay: -6.67s;
}

.hero-slide:nth-child(3) {
    animation-delay: -13.33s;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translateX(0%) translateY(0%);
    }

    25% {
        transform: scale(1.06) translateX(-1%) translateY(-1%);
    }

    50% {
        transform: scale(1.12) translateX(1%) translateY(-0.5%);
    }

    75% {
        transform: scale(1.06) translateX(-0.5%) translateY(1%);
    }

    100% {
        transform: scale(1) translateX(0%) translateY(0%);
    }
}

/* ---- Dark Overlay ---- */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--hero-overlay-bg);
    /* subtle dark-green tint at bottom for depth */
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.50) 0%,
            rgba(0, 0, 0, 0.58) 50%,
            rgba(13, 40, 24, 0.70) 100%);
}

/* ---- Hero Content Wrapper ---- */
.hero-content-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ---- Hero Content ---- */
.hero-content {
    max-width: 780px;
    width: 100%;
}

/* ---- Top Label ---- */
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--hero-orange-light);
    margin-bottom: 20px;
}

.hero-label-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--hero-orange);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.6);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(249, 115, 22, 0);
    }
}

/* ---- Main Headline ---- */
.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.18;
    color: #FFFFFF;
    margin-bottom: 22px;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* ---- Orange Highlight ---- */
.hero-highlight {
    color: #fff;
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    /* background: linear-gradient(90deg, var(--hero-orange), var(--hero-orange-light)); */
    border-radius: 2px;
    opacity: 0.6;
}

/* ---- Description ---- */
.hero-description {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 400;
    line-height: 1.75;
    color: #fff;
    max-width: 560px;
    margin: 0 auto 36px;
}

/* ---- CTA Wrap ---- */
.hero-cta-wrap {
    margin-bottom: 32px;
}

/* ---- Primary CTA Button ---- */
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background-color: #FFFFFF;
    color: #111111;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.02em;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.15);
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn-primary svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.hero-btn-primary:hover {
    background-color: #E61E1F;
    color: #FFFFFF;
    border-color: #E61E1F;
    transform: translateY(-3px);
    box-shadow:
        0 12px 36px rgba(230, 30, 31, 0.50),
        0 4px 12px rgba(0, 0, 0, 0.20);
}

.hero-btn-primary:hover svg {
    transform: translateX(4px);
}

.hero-btn-primary:active {
    transform: translateY(-1px);
}

/* ---- Trust Indicator ---- */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.hero-trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatar {
    display: inline-block;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, 0.9);
    background-size: cover;
    background-position: center;
    margin-left: -10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.trust-avatar:first-child {
    margin-left: 0;
}

/* Coloured fallback gradients for avatars */
.trust-avatar--1 {
    background: linear-gradient(135deg, #F97316, #FB923C);
}

.trust-avatar--2 {
    background: linear-gradient(135deg, #16A34A, #4ADE80);
}

.trust-avatar--3 {
    background: linear-gradient(135deg, #2563EB, #60A5FA);
}

.trust-avatar--4 {
    background: linear-gradient(135deg, #7C3AED, #A78BFA);
}

.hero-trust-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    letter-spacing: 0.01em;
}

.trust-count {
    font-weight: 700;
    color: #FFFFFF;
}

/* ---- Slide Dots ---- */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.40);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.35s ease;
    position: relative;
}

.hero-dot--active {
    width: 28px;
    border-radius: 5px;
    background: #E61E1F;
}

.hero-dot:hover:not(.hero-dot--active) {
    background: rgba(255, 255, 255, 0.70);
}

/* ---- Scroll Indicator ---- */
.hero-scroll-indicator {
    position: absolute;
    bottom: 44px;
    right: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.65;
    animation: scrollBounce 2.4s ease-in-out infinite;
}

.hero-scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.hero-scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scrollWheel 2.4s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    80% {
        transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* ---- Entrance Animations ---- */
.animate-in {
    opacity: 0;
    transform: translateY(28px);
    animation: fadeSlideUp 0.8s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.15s;
}

.animate-delay-2 {
    animation-delay: 0.35s;
}

.animate-delay-3 {
    animation-delay: 0.55s;
}

.animate-delay-4 {
    animation-delay: 0.75s;
}

.animate-delay-5 {
    animation-delay: 0.95s;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   HERO — RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100svh;
        align-items: flex-end;
        padding-bottom: 80px;
    }

    .hero-content-wrap {
        padding: 20px 20px 0;
        align-items: flex-end;
        justify-content: flex-start;
        text-align: left;
    }

    .hero-content {
        max-width: 100%;
        text-align: left;
    }

    .hero-label {
        justify-content: flex-start;
    }

    .hero-headline {
        font-size: clamp(1.9rem, 8vw, 2.6rem);
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-trust {
        justify-content: flex-start;
    }

    .hero-dots {
        bottom: 24px;
    }
}

@media (max-width: 480px) {
    .hero-btn-primary {
        padding: 15px 32px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* Respect reduce-motion preference */
@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        animation: none !important;
    }

    .animate-in {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-scroll-indicator,
    .hero-label-dot {
        animation: none !important;
    }
}


/* ================================================================
   FRONT-PAGE SECTIONS
   ================================================================ */

/* ---- Shared tokens ---- */
.fp-section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.fp-section-tag--light {
    color: rgba(255, 255, 255, 0.75);
}

.fp-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--secondary-color);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.fp-section-title span {
    color: var(--primary-color);
}

.fp-section-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

.fp-section-header {
    text-align: center;
    margin-bottom: 56px;
}

/* ---- Scroll reveal ---- */
.fp-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fp-reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ================================================================
   SECTION 1 — WHY CHOWKING (Feature strip)
   ================================================================ */
.fp-features {
    padding: 80px 0;
    background: #FAFAFA;
    border-top: 1px solid #F0F0F0;
}

.fp-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.fp-feature-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1.5px solid #F0EDED;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.fp-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

.fp-feature-card:hover::before {
    transform: scaleX(1);
}

.fp-feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(230, 30, 31, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--primary-color);
    transition: background 0.3s ease, color 0.3s ease;
}

.fp-feature-card:hover .fp-feature-icon {
    background: var(--primary-color);
    color: #FFFFFF;
}

.fp-feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.fp-feature-card p {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #777;
    line-height: 1.65;
    margin: 0;
}

/* ================================================================
   SECTION 2 — SIGNATURE DISHES
   ================================================================ */
.fp-menu {
    padding: 96px 0 80px;
    background: #FFFFFF;
}

.fp-dishes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}

.fp-dish-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1.5px solid #F0EDED;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.fp-dish-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.fp-dish-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.fp-dish-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.fp-dish-card:hover .fp-dish-img-wrap img {
    transform: scale(1.08);
}

.fp-dish-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary-color);
    color: #FFF;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.fp-dish-badge--green {
    background: #16A34A;
}

.fp-dish-badge--dark {
    background: #111111;
}

.fp-dish-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fp-dish-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.fp-dish-desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: #888;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 18px;
}

.fp-dish-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.fp-dish-link:hover {
    gap: 10px;
    color: #c41718;
}

.fp-menu-cta {
    text-align: center;
}

/* ================================================================
   SECTION 3 — BRAND STORY
   ================================================================ */
.fp-story {
    background: #FDF5EE;
    padding: 100px 0;
    overflow: hidden;
}

.fp-story__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.fp-story__img-stack {
    position: relative;
}

.fp-story__img--main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    display: block;
}

.fp-story__stat-chip {
    position: absolute;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 130px;
}

.fp-story__stat-chip--1 {
    bottom: 40px;
    left: -28px;
}

.fp-story__stat-chip--2 {
    top: 40px;
    right: -28px;
}

.fp-stat-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.fp-stat-label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fp-story__text-col {
    padding-left: 20px;
}

.fp-story__body {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.fp-story__highlights {
    display: flex;
    gap: 32px;
    margin: 32px 0 36px;
    padding: 28px 0;
    border-top: 1.5px solid #E8DDD4;
    border-bottom: 1.5px solid #E8DDD4;
}

.fp-story__highlight {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fp-story__highlight strong {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.fp-story__highlight span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ================================================================
   SECTION 4 — ORDER CTA BANNER
   ================================================================ */
.fp-order-cta {
    position: relative;
    padding: 100px 0;
    background: var(--secondary-color);
    overflow: hidden;
}

.fp-order-cta__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(230, 30, 31, 0.20) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(230, 30, 31, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.fp-order-cta__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.fp-order-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.18;
    margin-bottom: 20px;
}

.fp-order-cta__title span {
    color: var(--primary-color);
}

.fp-cta-location {
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.fp-cta-location__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.fp-cta-location__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin:0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.fp-cta-location__address {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 16px 26px;
    line-height: 1.4;
}

.fp-cta-location__map {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fp-cta-location__map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.fp-order-cta__desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
    margin-bottom: 32px;
}

.fp-order-cta__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 8px 28px rgba(230, 30, 31, 0.40);
}

.fp-order-cta__phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(230, 30, 31, 0.55);
    background: #c41718;
}

.fp-platforms-label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.50);
    margin-bottom: 20px;
}

.fp-platforms-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.fp-platform-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 110px;
    backdrop-filter: blur(4px);
}

.fp-platform-btn img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.fp-platform-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.fp-platform-btn:hover img {
    opacity: 1;
}

.fp-find-us-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.25s ease;
}

.fp-find-us-link:hover {
    color: #FFFFFF;
}

/* ================================================================
   FRONT-PAGE — RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {

    .fp-features__grid,
    .fp-dishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-story__inner,
    .fp-order-cta__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .fp-story__text-col {
        padding-left: 0;
    }

    .fp-story__stat-chip--1 {
        left: 10px;
    }

    .fp-story__stat-chip--2 {
        right: 10px;
    }
}

@media (max-width: 768px) {

    .fp-features,
    .fp-menu,
    .fp-story,
    .fp-order-cta {
        padding: 60px 0;
    }

    .fp-features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .fp-feature-card {
        padding: 24px 20px;
    }

    .fp-dishes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .fp-section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .fp-story__img--main {
        height: 280px;
    }

    .fp-story__stat-chip {
        display: none;
    }

    .fp-story__highlights {
        gap: 20px;
    }

    .fp-order-cta__inner {
        gap: 40px;
    }

    .fp-platforms-grid {
        gap: 12px;
    }

    .fp-platform-btn {
        min-width: 90px;
        padding: 10px 16px;
    }
}

@media (max-width: 520px) {

    .fp-features__grid,
    .fp-dishes-grid {
        grid-template-columns: 1fr;
    }

    .fp-story__highlights {
        flex-wrap: wrap;
    }
}