/* ============================================================
   Cookies & Ginger Restaurant — Sales Demo Mockup
   Design System: Warm Brown / Cream / Burnt Orange
   Mobile-first, pure CSS, no frameworks
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand: warm brown + burnt orange + cream */
  --color-orange:       #C8640A;
  --color-orange-light: #F0840A;
  --color-orange-pale:  #FFF3E0;
  --color-orange-glow:  rgba(200, 100, 10, 0.40);

  --color-brown-deep:   #2A1508;
  --color-brown-mid:    #5A2D0C;
  --color-brown-light:  #8B5E3C;
  --color-cream:        #FDF7F0;
  --color-cream-dark:   #F5EAD8;
  --color-text:         #1C0E04;
  --color-text-muted:   #7A4E2C;
  --color-white:        #FFFFFF;
  --color-overlay:      rgba(42, 21, 8, 0.74);

  /* Ginger accent */
  --color-ginger:       #E8820A;
  --color-ginger-dark:  #B85A00;

  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body:    'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-pill: 999px;

  --shadow-card:  0 4px 20px rgba(42, 21, 8, 0.10);
  --shadow-hero:  0 8px 40px rgba(42, 21, 8, 0.28);
  --shadow-float: 0 6px 24px rgba(37, 211, 102, 0.45);

  --transition: 0.25s ease;
  --max-width:  1100px;
  --section-gap: 80px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

:focus-visible {
  outline: 3px solid #F0840A;
  outline-offset: 3px;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-brown-deep);
}

h1 { font-size: clamp(2.2rem, 6.5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 10px;
}

.section-title {
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-orange-light));
  border-radius: var(--radius-pill);
  margin: 16px 0 28px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: none;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
  color: var(--color-white);
  box-shadow: 0 4px 16px var(--color-orange-glow);
}

.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(200, 100, 10, 0.55);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

/* Hero outline button */
.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.70);
  color: var(--color-white);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--color-white);
}

/* Dark section outline */
.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--color-orange-light);
  color: var(--color-orange-light);
}

.btn-outline-gold:hover {
  background: var(--color-orange-light);
  color: var(--color-brown-deep);
}

/* ---------- Announce Banner ---------- */
.announce-banner {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
  color: var(--color-white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  position: relative;
  z-index: 1001;
}

.announce-banner a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
  /* offset the announce banner */
  margin-top: 40px;
}

.navbar.scrolled {
  background: rgba(42, 21, 8, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  margin-top: 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 68px;
}

.navbar-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-orange-light);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(240, 132, 10, 0.65);
}

.navbar-nav {
  display: none;
  gap: 32px;
}

.navbar-nav a {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-orange-light);
  transition: width var(--transition);
}

.navbar-nav a:hover { color: var(--color-orange-light); }
.navbar-nav a:hover::after { width: 100%; }

.navbar-cta {
  display: none;
  padding: 8px 18px;
  font-size: 0.82rem;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-orange-light);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  top: 108px;
  left: 0;
  right: 0;
  background: rgba(42, 21, 8, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px 28px 32px;
  z-index: 999;
  transform: translateY(-130%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.mobile-menu nav a {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(240, 132, 10, 0.15);
  transition: color var(--transition);
}

.mobile-menu nav a:hover { color: var(--color-orange-light); }

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Extra top offset for announce banner + navbar */
  padding-top: 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 68% 48%,
      rgba(200, 100, 10, 0.22) 0%,
      transparent 60%),
    linear-gradient(160deg,
      #2A1508 0%,
      #3D1E0A 28%,
      #5A2D0C 58%,
      #2A1508 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 72% 48%, rgba(200, 100, 10, 0.28) 0%, transparent 45%),
    radial-gradient(circle at 18% 80%, rgba(90, 45, 12, 0.55) 0%, transparent 40%);
  z-index: 1;
}

/* Hero right panel — simulates a food photo */
.hero-image-placeholder {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  background:
    radial-gradient(ellipse 80% 80% at 52% 52%,
      rgba(240, 132, 10, 0.14) 0%,
      transparent 68%),
    linear-gradient(135deg,
      #6B3A1F 0%,
      #9B5E2C 35%,
      #C87840 58%,
      #5A2D0C 100%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

/* Plate halo effect */
.hero-image-placeholder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(240, 132, 10, 0.22) 0%,
    rgba(200, 100, 10, 0.10) 40%,
    transparent 70%);
  box-shadow:
    0 0 0 3px rgba(240, 132, 10, 0.32),
    0 0 70px rgba(200, 100, 10, 0.22);
}

/* Central food emoji */
.hero-image-placeholder::after {
  content: '🥩';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  font-size: 130px;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.55));
  opacity: 0.88;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(42, 21, 8, 0.88) 0%,
    rgba(42, 21, 8, 0.58) 52%,
    rgba(42, 21, 8, 0.08) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 108px 20px 64px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 100, 10, 0.18);
  border: 1px solid rgba(200, 100, 10, 0.42);
  color: var(--color-orange-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--color-orange-light);
}

