/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Chinatown Teh Tarik Theme Colors */
    --primary-dark: #9f0f14;       /* Deep Espresso */
    --primary-light: #FDFBF7;      /* Creamy Off-White */
    --accent-gold: #e74c3c;        /* Saffron / Teh Tarik Froth */
    --accent-green: #4A7C59;       /* Fresh Pandan / Mint */
    --text-dark: #1A1A1A;
    --text-gray: #5A5A5A;
    --text-light: #FDFBF7;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #D4943A 100%);
    --gradient-dark: linear-gradient(135deg, #2C1A11 0%, #1A0F0A 100%);
    
    /* Spacing & Transitions */
    --section-padding: 20px 0;
    --container-max: 1400px;
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: clip;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-medium);
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-dark);
    border: 2px solid var(--accent-gold);
	font-weight:600;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #FFD700;
    transform: translateY(-3px);
	font-weight:600;
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===================================
   INFINITE MARQUEE TOP BAR
   =================================== */
.top-bar-marquee {
    background: var(--primary-dark);
    border-bottom: 1px solid rgba(227, 168, 87, 0.2);
    position: relative;
    z-index: 1001;
    overflow: hidden;
    padding: 15px 0;
}

.marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
}

.top-bar-marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-content {
    display: flex;
    align-items: center;
    padding: 0 50px;
    white-space: nowrap;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.marquee-item i {
    color: #FFD700;
    font-size: 14px;
}

.marquee-item a:hover {
    color: #FFD700;
}

.marquee-divider {
    color: #FFD700;
    margin: 0 25px;
    font-size: 10px;
    opacity: 0.6;
}

.marquee-item.highlight {
    color: #FFD700;
    font-weight: 600;
}

/* Gradient Fade on Edges */
.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.marquee-container::before { left: 0; background: linear-gradient(to right, var(--primary-dark), transparent); }
.marquee-container::after { right: 0; background: linear-gradient(to left, var(--primary-dark), transparent); }

/* Preloader Overlay */
#crystal-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0f0f0f; /* Deep premium charcoal/black */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

#crystal-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  position: relative;
}

/* Logo Container with Shimmer Effect */
.logo-container {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Contains the shimmer */
  border-radius: 8px; /* Optional: if your logo is square/rounded */
}

.preloader-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4)); /* Subtle gold glow */
}

/* The Crystal Shine/Sweep Animation */
.logo-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.1) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: crystal-shine 2.5s infinite;
}

@keyframes crystal-shine {
  0% { left: -100%; }
  30% { left: 200%; }
  100% { left: 200%; }
}

/* Loading Text with Staggered Animation */
.loading-text {
  font-family: 'Playfair Display', 'Georgia', serif; /* Elegant serif font */
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 6px;
  color: #d4af37; /* Premium gold */
  margin-bottom: 20px;
}

.loading-text span {
  display: inline-block;
  animation: text-flicker 1.5s infinite;
}

.loading-text span:nth-child(1) { animation-delay: 0.1s; }
.loading-text span:nth-child(2) { animation-delay: 0.2s; }
.loading-text span:nth-child(3) { animation-delay: 0.3s; }
.loading-text span:nth-child(4) { animation-delay: 0.4s; }
.loading-text span:nth-child(5) { animation-delay: 0.5s; }
.loading-text span:nth-child(6) { animation-delay: 0.6s; }
.loading-text span:nth-child(7) { animation-delay: 0.7s; }

@keyframes text-flicker {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

/* Elegant Progress Bar */
.progress-bar {
  width: 180px;
  height: 2px;
  background: rgba(212, 175, 55, 0.15);
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #b8860b, #d4af37, #f9e076);
  animation: load-progress 2s ease-in-out forwards;
}

@keyframes load-progress {
  0% { width: 0%; }
  50% { width: 75%; }
  100% { width: 100%; }
}

/* ===================================
   MAIN HEADER / NAVIGATION
   =================================== */
.main-header {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-medium);
    background: #fdf3f300;
}

.main-header.scrolled {
    background: hsl(358.33deg 100% 97.24%);
    backdrop-filter: blur(10px);
    padding: 6px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    top: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

@media (max-width: 767px) {
    .navbar {
        margin-top: 0px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
/* Safety net so logo never bloats the header again */
.logo img {
    width: auto;
    height: auto;
    max-width: 64px;
    max-height: 56px;
}
.logo-icon {
    font-size: 32px;
    color: var(--accent-gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--text-light);
    margin: 0;
    line-height: 1;
}

.logo-subtitle {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: 4px;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-fast);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-gold);
}

.btn-reserve {
    padding: 10px 25px;
    background: var(--gradient-primary);
    color: var(--primary-dark) !important;
    border-radius: 50px;
    font-weight: 600;
}

.btn-reserve::after { display: none; }
.btn-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(227, 168, 87, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: #9f0f14;
    transition: var(--transition-fast);
}

/* ---------- Mobile Quick Icon Links (Home + Contact) ---------- */
.mobile-quick-links { display: none; }   /* hidden on desktop */

.quick-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(159, 15, 20, .07);
    border: 1.5px solid rgba(159, 15, 20, .18);
    color: #9f0f14;
    font-size: 15px;
    position: relative;
    box-shadow: 0 3px 10px rgba(44, 26, 17, .08);
    transition: all .35s cubic-bezier(.175, .885, .32, 1.275);
}
.quick-icon-btn:hover,
.quick-icon-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(227, 168, 87, .45);
}
.quick-icon-btn:active { transform: scale(.92); }
/* tiny gold dot under the icon of the page you're on */
.quick-icon-btn.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #FFD700;
    box-shadow: 0 0 6px rgba(255, 215, 0, .8);
}

@media (max-width: 992px) {
    .mobile-quick-links {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: auto;     /* pushes icons right, next to the toggle */
        margin-right: 14px;
    }
}

@media (max-width: 480px) {
    .mobile-quick-links { gap: 8px; margin-left: 10px; }
    .quick-icon-btn { width: 38px; height: 38px; font-size: 13px; }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    /* min-height: 700px; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    transform-origin: top center;   /* ðŸ‘ˆ THE FIX â€” zoom grows downward only, top edge stays locked */
    animation: slideZoom 20s infinite;
}
@keyframes slideZoom {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.05); }
}

@media (max-width: 576px) {
    .slide { animation: none; }
}

.slide.active { opacity: 1; }

