/* =====================================================
   JAY BHAIRAVNATH PUNJABI TADKA — SITE STYLES
   -----------------------------------------------------
   Color palette derived to complement a warm, traditional
   Punjabi restaurant identity (maroon / gold / cream).
   Replace the values below once the real logo is supplied
   so the palette matches it exactly.
   ===================================================== */

:root {
  /* Palette sampled directly from the Jay Bhairavnath Punjabi Tadka logo */
  --primary-color: #A32E2E;      /* chili red from the logo's chilies */
  --primary-dark: #7C2222;       /* darker red for hover states */
  --secondary-color: #F0B429;    /* logo gold — "Bhairavnath" lettering */
  --accent-color: #F5C65C;       /* lighter gold accent / hover highlight */
  --dark-color: #2B0905;         /* logo's near-black maroon background */
  --light-color: #FCEFDD;        /* warm cream — logo's "Jay" lettering, lightened */
  --text-color: #3A1E12;         /* warm dark brown for body text */
  --white: #FFFFFF;
  --muted: #8A6152;
  --chili-green: #6B7226;        /* chili-stem green from the logo, used sparingly */

  --font-body: 'Roboto', sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 26px;
  --shadow-soft: 0 10px 30px rgba(43, 23, 16, 0.10);
  --shadow-strong: 0 18px 44px rgba(43, 23, 16, 0.22);
  --section-pad: 5.5rem;
}

/* =====================================================
   RESET / BASE
   ===================================================== */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background: var(--white);
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-body);
  color: var(--dark-color);
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary-color);
  color: var(--white);
  padding: .75rem 1.25rem;
  z-index: 2000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

.section { padding: var(--section-pad) 0; }
.section-head { margin-bottom: 3rem; }
.section-eyebrow {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: .5rem;
  letter-spacing: .02em;
}
.section-title {
  font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
}