.hero-title {
  color: var(--color-white);
  margin-bottom: 8px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
  font-size: clamp(2.2rem, 7vw, 4rem);
}

.hero-title span {
  color: var(--color-orange-light);
}

.hero-title-alt {
  color: rgba(255,255,255,0.80) !important;
  font-size: 0.65em;
  font-style: italic;
  letter-spacing: 0.06em;
}

.hero-tagline {
  color: rgba(255,255,255,0.78);
  font-size: clamp(0.95rem, 2.8vw, 1.2rem);
  margin-bottom: 36px;
  font-style: italic;
  font-family: var(--font-display);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(42, 21, 8, 0.45);
  border: 1px solid rgba(240, 132, 10, 0.22);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  backdrop-filter: blur(8px);
  max-width: 560px;
}

.stat-item {
  flex: 1;
  min-width: 80px;
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(240, 132, 10, 0.25);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-orange-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.70rem;
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.04em;
  margin-top: 4px;
  line-height: 1.3;
}

/* ---------- About Section ---------- */
.about {
  padding: var(--section-gap) 0;
  background: var(--color-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
}

.about-image-block {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 340px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 42% 42%, rgba(240, 132, 10, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, #9B5E2C 0%, #5A2D0C 45%, #C87840 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-hero);
  position: relative;
  overflow: hidden;
}

.about-img-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 38% 38%,
    rgba(240, 132, 10, 0.16) 0%, transparent 58%);
}

.about-badge-float {
  position: absolute;
  bottom: -18px;
  right: 24px;
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
  color: var(--color-white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 6px 20px rgba(200, 100, 10, 0.45);
  white-space: nowrap;
  line-height: 1.2;
}

.about-badge-float span {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-display);
}

.about-badge-float2 {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(42, 21, 8, 0.82);
  border: 1px solid rgba(240, 132, 10, 0.42);
  color: var(--color-orange-light);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.82rem;
  backdrop-filter: blur(6px);
}

.halal-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--color-orange-light);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  font-size: 11px;
  margin-right: 4px;
}

.about-text {
  padding-top: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--color-orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* ---------- Menu Section ---------- */
.menu {
  padding: var(--section-gap) 0;
  background: var(--color-cream-dark);
}

.menu-header {
  text-align: center;
  margin-bottom: 48px;
}

.menu-header .divider {
  margin: 16px auto 28px;
}

.menu-header .section-subtitle {
  margin: 0 auto;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.menu-tab {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-cream-dark);
  background: var(--color-white);
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  font-family: var(--font-body);
}

.menu-tab.active,
.menu-tab:hover {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
  border-color: transparent;
  color: var(--color-white);
  box-shadow: 0 4px 14px var(--color-orange-glow);
}

.menu-category {
  display: none;
}

.menu-category.active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  transition: transform var(--transition), box-shadow var(--transition);
}

.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(42, 21, 8, 0.16);
}

.menu-card-img {
  width: 100px;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  position: relative;
  overflow: hidden;
}

.menu-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 40%,
    rgba(240, 132, 10, 0.10) 0%, transparent 60%);
}

.menu-card-body {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-card-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-brown-deep);
  margin-bottom: 4px;
  font-weight: 700;
}