/* .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(44, 26, 17, 0.7), rgba(44, 26, 17, 0.4));
} */

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 18px;
    color: rgba(253, 251, 247, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-gold);
    transform: scale(1.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    text-align: center;
    color: var(--text-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    transform: rotate(45deg);
    margin: 10px auto 0;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { transform: rotate(45deg) translate(0, 0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: rotate(45deg) translate(10px, 10px); opacity: 0; }
}

h2.section-title {
    font-size: 35px;
}
.text-justify{text-align:justify;}
/* ===================================
   RESPONSIVE DESIGN (Mobile)
   =================================== */
@media (max-width: 992px) {
    .main-header { top: 40px; }
    .top-bar-marquee { display: block; }
	.scroll-indicator {
    position: absolute;
    bottom: 30px!important;}
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 80vh;
        background: #f1ebeb;
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: var(--transition-medium);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        gap: 25px;
    }
    
    .nav-menu.active { right: 0; }
    
    .nav-menu li { width: 100%; text-align: center; }
    .nav-menu a { display: block; padding: 10px 0; font-size: 16px; }
    .nav-menu a::after { display: none; }
    
    .hamburger { display: flex; z-index: 1001; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
    
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 300px; }
}

@media (max-width: 576px) {
    .hero { max-height: 400px!important; }
    .hero-title { font-size: 36px; }
    .logo h1 { font-size: 22px; }
    .logo-subtitle { font-size: 9px; }
	h2.section-title{
    font-size: 25px!important;
	}
}


/* ===================================
   ABOUT SECTION STYLES
   =================================== */
.about-section {
    padding: var(--section-padding);
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(227, 168, 87, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 124, 89, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Content Styles */
.about-content {
    padding-right: 20px;
}

.about-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text:first-of-type {
    margin-top: 25px;
}

/* Features */
.about-features {
    display: grid;
    gap: 25px;
    margin: 40px 0;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.feature-box:hover {
    transform: translateX(10px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(227, 168, 87, 0.15);
}

.feature-box:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.feature-box:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
}

.feature-icon i {
    font-size: 28px;
    color: var(--primary-dark);
}

.feature-info h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.feature-info p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* About Button */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.about-btn i {
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateX(5px);
}

/* Images Grid */
.about-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-card:hover .image-wrapper img {
    transform: scale(1.1);
}

/* Main Large Image */
.main-image {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    min-height: 500px;
}

/* Small Images */
.small-image {
    min-height: 230px;
}

.top-right {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.bottom-right {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(44, 26, 17, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.image-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 24px;
    color: var(--accent-gold);
}

.overlay-content span {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* Image Badges */
.image-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: var(--gradient-primary);
    padding: 15px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(227, 168, 87, 0.4);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.badge-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    color: var(--primary-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-badge {
    position: absolute;
    bottom: 10px;
    left: 80px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.floating-badge i {
    color: var(--accent-gold);
    font-size: 16px;
}

.floating-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Decorative Circles */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    z-index: -1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: rotate 20s linear infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation: rotate 15s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 0.8s ease 0.3s forwards;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 0.8s ease 0.6s forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease 0.2s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .about-grid {
        gap: 50px;
    }
    
    .image-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .main-image {
        min-height: 400px;
    }
    
    .small-image {
        min-height: 180px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .main-image,
    .small-image {
        grid-column: 1 / 2;
        grid-row: auto;
        min-height: 300px;
    }
    
    .top-right,
    .bottom-right {
        min-height: 250px;
    }
    
    .about-features {
        gap: 15px;
    }
    
    .feature-box {
        padding: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
    
    .image-badge {
        padding: 12px 20px;
        bottom: 20px;
        right: 20px;
    }
    
    .badge-number {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .about-text {
        font-size: 15px;
    }
    
    .feature-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-info h4 {
        font-size: 16px;
    }
    
    .image-grid {
        gap: 15px;
    }
    
    .main-image,
    .small-image {
        min-height: 250px;
    }
    
    .decorative-circle {
        display: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .image-wrapper img,
    .feature-box,
    .image-card,
    .about-btn i,
    .feature-icon,
    .overlay-content,
    .image-badge,
    .floating-badge,
    .decorative-circle {
        animation: none;
        transition: none;
    }
}

/* ===================================
FOOTER â€” CLEAN PROFESSIONAL (FLAT TOP, NO CURVE)
=================================== */
.site-footer {
    background: linear-gradient(180deg, #1B0F0A 0%, #120A06 100%);
    color: #fff;
    padding: 40px 0 0;
    position: relative;
    overflow: hidden;
}

/* ---------- 5-Column Grid ---------- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr 1.1fr 1.2fr .9fr;
    gap: 45px;
    padding-bottom: 20px;
}

/* ---------- Brand Column ---------- */
.footer-logo { display: inline-block; margin-bottom: 18px; }
.footer-logo-img {
    max-width: 170px;
    filter: brightness(1.1);
    transition: transform .4s ease;
}
.footer-logo-img:hover { transform: scale(1.04); }
.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.8;
    margin-bottom: 18px;
}
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(227, 168, 87, .25);
    transition: all .3s ease;
}
.badge-halal { background: rgba(74, 124, 89, .18); color: #7ed09a; }
.badge-since { background: rgba(227, 168, 87, .12); color: #E3A857; }
.footer-badges .badge:hover {
    transform: translateY(-3px);
    border-color: rgba(227, 168, 87, .5);
}

/* ---------- Column Headings â€” GOLD ---------- */
.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #E3A857;
    margin-bottom: 24px;
    letter-spacing: .3px;
}
.legal-title { margin-top: 32px; }

/* ---------- Clean Link Lists ---------- */
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 14px; }
.footer-list a {
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    transition: all .3s ease;
	
}
.footer-list a:hover {
    color: #FFD700;
    padding-left: 6px;
	text-decoration: underline;
	font-weight:bold;
}

/* ---------- Opening Hours ---------- */
.hours-list { list-style: none; padding: 0; margin: 0 0 16px; }
.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    border-bottom: 1px dashed rgba(255, 215, 0, .15);
}
.hours-item .day { font-weight: 500; }
.hours-item .time {
    font-weight: 600;
    color: #FFD700;
    white-space: nowrap;
}
.footer-note {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    font-style: italic;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-note i { color: #E3A857; }

/* Live open/closed pill */
.open-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}
.open-status i { font-size: 8px; }
.open-status.open {
    background: rgba(74, 124, 89, .2);
    color: #7ed09a;
    border: 1px solid rgba(74, 124, 89, .45);
}
.open-status.open i { animation: pulseDot 1.6s infinite; }
.open-status.closed {
    background: rgba(159, 15, 20, .25);
    color: #ff8080;
    border: 1px solid rgba(159, 15, 20, .45);
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
}

/* ---------- Contact ---------- */
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
}
.footer-contact li i {
    color: #E3A857;
    width: 18px;
    margin-top: 3px;
    font-size: 14px;
}
.footer-contact a:hover { color: #FFD700; }

/* ---------- Plain Social Icons ---------- */
.footer-social { display: flex; gap: 20px; margin-bottom: 6px; }
.footer-social a {
    color: #fff;
    font-size: 18px;
    transition: all .3s ease;
}
.footer-social a:hover {
    color: #FFD700;
    transform: translateY(-4px);
}

/* ---------- Bottom â€” Centered Copyright ---------- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 26px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    margin: 0;
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--primary-dark);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(227, 168, 87, .4);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(227, 168, 87, .6);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .site-footer { padding-top: 60px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
    .back-to-top { bottom: 20px; right: 20px; width: 45px; height: 45px; }
}
@media (max-width: 520px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .open-status i { animation: none; }
}
/* ===================================
   SIGNATURE DISHES PREVIEW
   =================================== */
.signature-preview {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, #faf8f5 0%, #f5f0e8 100%);
    position: relative;
    overflow: hidden;
}

.signature-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(227, 168, 87, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(74, 124, 89, 0.03) 0%, transparent 30%);
    pointer-events: none;
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.signature-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.signature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.signature-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.signature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.signature-card:hover .signature-image img {
    transform: scale(1.1);
}

.signature-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #8B2332 0%, #A52A2A 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(139, 35, 50, 0.3);
}

.signature-content {
    padding: 25px;
}

.signature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.signature-header h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.signature-price {
    font-size: 18px;
    font-weight: 700;
    color: #8B2332;
    white-space: nowrap;
}

.signature-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.view-menu-cta {
    text-align: center;
    margin-top: 50px;
}

.view-menu-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 16px;
    background: linear-gradient(135deg, #8B2332 0%, #A52A2A 100%);
    border: 2px transparent;
	color:#fff!important;
}

.view-menu-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 35, 50, 0.4);
    background: var(--primary-dark);
    color: var(--accent-gold);
}

.view-menu-cta .btn-primary i {
    transition: transform 0.3s ease;
}

.view-menu-cta .btn-primary:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .signature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .signature-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .signature-image {
        height: 280px;
    }
    
    .signature-header h3 {
        font-size: 18px;
    }
    
    .signature-price {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .signature-image {
        height: 250px;
    }
    
    .signature-content {
        padding: 20px;
    }
}

/* ===================================
   WHY CHOOSE US - STEPPER SECTION (FIXED)
   =================================== */
.why-choose-us {
    padding: var(--section-padding);
    background: #fff;
    position: relative;
    overflow: hidden;
}

.stepper-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px 40px;
}

/* Wave Line Container */
.wave-line-container {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    height: 100px;
    z-index: 1;
    pointer-events: none;
}

.wave-svg {
    width: 100%;
    height: 100%;
}

.wave-base {
    fill: none;
    stroke: #9f3a3d;
    stroke-width: 2;
    stroke-dasharray: 8, 8;
    stroke-linecap: round;
}

.wave-progress {
    fill: none;
    stroke: url(#waveGradient);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2s ease;
    filter: drop-shadow(0 0 6px rgba(227, 168, 87, 0.5));
}

.stepper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* FIXED: No grayscale, fully visible, just slightly scaled down */
.step-item {
    position: relative;
    opacity: 0.75;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform: scale(0.95);
}

.step-item:hover {
    opacity: 0.9;
    transform: scale(0.98);
}

.step-item.active {
    opacity: 1;
    transform: scale(1.05) translateY(-10px);
    z-index: 10;
}

.step-marker-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

.marker-label {
    font-size: 16px;
    font-weight: 600;
    color: #d30000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-item.active .marker-label {
    color: var(--accent-gold);
    font-weight: 700;
    transform: scale(1.05);
}

.marker-circle {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.step-item.active .marker-circle {
    transform: scale(1.1);
}

.image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 4px solid rgba(227, 168, 87, 0.2);
    transition: all 0.4s ease;
    background: white;
}

.step-item.active .image-wrapper {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(227, 168, 87, 0.4), inset 0 0 20px rgba(227, 168, 87, 0.2);
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.step-item.active .step-image {
    transform: scale(1.15);
}

.marker-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    animation: pulseRing 2s infinite;
}

.step-item.active .marker-ring {
    opacity: 1;
    transform: scale(1);
}

@keyframes pulseRing {
    0% { transform: scale(0.8); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.5; }
    100% { transform: scale(0.8); opacity: 0; }
}

.step-content {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 3px solid rgba(227, 168, 87, 0.1);
    transition: all 0.4s ease;
}

.step-item.active .step-content {
    border-color: var(--accent-gold);
    box-shadow: 0 15px 50px rgba(227, 168, 87, 0.25);
    background: linear-gradient(to bottom, white 0%, rgba(227, 168, 87, 0.03) 100%);
}

.step-content h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    transition: color 0.3s ease;
}

.step-item.active .step-content h3 {
    color: var(--accent-gold);
}

.step-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stepper-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .wave-line-container {
        display: none;
    }
    .step-item {
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .stepper-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .step-item {
        max-width: 400px;
    }
    .marker-circle {
        width: 100px;
        height: 100px;
    }
    .marker-label {
        font-size: 11px;
    }
    .step-content {
        padding: 25px 20px;
    }
    .step-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .marker-circle {
        width: 90px;
        height: 90px;
    }
    .step-content h3 {
        font-size: 18px;
    }
    .step-content p {
        font-size: 13px;
    }
}
/* Default - circular for stepper */
.image-wrapper {
    border-radius: 50%;
}

/* Override for rectangular images */
.image-wrapper.rectangular-image,
.about-section .image-wrapper,
.signature-preview .signature-image {
    border-radius: 0px 5px !important;
}

.image-wrapper.rectangular-image img,
.about-section .image-wrapper img {
    border-radius: 15px !important;
}

/* ===================================
GALLERY SECTION â€” MODERN POLAROID STYLE
(Different animations than Signature)
=================================== */
.gallery-section {
    padding: 40px 0 20px;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
    position: relative;
    overflow: hidden;
}

/* Header â€” pill tag + 3D flip-down reveal */
.gallery-section .section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}
.gallery-section .section-tag {
    padding: 8px 24px;
    border: 2px solid rgba(212, 148, 58, .5);
    border-radius: 50px;
    background: #fff;
    color: #9f0f14;
}
.gallery-section .section-tag::before { display: none; }
.gallery-section .section-description {
    color: var(--text-gray);
    font-size: 16px;
    margin-top: 12px;
}

/* DIFFERENT reveal: 3D flip-down (Signature uses blur-fade) */
[data-greveal] {
    opacity: 0;
    transform: perspective(800px) rotateX(14deg) translateY(35px);
    transform-origin: top center;
    transition: opacity 1.1s ease, transform 1.1s cubic-bezier(.22, .61, .36, 1);
}
[data-greveal].g-in { opacity: 1; transform: none; }

/* Rows slide in from opposite sides */
.gallery-row { overflow: hidden; margin-bottom: 20px; opacity: 0; transition: opacity 1.3s ease, transform 1.3s cubic-bezier(.22, .61, .36, 1); }
.gallery-row.row-1 { transform: translateX(-90px); }
.gallery-row.row-2 { transform: translateX(90px); }
.gallery-row.g-in { opacity: 1; transform: translateX(0); }
.gallery-row:last-child { margin-bottom: 0; }

/* Tracks â€” opposite directions, different speeds */
.gallery-track { display: flex; width: max-content; }
.gallery-set { display: flex; gap: 26px; padding-right: 26px; }
.track-left  { animation: gScrollLeft 45s linear infinite; }
.track-right { animation: gScrollRight 55s linear infinite; }
.gallery-row:hover .gallery-track { animation-play-state: paused; }
@keyframes gScrollLeft  { from { transform: translateX(0); }   to { transform: translateX(-50%); } }
@keyframes gScrollRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ---------- Polaroid card ---------- */
.gallery-item {
    flex: 0 0 300px;
    width: 300px;
    background: #fff;
    padding: 12px 12px 14px;
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(44, 26, 17, .12);
    cursor: pointer;
    position: relative;
    transition: transform .7s cubic-bezier(.22, .61, .36, 1), box-shadow .7s ease;
}
/* scattered postcard rotations */
.gallery-item:nth-child(odd)  { transform: rotate(-2deg); }
.gallery-item:nth-child(even) { transform: rotate(2deg); }
.gallery-item:hover {
    transform: rotate(0deg) translateY(-14px) scale(1.05);
    box-shadow: 0 28px 60px rgba(44, 26, 17, .28);
    z-index: 5;
}
/* washi tape */
.gallery-item::before {
    content: '';
    position: absolute;
    top: -11px; left: 50%;
    width: 76px; height: 22px;
    background: rgba(227, 168, 87, .4);
    border-radius: 2px;
    transform: translateX(-50%) rotate(-3deg);
    z-index: 6;
}
.gallery-item:nth-child(even)::before { transform: translateX(-50%) rotate(3deg); }

/* Photo with Ken Burns breathing (ambient zoom â€” unique to gallery) */
.g-media {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 4px;
}
.g-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 14s ease-in-out infinite alternate;
}
.gallery-item:nth-child(2) .g-media img { animation-delay: 2s; }
.gallery-item:nth-child(3) .g-media img { animation-delay: 4s; }
.gallery-item:nth-child(4) .g-media img { animation-delay: 6s; }
@keyframes kenBurns {
    from { transform: scale(1) translate(0, 0); }
    to   { transform: scale(1.14) translate(2%, -2%); }
}

/* Hover overlay + spinning zoom bubble */
.g-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 10, 5, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .5s ease;
}
.gallery-item:hover .g-overlay { opacity: 1; }
.g-zoom {
    width: 58px; height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    color: #9f0f14;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: scale(.4) rotate(-120deg);
    transition: transform .5s cubic-bezier(.175, .885, .32, 1.275);
}
.gallery-item:hover .g-zoom { transform: scale(1) rotate(0deg); }

/* Polaroid caption */
.g-caption {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    color: #5A4636;
    text-align: center;
    padding-top: 12px;
}

/* ---------- BIG Lightbox (image always LARGE) ---------- */
.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 8, 4, .93);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: gFadeIn .35s ease;
}
.image-modal.active { display: flex; }
@keyframes gFadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-content {
    text-align: center;
    max-width: 94vw;
    animation: modalZoom .5s cubic-bezier(.22, .61, .36, 1);
}
@keyframes modalZoom {
    from { opacity: 0; transform: scale(.7); }
    to   { opacity: 1; transform: scale(1); }
}
/* ðŸ‘‡ forces the image to display BIG, never thumbnail size */
.modal-content img {
    width: min(92vw, 800px);
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .65);
    display: block;
    margin: 0 auto;
}
.modal-title {
    color: var(--text-light);
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    margin-top: 18px;
}
.modal-count {
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
    letter-spacing: 3px;
    margin-top: 6px;
}
.modal-close {
    position: absolute;
    top: 25px; right: 30px;
    width: 55px; height: 55px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 22px;
    z-index: 2001;
    transition: all .4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .3);
}
.modal-close:hover { transform: rotate(90deg) scale(1.1); }
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px; height: 60px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 22px;
    z-index: 2001;
    transition: all .3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .3);
}
.modal-nav:hover { transform: translateY(-50%) scale(1.12); }
.modal-nav.prev { left: 30px; }
.modal-nav.next { right: 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .gallery-item { flex: 0 0 260px; width: 260px; }
    .g-media { height: 260px; }
}