/* Buttons */
.btn-primary-brand {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: var(--white);
  font-weight: 500;
  padding: .75rem 1.6rem;
  border-radius: var(--radius-sm);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn-primary-brand:hover, .btn-primary-brand:focus {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn-outline-brand {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 500;
  padding: .75rem 1.6rem;
  border-radius: var(--radius-sm);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
  font-weight: 500;
  padding: .75rem 1.6rem;
  border-radius: var(--radius-sm);
  transition: transform .2s ease, background .2s ease;
}
.btn-outline-light:hover, .btn-outline-light:focus {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* =====================================================
   1. TOP BAR
   ===================================================== */
.topbar {
  background: var(--dark-color);
  color: var(--light-color);
  font-size: .85rem;
  padding: .5rem 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-info {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.topbar-info li {
  display: flex;
  align-items: center;
  gap: .45rem;
  white-space: nowrap;
}
.topbar-info i { color: var(--accent-color); }
.topbar-cta {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.topbar-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--light-color);
}
.topbar-link i { color: var(--accent-color); }
.btn-topbar {
  background: var(--secondary-color);
  color: var(--dark-color);
  font-weight: 700;
  font-size: .8rem;
  padding: .35rem .9rem;
  border-radius: 30px;
  white-space: nowrap;
}
.btn-topbar:hover { background: var(--accent-color); }

/* =====================================================
   2. NAVBAR
   ===================================================== */
#mainNav {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(43,23,16,.08);
  padding: .6rem 0;
  transition: padding .25s ease, box-shadow .25s ease;
}
#mainNav.nav-scrolled {
  padding: .35rem 0;
  box-shadow: 0 6px 22px rgba(43,23,16,.14);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.navbar-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  transition: height .25s ease, transform .3s ease;
  animation: logoPop .7s cubic-bezier(.34,1.56,.64,1) both;
}
#mainNav.nav-scrolled .navbar-brand img { height: 42px; }
.navbar-brand:hover img { transform: scale(1.06) rotate(-2deg); }
@keyframes logoPop {
  from { opacity: 0; transform: scale(.6) rotate(-8deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.05rem;
}
.brand-sub {
  font-weight: 500;
  color: var(--secondary-color);
  font-size: .8rem;
  letter-spacing: .03em;
}
.navbar-nav .nav-link {
  color: var(--text-color);
  font-weight: 500;
  margin: 0 .6rem;
  padding: .5rem 0 !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background: var(--primary-color);
  transition: width .25s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 100%; }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary-color); }
.btn-nav-cta { padding: .55rem 1.4rem; }

/* =====================================================
   3. HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,23,16,.55) 0%, rgba(43,23,16,.72) 55%, rgba(122,31,43,.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-top: 3rem;
  padding-bottom: 3rem;
  animation: heroRise .9s ease both;
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: .75rem;
}
.hero-title {
  font-size: clamp(2.2rem, 1.6rem + 3vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.9);
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  margin: 0;
}
.hero-trust span:not(:last-child)::after {
  content: "•";
  margin-left: 1.5rem;
  color: var(--accent-color);
}
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.3rem;
  z-index: 1;
  animation: bounceDown 2.2s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* Decorative pattern divider (subtle Punjabi-inspired motif, echoing the
   logo's gold lettering and chili-green accents) */
.pattern-divider {
  height: 34px;
  background-image:
    radial-gradient(circle, var(--secondary-color) 0 3px, transparent 3px),
    radial-gradient(circle, var(--chili-green) 0 2px, transparent 2px);
  background-size: 52px 26px, 52px 26px;
  background-position: center, 26px center;
  background-color: var(--light-color);
  opacity: .6;
}

/* =====================================================
   4. ABOUT
   ===================================================== */
.about-section { background: var(--white); }
.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.about-media-badge {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  right: 1.2rem;
  background: rgba(43,23,16,.82);
  color: var(--white);
  padding: .9rem 1.1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 500;
  backdrop-filter: blur(3px);
}
.about-media-badge i { color: var(--accent-color); font-size: 1.4rem; }
.about-text { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.about-counters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}
.about-counter {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--light-color);
  padding: .9rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--dark-color);
}
.about-counter i { color: var(--primary-color); font-size: 1.25rem; }

/* =====================================================
   5. WHY CHOOSE US
   ===================================================== */
.why-section { background: var(--light-color); }
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.4rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}
.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(-6deg); }
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.why-card p { color: var(--muted); font-size: .92rem; margin: 0; }

/* =====================================================
   6. SIGNATURE DISHES
   ===================================================== */