.menu-card-desc {
  font-size: 0.80rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  line-height: 1.45;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-orange);
  font-family: var(--font-display);
}

.menu-tag {
  font-size: 0.70rem;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.tag-popular {
  background: rgba(200, 100, 10, 0.14);
  color: var(--color-orange);
}

.tag-spicy {
  background: rgba(200, 50, 50, 0.12);
  color: #B83030;
}

.tag-new {
  background: rgba(40, 160, 80, 0.12);
  color: #196F3D;
}

.menu-footer-note {
  text-align: center;
  margin-top: 32px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: var(--section-gap) 0;
  background: var(--color-brown-deep);
}

.testimonials .section-label { color: var(--color-orange-light); }
.testimonials .section-title { color: var(--color-white); }
.testimonials .divider {
  background: linear-gradient(90deg, var(--color-orange-light), var(--color-orange));
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(240, 132, 10, 0.18);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: background var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-2px);
}

.stars {
  color: var(--color-orange-light);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.65;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  font-family: var(--font-display);
}

.av-1 { background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light)); }
.av-2 { background: linear-gradient(135deg, #8B5E3C, #5A2D0C); }
.av-3 { background: linear-gradient(135deg, #5A2D0C, #9B5E2C); }

.author-name {
  color: var(--color-orange-light);
  font-weight: 600;
  font-size: 0.88rem;
}

.author-location {
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
}

/* ---------- Hours & Info Section ---------- */
.info-section {
  padding: var(--section-gap) 0;
  background: var(--color-cream-dark);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.info-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}

.info-card-cta {
  background: linear-gradient(135deg, var(--color-brown-deep), var(--color-brown-mid));
  color: white;
}

.info-card-cta h3 {
  color: var(--color-orange-light);
}

.info-card-cta p {
  color: rgba(255,255,255,0.72) !important;
}

.info-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.info-card-cta .info-icon {
  background: rgba(240, 132, 10, 0.18);
}

.info-card-title h3 {
  font-size: 1.1rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--color-cream-dark);
  font-size: 0.88rem;
  flex-wrap: wrap;
  gap: 6px;
}

.hours-row:last-child { border-bottom: none; }

.hours-day {
  color: var(--color-text-muted);
  font-weight: 500;
}

.hours-time {
  color: var(--color-brown-deep);
  font-weight: 600;
}

.hours-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
}

.status-open {
  background: rgba(40, 167, 69, 0.12);
  color: #196F3D;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  font-size: 20px;
  margin-top: 1px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 2px;
  font-weight: 600;
}

.contact-value {
  font-size: 0.92rem;
  color: var(--color-brown-deep);
  font-weight: 500;
  line-height: 1.5;
}

.contact-value a {
  color: var(--color-orange);
  transition: color var(--transition);
}

.contact-value a:hover { color: var(--color-orange-light); }

/* ---------- Map Section ---------- */
.map-section {
  padding: var(--section-gap) 0;
  background: var(--color-cream);
}

.map-header {
  text-align: center;
  margin-bottom: 36px;
}

.map-header .divider { margin: 16px auto 0; }

.map-placeholder {
  width: 100%;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #E0D5C8;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Simulated map grid */
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(200,190,175,0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,190,175,0.55) 1px, transparent 1px);
  background-size: 44px 44px;
  background-color: #D8CDBC;
}

.map-roads {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.map-roads::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 12px;
  background: rgba(255,255,255,0.75);
  transform: translateY(-50%);
}

.map-roads::after {
  content: '';
  position: absolute;
  left: 42%;
  top: 0;
  bottom: 0;
  width: 12px;
  background: rgba(255,255,255,0.75);
}

.map-pin {
  position: relative;
  z-index: 2;
  text-align: center;
}

.map-pin-icon {
  font-size: 52px;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.28));
  animation: pin-bounce 2s ease-in-out infinite;
  display: block;
}

@keyframes pin-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.map-pin-label {
  display: inline-block;
  background: var(--color-brown-deep);
  color: var(--color-white);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.80rem;
  font-weight: 600;
  white-space: nowrap;
  margin-top: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.22);
}