/* ---------- MOBILE â‰¤640px ----------
   NO marquee, NO horizontal swipe â€”
   images stack ONE BY ONE going DOWN  */
@media (max-width: 640px) {
    .gallery-section { padding: 40px 20px; }

    /* auto-scroll + zoom OFF on mobile */
    .track-left,
    .track-right { animation: none; }
    .g-media img { animation: none; }

    /* rows become a simple vertical list */
    .gallery-row {
        overflow: visible;
        margin-bottom: 25px;
    }
    .gallery-track {
        display: block;
        width: 100%;
    }

    /* hide the duplicated set (it only exists for the desktop infinite loop) */
    .gallery-set + .gallery-set { display: none; }

    .gallery-set {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 15px 20px 5px;   /* top space = room for washi tape */
    }

    /* full-width polaroids, straight, stacked one below another */
    .gallery-item,
    .gallery-item:nth-child(odd),
    .gallery-item:nth-child(even) {
        flex: none;
        width: 100%;
        transform: none;
    }

    .g-media { height: 320px; }
    .g-caption { font-size: 14px; padding-top: 10px; }
    .modal-nav { width: 46px; height: 46px; font-size: 18px; }
    .modal-nav.prev { left: 12px; }
    .modal-nav.next { right: 12px; }
    .modal-close { top: 15px; right: 15px; width: 46px; height: 46px; }
    .modal-title { font-size: 18px; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .track-left, .track-right, .g-media img { animation: none; }
    [data-greveal], .gallery-row { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===================================
GALLERY PAGE (gallery.php) EXTRAS
=================================== */
.page-hero {
    padding: 170px 0 80px;
    background: linear-gradient(135deg, #7a0b0f 0%, #9f0f14 55%, #8B2332 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 30%, rgba(255, 215, 0, .12) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(255, 215, 0, .08) 0%, transparent 40%);
    pointer-events: none;
}
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 18px;
}
.breadcrumb a { color: #FFD700; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i { font-size: 10px; color: #FFD700; }
.page-title { font-size: clamp(34px, 5vw, 52px); color: #fff; margin-bottom: 12px; }
.page-sub { color: rgba(255, 255, 255, .8); font-size: 16px; }

/* Filter tabs (overlap hero bottom) */
.page-hero + .gallery-section { padding-top: 0; }
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: -30px auto 20px;
    position: relative;
    z-index: 6;
}
.g-filter {
    padding: 12px 26px;
    border-radius: 50px;
    border: 2px solid rgba(159, 15, 20, .15);
    background: #fff;
    color: #9f0f14;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .5s ease;
    box-shadow: 0 6px 18px rgba(44, 26, 17, .12);
}
.g-filter:hover { transform: translateY(-3px); border-color: #D4943A; }
.g-filter.active {
    background: linear-gradient(135deg, #9f0f14, #c0392b);
    color: #FFD700;
    border-color: transparent;
    box-shadow: 0 10px 26px rgba(159, 15, 20, .35);
}

/* Mobile: perfectly aligned 2 x 2 filter grid (no messy wrapping) */
@media (max-width: 640px) {
    .gallery-filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: calc(100% - 40px);
        max-width: 420px;
        margin: -30px auto 40px;
    }
    .g-filter {
        width: 100%;
        padding: 13px 8px;
        font-size: 12px;
        letter-spacing: 1.2px;
        text-align: center;
    }
}

/* Caption subtitle inside polaroid */
.g-caption small {
    display: block;
    font-size: 12px;
    color: #9b8672;
    font-style: normal;
    margin-top: 2px;
    font-family: 'Poppins', sans-serif;
}

/* Play badge for video items */
.g-zoom.g-play { background: rgba(159, 15, 20, .92); color: #FFD700; }

/* Filter show/hide rows */
.gallery-row.row-hidden { display: none; }
.gallery-row.row-show { animation: rowIn .8s ease; }
@keyframes rowIn {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: none; }
}


/* ===================================
   WHY CHOOSE US - CHINATOWN TEH TARIK
   UNIQUE ISOLATED STYLES
   =================================== */

.why-choose-us-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a253a 0%, #2c3e50 100%);
    overflow: hidden;
    min-height: auto;
}

/* Angled Background Design */
.why-choose-us-section .background-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.why-choose-us-section .bg-image-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: url('../images/restaurant.jpeg') center/cover;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    animation: bgImageFloat 20s ease-in-out infinite;
}

.why-choose-us-section .bg-color-side {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    animation: bgColorPulse 8s ease-in-out infinite;
}

@keyframes bgImageFloat {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.05) translate(-1%, -1%); }
}

@keyframes bgColorPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

/* Content Container */
.why-choose-us-section .wcu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Main Content Box */
.why-choose-us-section .wcu-content-box {
    background: rgb(86 10 3);
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: visible;
    border-left: 5px solid #FFD700;
}

/* Section Header */
.why-choose-us-section .wcu-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #FFD700;
    margin-bottom: 20px;
}