.dish-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.dish-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.dish-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.dish-card:hover .dish-media img { transform: scale(1.08); }
.dish-tag {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--white);
  color: var(--dark-color);
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .6rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.dish-tag.veg { color: #2e7d32; }
.dish-tag.nonveg { color: #b3261e; }
.dish-tag i { font-size: .55rem; }
.dish-body { padding: 1.2rem; display: flex; flex-direction: column; flex: 1; }
.dish-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; }
.dish-body p { color: var(--muted); font-size: .9rem; flex: 1; margin-bottom: 1rem; }
.dish-footer { display: flex; align-items: center; justify-content: space-between; }
.dish-price { color: var(--primary-color); font-weight: 700; }
.dish-footer .btn {
  font-size: .82rem;
  padding: .4rem 1rem;
}

/* =====================================================
   7. MENU
   ===================================================== */
.menu-section { background: var(--light-color); }
.menu-pills {
  border: none;
  gap: .6rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.menu-pills .nav-link {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 30px;
  padding: .5rem 1.2rem;
  font-weight: 500;
  font-size: .92rem;
  background: transparent;
}
.menu-pills .nav-link.active {
  background: var(--primary-color);
  color: var(--white);
}
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(122,31,43,.25);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-info { display: flex; gap: .6rem; align-items: flex-start; }
.veg-dot, .nonveg-dot {
  width: 14px; height: 14px;
  border: 2px solid #2e7d32;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .25rem;
}
.veg-dot::after { content:""; width:6px; height:6px; background:#2e7d32; border-radius:50%; }
.nonveg-dot { border-color: #b3261e; }
.nonveg-dot::after { content:""; width:6px; height:6px; background:#b3261e; border-radius:50%; }
.menu-item-title { font-weight: 700; color: var(--dark-color); margin-bottom: .2rem; }
.menu-item-desc { color: var(--muted); font-size: .87rem; margin: 0; }
.menu-item-price { font-weight: 700; color: var(--primary-color); white-space: nowrap; }
.menu-tab-content {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-soft);
}

/* =====================================================
   8. GALLERY
   ===================================================== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 2.5rem;
}
.gallery-filter {
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 30px;
  padding: .45rem 1.2rem;
  font-size: .88rem;
  font-weight: 500;
  transition: background .2s ease, color .2s ease;
}
.gallery-filter.active, .gallery-filter:hover {
  background: var(--primary-color);
  color: var(--white);
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(43,23,16,.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 500; font-size: .9rem; }
.gallery-item.hidden-item { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,10,6,.94);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 88vw; max-height: 82vh; border-radius: var(--radius-sm); }
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: background .2s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.28); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* =====================================================
   9. REVIEWS
   ===================================================== */
.reviews-section { background: var(--white); }
.review-card {
  background: var(--light-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  height: 100%;
  box-shadow: var(--shadow-soft);
}
.review-stars { color: var(--secondary-color); margin-bottom: .8rem; font-size: .95rem; }
.review-text { color: var(--text-color); font-style: italic; margin-bottom: 1.2rem; min-height: 4.5em; }
.review-author { display: flex; align-items: center; gap: .75rem; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.review-name { font-weight: 700; color: var(--dark-color); font-size: .92rem; }

/* =====================================================
   10. GOOGLE REVIEW CTA
   ===================================================== */
.google-cta-section { background: var(--light-color); }
.google-cta-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}
.google-cta-icon {
  width: 62px; height: 62px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--light-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: #4285F4;
}
.google-cta-box h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: .6rem; }
.google-cta-box p { color: var(--muted); margin-bottom: 1.5rem; }
.google-cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* =====================================================
   11. FEEDBACK FORM
   ===================================================== */
.feedback-section { background: var(--white); }
.feedback-form {
  background: var(--light-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-soft);
}
.feedback-form .form-label { font-weight: 500; color: var(--dark-color); }
.feedback-form .form-control {
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(122,31,43,.2);
  padding: .65rem .9rem;
}
.feedback-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(122,31,43,.15);
}
.star-rating { display: flex; gap: .35rem; }
.star-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #d8c9be;
  padding: .1rem;
  transition: color .15s ease, transform .15s ease;
}
.star-btn:hover, .star-btn.active { color: var(--secondary-color); transform: scale(1.1); }
.form-alert {
  padding: .85rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.form-alert-success { background: #e4f3e6; color: #1e5c25; }
.form-alert-error { background: #fbe4e2; color: #8a241c; }
.btn-spinner { margin-left: .5rem; }

/* =====================================================
   12. LOCATION / CONTACT
   ===================================================== */
.location-section { background: var(--light-color); }
.map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.location-info { height: 100%; }
.location-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.location-list li {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(122,31,43,.12);
}
.location-list i { color: var(--primary-color); width: 20px; text-align: center; }
.location-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.hours-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.hours-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.hours-card-head h3 { font-size: 1.1rem; }
.hours-status {
  font-size: .78rem;
  font-weight: 700;
  padding: .3rem .7rem;
  border-radius: 20px;
  background: #eee;
  color: #777;
}
.hours-status.open { background: #e4f3e6; color: #1e5c25; }
.hours-status.closed { background: #fbe4e2; color: #8a241c; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: .4rem 0;
  font-size: .92rem;
  border-bottom: 1px dashed rgba(122,31,43,.12);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li.today { font-weight: 700; color: var(--primary-color); }
.hours-note { font-size: .78rem; color: var(--muted); margin: .9rem 0 0; }

/* =====================================================
   13. CONTACT CTA
   ===================================================== */
.contact-cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
}
.contact-cta-box { text-align: center; max-width: 680px; margin: 0 auto; }
.contact-cta-box h2 { color: var(--white); font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.1rem); margin-bottom: .8rem; }
.contact-cta-box p { color: rgba(255,255,255,.88); margin-bottom: 1.75rem; }
.contact-cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* =====================================================
   14. FOOTER
   ===================================================== */
.site-footer {
  background: var(--dark-color);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 1.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.footer-brand img { height: 44px; }
.footer-desc { font-size: .9rem; line-height: 1.7; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: .7rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background .2s ease;
}
.footer-social a:hover { background: var(--secondary-color); color: var(--dark-color); }
.site-footer h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 1.1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { font-size: .9rem; transition: color .2s ease; }
.footer-links a:hover { color: var(--accent-color); }
.footer-contact, .footer-hours { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: .6rem; font-size: .88rem; margin-bottom: .7rem; }
.footer-contact i { color: var(--accent-color); margin-top: .2rem; }
.footer-hours li { display: flex; justify-content: space-between; font-size: .88rem; margin-bottom: .5rem; }
.site-footer hr { border-color: rgba(255,255,255,.12); margin: 2.5rem 0 1.5rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
  font-size: .82rem;
}

/* =====================================================
   FLOATING BUTTONS
   ===================================================== */
.floating-buttons {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  z-index: 1040;
}
.fab {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: var(--shadow-strong);
  transition: transform .2s ease;
}
.fab:hover { transform: scale(1.08); }
.fab-whatsapp { background: #25D366; }
.fab-call { background: var(--primary-color); }

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 6.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--dark-color);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  z-index: 1040;
}
.back-to-top[hidden] { display: none; }

/* =====================================================
   ANIMATION ON SCROLL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(.98);
  transition: opacity .65s cubic-bezier(.2,.7,.3,1), transform .65s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* Staggered entrance for cards in a row so grids feel choreographed
   rather than every item fading in at once. */
.row > div:nth-child(1) > .reveal { transition-delay: .03s; }
.row > div:nth-child(2) > .reveal { transition-delay: .09s; }
.row > div:nth-child(3) > .reveal { transition-delay: .15s; }
.row > div:nth-child(4) > .reveal { transition-delay: .21s; }
.row > div:nth-child(5) > .reveal { transition-delay: .27s; }
.row > div:nth-child(6) > .reveal { transition-delay: .33s; }
.row > div:nth-child(7) > .reveal { transition-delay: .39s; }
.row > div:nth-child(8) > .reveal { transition-delay: .45s; }

/* Lightbox image crossfade */
#lightboxImage {
  animation: lightboxFade .3s ease;
}
@keyframes lightboxFade {
  from { opacity: 0; transform: scale(.96); }
  to { opacity: 1; transform: scale(1); }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991.98px) {
  :root { --section-pad: 4rem; }
  .navbar-collapse {
    background: var(--white);
    margin-top: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
  }
  .navbar-nav .nav-link { margin: .25rem 0; }
  .btn-nav-cta { display: inline-block; margin-top: .75rem; }
  .about-counters { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767.98px) {
  :root { --section-pad: 3.25rem; }
  .topbar-info li:nth-child(2) { display: none; }
  .hero { min-height: 82vh; text-align: left; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .google-cta-actions, .contact-cta-actions { flex-direction: column; }
  .google-cta-actions .btn, .contact-cta-actions .btn { width: 100%; }
  .menu-tab-content { padding: 1.25rem 1rem; }
}

@media (max-width: 575.98px) {
  .navbar-brand img { height: 42px; }
  .hero-trust { flex-direction: column; gap: .35rem; }
  .hero-trust span::after { display: none; }
  .floating-buttons { right: .85rem; bottom: .85rem; }
  .fab { width: 48px; height: 48px; font-size: 1.2rem; }
}