/* "Open in Maps" badge inside map */
.map-embed-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 3;
}

.map-embed-badge a {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-orange);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  transition: background var(--transition), color var(--transition);
}

.map-embed-badge a:hover {
  background: var(--color-orange);
  color: white;
}

.map-embed-note {
  text-align: center;
  margin-top: 18px;
  font-size: 0.84rem;
  color: var(--color-text-muted);
}

.map-embed-note a {
  color: var(--color-orange);
  font-weight: 600;
}

/* ---------- Instagram Feed ---------- */
.instagram-section {
  padding: var(--section-gap) 0;
  background: var(--color-cream-dark);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.ig-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
}

.ig-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  transition: transform 0.4s ease;
}

.ig-item:hover .ig-img {
  transform: scale(1.06);
}

.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 21, 8, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.ig-overlay span {
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity var(--transition);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  text-align: center;
  padding: 0 10px;
}

.ig-item:hover .ig-overlay {
  background: rgba(42, 21, 8, 0.48);
}

.ig-item:hover .ig-overlay span {
  opacity: 1;
}

.ig-follow {
  background: linear-gradient(135deg, var(--color-brown-deep), var(--color-brown-mid));
  cursor: default;
  aspect-ratio: 1;
}

.ig-follow-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
}

.ig-follow-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.ig-follow-text {
  color: rgba(255,255,255,0.80);
  font-size: 0.80rem;
  margin-bottom: 2px;
}

.ig-follow-handle {
  color: var(--color-orange-light);
  font-weight: 700;
  font-size: 0.90rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-brown-deep);
  color: rgba(255,255,255,0.75);
}

.footer-top {
  padding: 60px 20px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--color-orange-light);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.72;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background var(--transition), transform var(--transition);
}

.social-btn:hover {
  background: var(--color-orange);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-orange-light);
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--color-orange-light); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.footer-contact-item span:first-child {
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

.footer-copy {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.38);
}

.footer-agency {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.32);
}

.footer-agency a {
  color: var(--color-orange);
  font-weight: 600;
}

/* ---------- Floating WhatsApp Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.60);
  transform: translateY(-3px);
}

.wa-icon-wrap {
  width: 56px;
  height: 56px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-icon-wrap svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.wa-label {
  background: #128C7E;
  color: white;
  padding: 0 16px;
  height: 56px;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.35s ease, padding 0.35s ease;
}

.whatsapp-float:hover .wa-label {
  max-width: 180px;
}

.wa-pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FF4444;
  border: 2px solid white;
}

.wa-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(255,68,68,0.35);
  animation: pulse-ring 1.8s ease-out infinite;
}

@keyframes pulse-ring {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ---------- Scroll to Top ---------- */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(42, 21, 8, 0.82);
  border: 1px solid rgba(240, 132, 10, 0.32);
  color: var(--color-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9000;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  backdrop-filter: blur(6px);
  font-size: 20px;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--color-brown-mid);
  border-color: var(--color-orange);
}

/* ---------- Responsive: Tablet (600px+) ---------- */
@media (min-width: 600px) {
  .menu-category.active {
    grid-template-columns: 1fr 1fr;
  }

  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Responsive: Desktop (900px+) ---------- */
@media (min-width: 900px) {
  .navbar-nav {
    display: flex;
  }

  .navbar-cta {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }

  .hero-content {
    padding: 130px 20px 88px;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-img-main {
    height: 440px;
  }

  .menu-category.active {
    grid-template-columns: 1fr 1fr;
  }

  .ig-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .ig-item {
    aspect-ratio: 1;
  }

  .ig-follow {
    aspect-ratio: 1;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .hero-stats {
    gap: 0;
  }
}

/* ---------- Large Desktop (1100px+) ---------- */
@media (min-width: 1100px) {
  .menu-category.active {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ---------- Print ---------- */
@media print {
  .navbar, .whatsapp-float, .scroll-top, .hamburger, .mobile-menu,
  .announce-banner { display: none !important; }
  .hero { min-height: auto; padding: 40px 0; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