.why-choose-us-section .wcu-section-tag::before {
    content: '';
    width: 35px;
    height: 2px;
    background: #e74c3c;
}

/* Main Title */
.why-choose-us-section .wcu-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Description Text */
.why-choose-us-section .wcu-description {
    font-size: 16px;
    color: #b8c5d6;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 900px;
}

/* Features Grid - UNIQUE CLASS */
.why-choose-us-section .wcu-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
}

/* Feature Card - UNIQUE CLASS */
.why-choose-us-section .wcu-feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-width: 0; /* Prevents collapse */
}

.why-choose-us-section .wcu-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-choose-us-section .wcu-feature-card:hover {
    transform: translateY(-12px);
    background: rgba(231, 76, 60, 0.1);
    border-color: #e74c3c;
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.3);
}

.why-choose-us-section .wcu-feature-card:hover::before {
    transform: scaleX(1);
}

/* Icon Container */
.why-choose-us-section .wcu-icon-box {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.why-choose-us-section .wcu-feature-card:hover .wcu-icon-box {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.5);
}

.why-choose-us-section .wcu-icon-box i {
    font-size: 32px;
    color: #ffffff;
}

/* Feature Title */
.why-choose-us-section .wcu-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

/* Feature Subtitle */
.why-choose-us-section .wcu-feature-subtitle {
    font-size: 14px;
    color: #95a5a6;
    font-weight: 400;
}

/* ===================================
   RESPONSIVE DESIGN - UNIQUE
   =================================== */

@media (max-width: 1200px) {
    .why-choose-us-section .wcu-content-box {
        padding: 50px 40px;
    }
    
    .why-choose-us-section .wcu-main-title {
        font-size: 38px;
    }
    
    .why-choose-us-section .wcu-features-grid {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .why-choose-us-section .bg-image-side,
    .why-choose-us-section .bg-color-side {
        display: none;
    }
    
    .why-choose-us-section .wcu-content-box {
        background: rgba(26, 37, 58, 0.98);
        padding: 50px 40px;
    }
    
    .why-choose-us-section .wcu-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 70px 0;
    }
    
    .why-choose-us-section .wcu-content-box {
        padding: 40px 30px;
    }
    
    .why-choose-us-section .wcu-main-title {
        font-size: 32px;
    }
    
    .why-choose-us-section .wcu-description {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .why-choose-us-section .wcu-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .why-choose-us-section .wcu-feature-card {
        padding: 30px 20px;
    }
    
    .why-choose-us-section .wcu-icon-box {
        width: 65px;
        height: 65px;
    }
    
    .why-choose-us-section .wcu-icon-box i {
        font-size: 28px;
    }
    
    .why-choose-us-section .wcu-feature-title {
        font-size: 16px;
    }
    
    .why-choose-us-section .wcu-feature-subtitle {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .why-choose-us-section .wcu-content-box {
        padding: 35px 25px;
    }
    
    .why-choose-us-section .wcu-main-title {
        font-size: 28px;
    }
    
    .why-choose-us-section .wcu-features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-us-section .wcu-feature-card {
        padding: 25px 20px;
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
    }
    
    .why-choose-us-section .wcu-icon-box {
        margin: 0;
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }
    
    .why-choose-us-section .wcu-icon-box i {
        font-size: 26px;
    }
    
    .why-choose-us-section .wcu-feature-content {
        flex: 1;
    }
    
    .why-choose-us-section .wcu-feature-title {
        font-size: 17px;
        margin-bottom: 5px;
    }
    
    .why-choose-us-section .wcu-feature-subtitle {
        font-size: 13px;
    }
}

/* Animation Classes */
.why-choose-us-section .wcu-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: wcuFadeUp 0.8s ease forwards;
}

.why-choose-us-section .wcu-fade-up.delay-1 { animation-delay: 0.1s; }
.why-choose-us-section .wcu-fade-up.delay-2 { animation-delay: 0.2s; }
.why-choose-us-section .wcu-fade-up.delay-3 { animation-delay: 0.3s; }
.why-choose-us-section .wcu-fade-up.delay-4 { animation-delay: 0.4s; }

@keyframes wcuFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Scale Effect */
.why-choose-us-section .wcu-feature-card {
    will-change: transform;
}

/* ===================================
SIGNATURE DISHES PREVIEW â€” AUTO-SCROLL MARQUEE
(Slower + Thicker animations)
=================================== */
.signature-preview {
    background: linear-gradient(to bottom, #faf8f5 0%, #f5f0e8 100%);
    position: relative;
    overflow: hidden;
}
.signature-preview::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(227, 168, 87, 0.05) 0%, transparent 35%),
        radial-gradient(circle at 90% 80%, rgba(159, 15, 20, 0.04) 0%, transparent 35%);
    pointer-events: none;
}

/* ---------- Header ---------- */
.signature-preview .section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}
.signature-preview .section-tag {
    padding-left: 0;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #9f0f14;
}
.signature-preview .section-tag::before {
    content: '';
    position: static;
    transform: none;
    width: 34px; height: 3px;
    background: #D4943A;
}
.signature-preview .section-tag::after {
    content: '';
    width: 34px; height: 3px;
    background: #D4943A;
}
.signature-preview .section-subtitle {
    color: var(--text-gray);
    font-size: 16px;
    margin-top: 15px;
}

/* ---------- SLOW Scroll Reveal (blur â†’ sharp) ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(8px);
    transition:
        opacity 1.4s ease,
        transform 1.4s cubic-bezier(.22, .61, .36, 1),
        filter 1.4s ease;
    transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* ---------- Infinite Marquee (right â†’ left, desktop/tablet) ---------- */
.signature-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0 35px;
    z-index: 2;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.signature-track {
    display: flex;
    width: max-content;
    /* ðŸ‘‡ SCROLL SPEED â€” bigger = slower */
    animation: signatureScroll 45s linear infinite;
    will-change: transform;
}
.signature-marquee:hover .signature-track {
    animation-play-state: paused;
}
.signature-set {
    display: flex;
    gap: 32px;
    padding-right: 32px;
    flex: 0 0 auto;
}
@keyframes signatureScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---------- Card â€” THICKER hover effects (desktop) ---------- */
.signature-card {
    flex: 0 0 340px;
    width: 340px;
    position: relative;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(159, 15, 20, .08);
    box-shadow: 0 8px 28px rgba(44, 26, 17, .09);
    transform-style: preserve-3d;
    transition:
        transform .8s cubic-bezier(.22, .61, .36, 1),
        box-shadow .8s ease,
        border-color .8s ease;
}
.signature-card.tilting {
    transition: transform .12s linear, box-shadow .8s ease, border-color .8s ease;
}
.signature-card:hover {
    transform: translateY(-18px);
    border-color: #D4943A;
    box-shadow:
        0 30px 60px rgba(159, 15, 20, .22),
        0 0 0 4px rgba(212, 148, 58, .45);
}

/* Shine sweep */
.card-shine {
    position: absolute;
    inset: 0;
    z-index: 8;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .55) 50%, transparent 60%);
    transform: translateX(-130%);
}
.signature-card:hover .card-shine {
    animation: shineSweep 1.8s ease forwards;
}
@keyframes shineSweep {
    to { transform: translateX(130%); }
}

/* ---------- Image ---------- */
.signature-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 0 !important;
}
.signature-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s cubic-bezier(.22, .61, .36, 1), filter .8s ease;
}
.signature-card:hover .signature-image > img {
    transform: scale(1.15) rotate(2deg);
    filter: saturate(1.2);
}
.image-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 10, 5, .55) 0%, transparent 45%);
    pointer-events: none;
}

/* Badge â€” float + shimmer */
.signature-badge {
    position: absolute;
    top: 18px; left: 18px;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #9f0f14, #c0392b);
    box-shadow: 0 8px 22px rgba(159, 15, 20, .4);
    overflow: hidden;
    animation: badgeFloat 4s ease-in-out infinite;
}
.signature-badge i { color: #FFD700; font-size: 13px; }
.signature-badge::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, .45), transparent);
    transform: skewX(-25deg);
    animation: badgeShimmer 3.5s ease-in-out infinite;
}
@keyframes badgeShimmer {
    0% { left: -80%; }
    60%, 100% { left: 130%; }
}
@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

/* Rating chip */
.dish-rating {
    position: absolute;
    top: 18px; right: 18px;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(6px);
    font-size: 13px;
    font-weight: 700;
    color: #1A1A1A;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .18);
    transition: transform .6s cubic-bezier(.175, .885, .32, 1.275);
}
.dish-rating i { color: #FFB800; }
.signature-card:hover .dish-rating {
    transform: scale(1.15) rotate(-4deg);
}

/* Steam */
.steam-group {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    transition: opacity .8s ease;
}
.signature-card:hover .steam-group { opacity: 1; }
.steam {
    position: absolute;
    bottom: 28%;
    width: 13px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, .75));
    filter: blur(7px);
    opacity: 0;
}
.steam-1 { left: 38%; animation: steamRise 4s ease-in-out infinite; }
.steam-2 { left: 51%; animation: steamRise 4s ease-in-out 1.4s infinite; }
.steam-3 { left: 63%; animation: steamRise 4s ease-in-out 2.6s infinite; }
@keyframes steamRise {
    0% { transform: translateY(25px) scaleX(1); opacity: 0; }
    35% { opacity: .9; }
    100% { transform: translateY(-70px) scaleX(1.8); opacity: 0; }
}

/* ---------- Card Content ---------- */
.signature-content {
    padding: 28px 26px 32px;
    position: relative;
}
.dish-number {
    position: absolute;
    bottom: 10px; right: 18px;
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(159, 15, 20, .12);
    transition: all .8s ease;
    pointer-events: none;
}
.signature-card:hover .dish-number {
    -webkit-text-stroke-color: rgba(212, 148, 58, .6);
    transform: translateY(-10px);
}
.signature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.signature-header h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin: 0;
    position: relative;
    display: inline-block;
}
.signature-header h3::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #FFD700, #D4943A);
    transition: width .7s cubic-bezier(.22, .61, .36, 1);
}
.signature-card:hover .signature-header h3::after { width: 100%; }

.signature-price {
    white-space: nowrap;
    background: linear-gradient(135deg, #FFF7E6, #FFEFD0);
    border: 2px solid rgba(212, 148, 58, .5);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 800;
    color: #9f0f14;
    transition: transform .6s cubic-bezier(.175, .885, .32, 1.275), box-shadow .6s ease;
}
.signature-card:hover .signature-price {
    transform: scale(1.12) rotate(2deg);
    box-shadow: 0 8px 20px rgba(212, 148, 58, .45);
}

.signature-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0 0 16px;
}

.dish-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9f0f14;
}
.dish-link i {
    color: #D4943A;
    transition: transform .5s ease;
}
.dish-link:hover { color: #D4943A; }
.dish-link:hover i { transform: translateX(8px); }

/* ---------- Dots (mobile only) ---------- */
.signature-dots { display: none; }
@media (max-width: 640px) {
    .signature-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
        position: relative;
        z-index: 2;
    }
    .sig-dot {
        width: 10px; height: 10px;
        padding: 0;
        border: none;
        border-radius: 50px;
        background: rgba(159, 15, 20, .2);
        cursor: pointer;
        transition: all .5s ease;
    }
    .sig-dot.active {
        width: 30px;
        background: linear-gradient(90deg, #FFD700, #D4943A);
    }
}

/* ---------- CTA Button ---------- */
.view-menu-cta {
    text-align: center;
    margin-top: 45px;
    position: relative;
    z-index: 2;
}
.view-menu-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    font-size: 16px;
    background: linear-gradient(135deg, #8B2332 0%, #A52A2A 100%);
    border: 2px solid transparent;
    color: #fff !important;
    position: relative;
    overflow: hidden;
    transition: all .6s ease;
}
.view-menu-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, .35), transparent);
    transform: skewX(-25deg);
    transition: left .9s ease;
}
.view-menu-cta .btn-primary:hover::before { left: 130%; }
.view-menu-cta .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(139, 35, 50, .45);
    background: var(--primary-dark);
    color: #FFD700 !important;
}
.view-menu-cta .btn-primary i { transition: transform .5s ease; }
.view-menu-cta .btn-primary:hover i { transform: translateX(6px); }

/* ---------- Responsive: tablet keeps marquee ---------- */
@media (max-width: 992px) {
    .signature-card { flex: 0 0 310px; width: 310px; }
}
@media (max-width: 768px) {
    .signature-preview { padding: 40px 0 20px; }
    .signature-image { height: 250px; }
    .signature-header h3 { font-size: 20px; }
}

/* ---------- MOBILE â‰¤640px: ONE FULL CARD, INFINITE ONE-BY-ONE ---------- */
@media (max-width: 640px) {
    .signature-marquee {
        padding: 20px 0 25px;
        -webkit-mask-image: none;
        mask-image: none;
    }
    .signature-track {
        animation: none;               /* marquee off â€” carousel mode */
        width: 100%;
        overflow-x: auto;              /* manual swipe ON */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 10px 20px 15px;
    }
    .signature-track::-webkit-scrollbar { display: none; }

    /* ALL sets visible on mobile (infinite loop) */
    .signature-set { gap: 20px; padding-right: 20px; }

    .signature-card {
        flex: 0 0 calc(100vw - 40px);
        width: calc(100vw - 40px);
        scroll-snap-align: center;
        scroll-snap-stop: always;      /* one-by-one swipe */
    }
    .signature-image { height: 300px; }

    /* "HOVER" EFFECTS AUTO-PLAY on the centered card (phones have no hover) */
    .signature-card.in-view {
        border-color: #D4943A;
        box-shadow:
            0 20px 45px rgba(159, 15, 20, .18),
            0 0 0 3px rgba(212, 148, 58, .4);
    }
    .signature-card.in-view .steam-group { opacity: 1; }
    .signature-card.in-view .card-shine { animation: shineSweep 1.8s ease forwards; }
    .signature-card.in-view .signature-image > img { transform: scale(1.08); filter: saturate(1.15); }
    .signature-card.in-view .dish-rating { transform: scale(1.12) rotate(-4deg); }
    .signature-card.in-view .signature-price { transform: scale(1.08); }
    .signature-card.in-view .signature-header h3::after { width: 100%; }
    .signature-card.in-view .dish-number {
        -webkit-text-stroke-color: rgba(212, 148, 58, .6);
        transform: translateY(-8px);
    }
}
@media (max-width: 400px) {
    .signature-image { height: 260px; }
    .signature-content { padding: 24px 20px 28px; }
    .dish-number { font-size: 52px; }
}

/* Desktop: hide mobile-only extras */
@media (min-width: 641px) {
    .signature-dots { display: none; }
    .mobile-only-set { display: none; }   /* 3rd set used only on mobile */
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .signature-track { animation: none; }
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
    .signature-badge, .signature-badge::after, .steam { animation: none !important; }
}

/* ===================================
OUR STORY â€” 3 UNIQUE IMAGE ANIMATIONS
+ ANIMATED "COMET" BORDER ON HOVER
=================================== */

/* ---------- Hidden states (only when JS is ready & not yet in view) ---------- */
.about-section.about-ready:not(.about-in) .image-card { opacity: 0; }
.about-section.about-ready:not(.about-in) .main-image { clip-path: inset(0 0 100% 0); }
.about-section.about-ready:not(.about-in) .top-right { transform: perspective(900px) rotateY(70deg); }
.about-section.about-ready:not(.about-in) .bottom-right { transform: translateY(70px) rotate(-5deg) scale(.9); }

/* ---------- IMAGE 1 (Main) â€” Curtain drop wipe (top â†’ bottom) ---------- */
.about-section.about-in .main-image {
    animation: aboutCurtain 1.1s cubic-bezier(.22, .61, .36, 1) .1s backwards;
}
@keyframes aboutCurtain {
    from { clip-path: inset(0 0 100% 0); opacity: 1; }
    to   { clip-path: inset(0 0 0% 0);   opacity: 1; }
}

/* ---------- IMAGE 2 (Top Right) â€” 3D flip-in ---------- */
.about-section.about-in .top-right {
    animation: aboutFlip .9s cubic-bezier(.22, .61, .36, 1) .55s backwards;
}
@keyframes aboutFlip {
    from { opacity: 0; transform: perspective(900px) rotateY(70deg); }
    to   { opacity: 1; transform: perspective(900px) rotateY(0deg); }
}

/* ---------- IMAGE 3 (Bottom Right) â€” Rise & settle with tilt ---------- */
.about-section.about-in .bottom-right {
    animation: aboutRise .9s cubic-bezier(.175, .885, .32, 1.275) .9s backwards;
}
@keyframes aboutRise {
    from { opacity: 0; transform: translateY(70px) rotate(-5deg) scale(.9); }
    to   { opacity: 1; transform: translateY(0) rotate(0deg) scale(1); }
}

/* ---------- SPECIAL HOVER BORDER â€” rotating comet ring (not a normal border) ---------- */
@property --borderAngle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
.about-section .image-card {
    border: 3px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        rgba(159, 15, 20, .12) border-box;   /* faint ring when idle */
}
.about-section .image-card:hover {
    background:
        linear-gradient(#fff, #fff) padding-box,
        conic-gradient(from var(--borderAngle),
            rgba(255, 215, 0, 0) 0%,
            #FFD700 10%,
            #9f0f14 25%,
            rgba(159, 15, 20, 0) 45%) border-box;
    animation: borderSpin 2.5s linear infinite;
}
@keyframes borderSpin {
    to { --borderAngle: 360deg; }
}

/* ---------- Gold corner brackets that snap open on hover ---------- */
.about-section .image-card::before,
.about-section .image-card::after {
    content: '';
    position: absolute;
    width: 46px;
    height: 46px;
    z-index: 12;
    border: 3px solid #FFD700;
    opacity: 0;
    pointer-events: none;
    transition: all .45s cubic-bezier(.22, .61, .36, 1);
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, .6));
}
.about-section .image-card::before {
    top: 14px; left: 14px;
    border-right: none; border-bottom: none;
    border-radius: 10px 0 0 0;
    transform: scale(.5) rotate(-10deg);
}
.about-section .image-card::after {
    bottom: 14px; right: 14px;
    border-left: none; border-top: none;
    border-radius: 0 0 10px 0;
    transform: scale(.5) rotate(-10deg);
}
.about-section .image-card:hover::before,
.about-section .image-card:hover::after {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .about-section .image-card,
    .about-section .image-card::before,
    .about-section .image-card::after {
        animation: none !important;
        transition: none !important;
    }
    .about-section.about-ready:not(.about-in) .image-card { opacity: 1; clip-path: none; transform: none; }
}

/* ===================================
ACTIVE PAGE + HOVER â€” FILLED BLOCK + GOLD BASE BAR
(design from screenshot, colors from this theme)
=================================== */

.nav-menu a.active::after,
.nav-menu a:hover::after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    /* background: var(--gradient-primary); */  /* gold bar at bottom */
}
/* .nav-menu a.active:hover {
    color: var(--text-light);
} */
/* Mobile menu â€” keep it neat inside the slide-in panel */
@media (max-width: 992px) {
    .nav-menu a.active,
    .nav-menu a:hover {
        display: block;
        padding: 10px 0;
        border-radius: 10px;
    }
    .nav-menu a.active::after,
    .nav-menu a:hover::after {
        height: 3px;
        border-radius: 0 0 10px 10px;
    }
}

/* ===================================
COMPACT HEADER â€” active block fits edge-to-edge
(append at BOTTOM so it wins over earlier rules)
=================================== */
.navbar { padding: 0; }                          /* was 8px 0 â†’ header shrinks */
.logo img { max-width: 58px; max-height: 50px; } /* logo can't bloat the bar */

.nav-menu { gap: 30px; }
.nav-menu a {
    display: inline-flex;
    align-items: center;
    padding: 27px 10px;                          /* all links same height */
}
.nav-menu a.active,
.nav-menu a:hover {
    padding: 27px 18px;                          /* red block = full header height */
}
.nav-menu a.active::after,
.nav-menu a:hover::after {
    bottom: 0;                                   /* gold bar sits on header's bottom edge */
    height: 5px;
}

@media (max-width: 992px) {
    .navbar { padding: 8px 0; }
    .nav-menu a { display: block; padding: 10px 0; }
    .nav-menu a.active,
    .nav-menu a:hover { padding: 10px 0; border-radius: 10px; }
    .nav-menu a.active::after,
    .nav-menu a:hover::after { height: 3px; border-radius: 0 0 10px 10px; }
}


/* ===================================
FINAL COMPACT HEADER â€” ACTIVE BLOCK EDGE-TO-EDGE
(append at the VERY BOTTOM of styles.css)
=================================== */
/* .main-header { background: hsl(358.33deg 100% 97.24%); }
.main-header.scrolled { padding: 0; }          
.navbar { padding: 0; }                        
.logo img { max-width: 54px; max-height: 46px; }
.nav-menu { gap: 30px; }

.nav-menu a { line-height: 1.4; padding: 21px 12px; }
.nav-menu a.active,
.nav-menu a:hover { padding: 21px 18px; }
.nav-menu a.active::after,
.nav-menu a:hover::after { height: 6px; }

.hero-slider { top: 62px; }
.breadcrumb-section { margin-top: 62px !important; }

@media (max-width: 992px) {
    .navbar { padding: 8px 0; }
    .nav-menu a { padding: 10px 0; }
    .nav-menu a.active,
    .nav-menu a:hover { padding: 10px 0; border-radius: 10px; }
    .breadcrumb-section { margin-top: 78px !important; }
} */

/* ===================================
MOBILE GALLERY FIX â€” stacked rows are too tall for the
20% reveal threshold, so force them visible on phones
=================================== */
@media (max-width: 640px) {
    .gallery-section [data-greveal],
    .gallery-row,
    .gallery-row.row-1,
    .gallery-row.row-2 {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .gallery-track { display: block !important; width: 100% !important; }
    .gallery-set + .gallery-set { display: none !important; }
    .gallery-set {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px;
        padding: 15px 20px 5px;
    }
    .gallery-item,
    .gallery-item:nth-child(odd),
    .gallery-item:nth-child(even) {
        flex: none !important;
        width: 100% !important;
        transform: none !important;
        opacity: 1 !important;
    }
    .g-media { height: 320px; }
    .g-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

/* ===================================
WHY CHOOSE US â€” SPLIT LAYOUT (IMAGE LEFT + CONTENT RIGHT)
Colors from :root variables
=================================== */
.wcu-section {
    padding: 40px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.wcu-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 8% 15%, rgba(159, 15, 20, .05) 0%, transparent 40%),
        radial-gradient(circle at 92% 85%, rgba(212, 148, 58, .08) 0%, transparent 40%);
    pointer-events: none;
}
.wcu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ---------- LEFT : IMAGE COLLAGE ---------- */
.wcu-media { position: relative; }
.wcu-img-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(44, 26, 17, .22);
}
/* Ken Burns breathing on the photo */
.wcu-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    animation: wcuKenBurns 16s ease-in-out infinite alternate;
}
@keyframes wcuKenBurns {
    from { transform: scale(1); }
    to   { transform: scale(1.12) translate(1.5%, -1.5%); }
}
/* gold inner frame appears on hover */
.wcu-img-main::after {
    content: '';
    position: absolute;
    inset: 16px;
    border: 2px solid rgba(255, 215, 0, 0);
    border-radius: 14px;
    transition: all .6s ease;
    pointer-events: none;
}
.wcu-media:hover .wcu-img-main::after {
    inset: 10px;
    border-color: rgba(255, 215, 0, .55);
}
/* small overlapping photo */
.wcu-img-small {
    position: absolute;
    right: -25px;
    bottom: -30px;
    width: 220px;
    border-radius: 18px;
    overflow: hidden;
    border: 6px solid var(--primary-light);
    box-shadow: 0 15px 40px rgba(44, 26, 17, .3);
    transition: transform .6s cubic-bezier(.175, .885, .32, 1.275);
}
.wcu-media:hover .wcu-img-small { transform: translateY(-10px) rotate(-2deg); }
.wcu-img-small img { width: 100%; height: 170px; object-fit: cover; display: block; }
/* floating gold badge */
.wcu-badge {
    position: absolute;
    top: -25px;
    left: -25px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-dark);
    box-shadow: 0 12px 30px rgba(212, 148, 58, .45);
    animation: wcuFloat 4s ease-in-out infinite;
    z-index: 3;
}
.wcu-badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}
.wcu-badge-text {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
@keyframes wcuFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}
/* rotating dashed ring behind badge */
.wcu-ring {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 190px;
    height: 190px;
    border: 2px dashed rgba(159, 15, 20, .35);
    border-radius: 50%;
    animation: wcuSpin 22s linear infinite;
    pointer-events: none;
}
@keyframes wcuSpin { to { transform: rotate(360deg); } }

/* ---------- RIGHT : CONTENT ---------- */
.wcu-content .section-tag { color: var(--primary-dark); }
.wcu-content .section-title { color: var(--text-dark); margin-bottom: 18px; }
.wcu-text {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}
.wcu-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}
.wcu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--primary-light);
    border: 1px solid rgba(159, 15, 20, .08);
    border-radius: 16px;
    padding: 18px;
    transition: transform .5s cubic-bezier(.175, .885, .32, 1.275),
                box-shadow .5s ease, border-color .5s ease;
}
.wcu-item:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 148, 58, .5);
    box-shadow: 0 18px 40px rgba(159, 15, 20, .12);
}
.wcu-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 16px;
    background: rgba(159, 15, 20, .08);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all .5s ease;
}
.wcu-item:hover .wcu-icon {
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: rotateY(360deg) scale(1.08);
    box-shadow: 0 8px 22px rgba(212, 148, 58, .4);
}
.wcu-info h3 {
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 3px;
}
.wcu-info p { font-size: 13px; color: var(--text-gray); margin: 0; }
.wcu-btn { display: inline-flex; align-items: center; gap: 12px; }
.wcu-btn i { transition: transform .3s ease; }
.wcu-btn:hover i { transform: translateX(5px); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .wcu-grid { gap: 45px; }
    .wcu-img-main img { height: 430px; }
}
@media (max-width: 992px) {
    .wcu-section { padding: 80px 0; }
    .wcu-grid { grid-template-columns: 1fr; gap: 70px; }
    .wcu-media { max-width: 560px; margin: 0 auto; }
}
@media (max-width: 640px) {
    .wcu-section { padding: 70px 0; }
    .wcu-img-main img { height: 320px; }
    .wcu-img-small { width: 150px; right: -8px; bottom: -22px; }
    .wcu-img-small img { height: 120px; }
    .wcu-badge { width: 92px; height: 92px; top: -18px; left: -10px; }
    .wcu-badge-number { font-size: 24px; }
    .wcu-ring { width: 150px; height: 150px; top: -38px; left: -30px; }
    .wcu-features { grid-template-columns: 1fr; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .wcu-img-main img, .wcu-badge, .wcu-ring { animation: none !important; }
    .wcu-item, .wcu-icon, .wcu-img-small { transition: none !important; }
}

/* ===================================
TESTIMONIALS â€” MODERN REDESIGN
desktop: infinite marquee / mobile: stacked one-by-one
Colors from :root variables
=================================== */
.tst-section {
	padding: 20px 40px;
	background: linear-gradient(to bottom, #ffffff 0%, var(--primary-light) 100%);
	position: relative;
	overflow: hidden;
}
.tst-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 8% 15%, rgba(159, 15, 20, .05) 0%, transparent 40%),
		radial-gradient(circle at 92% 85%, rgba(212, 148, 58, .08) 0%, transparent 40%);
	pointer-events: none;
}

/* ---------- Top row : title LEFT + Google card RIGHT (centered) ---------- */
.tst-top {
	display: flex;
	align-items: center;               /* was flex-end â€” card now centered = less dead space */
	justify-content: space-between;
	gap: 48px;
	margin-bottom: 55px;
	position: relative;
	z-index: 1;
}
.tst-header { max-width: 560px; }
.tst-header .section-title { color: var(--text-dark); }
.tst-sub { color: var(--text-gray); font-size: 16px; margin-top: 12px; }

/* ---------- Google brand-color "G" badge (SVG sprite) ---------- */
.g-badge { width: 17px; height: 17px; flex-shrink: 0; }   /* bigger than old 14px icon */

/* ---------- Wrapper with decorative "makeup" so right side isn't empty ---------- */
.tst-google-wrap {
	position: relative;
	flex: 0 1 700px;                   /* stretches to fill the right column */
	min-width: 0;
}
.tst-google-wrap::before {           /* gold dot grid, top-right */
	content: '';
	position: absolute;
	top: -26px; right: -28px;
	width: 150px; height: 110px;
	background-image: radial-gradient(rgba(212, 148, 58, .45) 1.6px, transparent 1.6px);
	background-size: 15px 15px;
	pointer-events: none;
}
.tst-google-wrap::after {            /* soft brand ring, bottom-left */
	content: '';
	position: absolute;
	left: -34px; bottom: -28px;
	width: 82px; height: 82px;
	border: 10px solid rgba(159, 15, 20, .08);
	border-radius: 50%;
	pointer-events: none;
}

/* ---------- Google summary card (now 2 rows = taller & wider) ---------- */
.tst-google {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	background: #fff;
	border: 1px solid rgba(159, 15, 20, .08);
	border-radius: 20px;
	padding: 22px 28px 18px;
	box-shadow: 0 15px 45px rgba(44, 26, 17, .10);
	position: relative;
	z-index: 1;
	color: inherit;
	transition: transform .5s ease, box-shadow .5s ease, border-color .5s ease;
}
.tst-google:hover {
	transform: translateY(-5px);
	border-color: rgba(212, 148, 58, .5);
	box-shadow: 0 25px 60px rgba(44, 26, 17, .16);
}
.tst-google-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.tst-google-logo {
	display: flex;
	font-family: 'Poppins', sans-serif;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: -2px;
}
.tst-google-logo .G  { color: #4285F4; }
.tst-google-logo .o  { color: #EA4335; }
.tst-google-logo .o2 { color: #FBBC05; }
.tst-google-logo .g  { color: #4285F4; }
.tst-google-logo .l  { color: #34A853; }
.tst-google-logo .e  { color: #EA4335; }
.tst-google-score { display: flex; align-items: center; gap: 14px; }
.tst-score-num {
	font-family: 'Playfair Display', serif;
	font-size: 40px;
	font-weight: 900;
	color: var(--primary-dark);
	line-height: 1;
}
.tst-score-mid { display: flex; flex-direction: column; gap: 4px; }
.tst-stars i { color: #FFB800; font-size: 14px; }
.tst-score-text { font-size: 12px; color: var(--text-gray); font-weight: 600; }
.tst-google-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--gradient-primary);
	color: var(--primary-dark);
	padding: 10px 20px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 12px;
	white-space: nowrap;
	transition: all .3s ease;
}
.tst-google:hover .tst-google-cta { background: var(--primary-dark); color: #FFD700; }
.tst-google-cta i { transition: transform .3s ease; }
.tst-google:hover .tst-google-cta i { transform: translateX(4px); }

/* second row : avatar stack + note (fills the empty space) */
.tst-google-extra {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	border-top: 1px dashed rgba(159, 15, 20, .15);
	padding-top: 14px;
}
.tst-avatars { display: flex; align-items: center; }
.tst-av {
	width: 32px; height: 32px;
	border-radius: 50%;
	background: var(--av, var(--gradient-primary));
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #fff;
	box-shadow: 0 2px 8px rgba(44, 26, 17, .18);
}
.tst-av + .tst-av { margin-left: -10px; }
.tst-google-note {
	font-size: 12px;
	font-weight: 600;
	color: var(--text-gray);
	text-align: right;
	font-family: 'Poppins', sans-serif;
}

/* ---------- Infinite marquee (desktop) ---------- */
.tst-marquee {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 25px 0 35px;
	z-index: 1;
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
	mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.tst-track {
	display: flex;
	width: max-content;
	animation: tstScroll 55s linear infinite;
	will-change: transform;
}
.tst-marquee:hover .tst-track { animation-play-state: paused; }
.tst-set { display: flex; gap: 28px; padding-right: 28px; flex: 0 0 auto; }
@keyframes tstScroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* ---------- Review card ---------- */
.tst-card {
	flex: 0 0 380px;
	background: #fff;
	border-radius: 20px;
	padding: 28px 28px 22px;
	border: 1px solid rgba(159, 15, 20, .08);
	box-shadow: 0 10px 30px rgba(44, 26, 17, .08);
	position: relative;
	overflow: hidden;
	transition: transform .6s cubic-bezier(.175, .885, .32, 1.275),
				box-shadow .6s ease, border-color .6s ease;
}
.tst-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 4px;
	background: var(--gradient-primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .5s ease;
}
.tst-card:hover {
	transform: translateY(-10px);
	border-color: rgba(212, 148, 58, .5);
	box-shadow: 0 22px 50px rgba(159, 15, 20, .16);
}
.tst-card:hover::before { transform: scaleX(1); }
.tst-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.tst-avatar {
	width: 52px; height: 52px;
	border-radius: 50%;
	background: var(--av, var(--gradient-primary));
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 0 0 3px #fff, 0 0 0 5px rgba(212, 148, 58, .45);
	transition: transform .5s ease;
}
.tst-card:hover .tst-avatar { transform: scale(1.08) rotate(-4deg); }
.tst-who h4 {
	font-size: 16px;
	color: var(--text-dark);
	margin: 0 0 4px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
}
.tst-stars-sm i { color: #FFB800; font-size: 12px; }
.tst-quote {
	margin-left: auto;
	font-size: 34px;
	color: rgba(227, 168, 87, .18);
	transition: all .4s ease;
}
.tst-card:hover .tst-quote { color: var(--accent-gold); transform: scale(1.15) rotate(-8deg); }
.tst-text {
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.75;
	font-style: italic;
	margin: 0 0 18px;
}
.tst-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px dashed rgba(159, 15, 20, .15);
	padding-top: 14px;
}
.tst-date { font-size: 12px; color: var(--text-gray); display: flex; align-items: center; gap: 6px; }
.tst-date i { color: #D4943A; }
.tst-src { font-size: 12px; color: var(--text-gray); display: flex; align-items: center; gap: 7px; font-weight: 600; }
.tst-src .g-badge { width: 17px; height: 17px; }   /* brand-color G, bigger */

/* ---------- CTA ---------- */
.tst-cta { text-align: center; margin-top: 15px; position: relative; z-index: 1; }
.tst-cta .btn-primary { display: inline-flex; align-items: center; gap: 12px; }
.tst-cta .g-badge { width: 18px; height: 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
	.tst-top { flex-direction: column; align-items: stretch; gap: 30px; }
	.tst-header { max-width: 100%; }
	.tst-google-wrap { flex: none; width: 100%; }
	.tst-google-wrap::before,
	.tst-google-wrap::after { display: none; }
}
@media (max-width: 1024px) {
	.tst-card { flex: 0 0 340px; }
}
@media (max-width: 768px) {
	.tst-section { padding: 20px 20px; }
	.tst-card { flex: 0 0 320px; padding: 24px 22px 18px; }
}
/* ---------- MOBILE â‰¤640px â€” NO marquee, cards stack one-by-one down ---------- */
@media (max-width: 640px) {
	.tst-google { padding: 24px 18px 16px; }
	.tst-google-main { flex-direction: column; text-align: center; gap: 14px; }
	.tst-google-extra { flex-direction: column; gap: 10px; }
	.tst-google-note { text-align: center; }
	.tst-marquee {
		overflow: visible;
		padding: 5px 20px 0;
		-webkit-mask-image: none;
		mask-image: none;
	}
	.tst-track { animation: none; display: block; width: 100%; }
	.tst-set + .tst-set { display: none; }   /* hide duplicate loop set */
	.tst-set { display: flex; flex-direction: column; gap: 20px; padding: 0 0 10px; }
	.tst-card { flex: none; width: 100%; }
}
/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
	.tst-track { animation: none; }
	.tst-card, .tst-google, .tst-avatar, .tst-quote { transition: none; }
}

/* ===================================
FORCE-STOP HORIZONTAL SCROLL (REAL MOBILE FIX)
=================================== */
html, body {
	overflow-x: hidden !important;   /* no left/right panning at all */
	max-width: 100vw !important;
	width: 100%;
}

/* fixed header must be exactly screen-wide, never wider */
.main-header {
	left: 0 !important;
	width: 100% !important;
	max-width: 100vw !important;
}

/* AOS slide-in transforms (fade-left/right) must never widen the page */
[data-aos] { max-width: 100vw; }

@media (max-width: 992px) {
	/* header row must ALWAYS fit: logo + quick icons + toggle */
	.navbar { width: 100%; flex-wrap: nowrap; }
	.logo img { max-width: 48px; max-height: 44px; }
	.mobile-quick-links { gap: 6px; margin-right: 8px; }
	.quick-icon-btn { width: 36px; height: 36px; font-size: 12px; }
	.hamburger, .tmp-hamburger { flex-shrink: 0; }

	/* slide-in menu panel must never add page width */
	.nav-menu { max-width: 85vw; }

	/* horizontal menu bar (other pages) stays inside the screen */
	.navbar:not(.mobile-ham-active) .nav-menu {
		max-width: 100% !important;
	}
}


/* ===================================
INNER BANNER â€” FULL IMAGE VISIBLE
=================================== */
.breadcrumb-section {
    background-size: 100% 100% !important;      /* fit whole image into the banner â€” no zoom/crop */
    background-position: center !important;
    background-attachment: scroll !important;   /* 'fixed' was causing the over-zoomed look */
}
/* Remove the dark overlay completely */
 .breadcrumb-overlay {
    display: none !important;
} 
/* Keep the white text readable now that the overlay is gone */
.breadcrumb-title,
.breadcrumb-description,
.breadcrumb-item,
.breadcrumb-item a,
.breadcrumb-separator {
    text-shadow: 0 2px 12px rgba(0, 0, 0, .65);
}


/* ===================================
INNER BANNER â€” MOBILE FIT FIX (updated)
=================================== */
/* Mobile: image FILLS the banner â€” no black bars top/bottom */
@media (max-width: 992px) {
    .breadcrumb-section {
        background-size: cover !important;          /* fills entire banner */
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
    }
}

/* Phones: clean compact banner â€” title only, no extra text */
@media (max-width: 640px) {
    .breadcrumb-nav,
    .breadcrumb-title { display: none !important; }   /* hide text on mobile */
    .breadcrumb-section {
        height: 150px !important;
        max-height: 150px !important;
    }
    .breadcrumb-title { margin-bottom: 0; }
}
/* ===================================
MOBILE FOOTER — COMPACT & ALIGNED
(append at the VERY BOTTOM of styles.css)
=================================== */
@media (max-width: 768px) {
    .site-footer { padding-top: 40px; }
    .footer-grid { gap: 28px 22px; padding-bottom: 12px; }

    /* center the logo — no more empty space on the right */
    .footer-brand { text-align: center; }
    .footer-logo { margin-bottom: 0; }
    .footer-logo-img { max-width: 150px; }

    /* tighten all vertical rhythm */
    .footer-col h4 { margin-bottom: 14px; font-size: 16px; }
    .footer-list li { margin-bottom: 8px; }
    .footer-contact li { margin-bottom: 10px; }
    .hours-item { padding: 7px 0; }
    .legal-title { margin-top: 20px; }
}

@media (max-width: 520px) {
    /* 2 columns instead of 1 → footer becomes HALF the height */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-logo-img { max-width: 70px; }

    /* hours: stack day over time so it fits the narrow column */
    .hours-item { flex-direction: column; align-items: flex-start; gap: 2px; }
    .hours-item .time { white-space: normal; }

    .footer-list a,
    .footer-contact li { font-size: 13px; }
    .footer-contact li { gap: 8px; }
    .footer-note { margin-top: 8px; }

    .footer-bottom { padding: 16px 0; }
    .footer-bottom p { font-size: 12px; line-height: 1.5; }

    .back-to-top { width: 42px; height: 42px; font-size: 16px; bottom: 16px; right: 16px; }
}