/* ==============================================
   RESET & BASE
   ============================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  background: #f5f5f5;
  color: #1a1a1a;
}

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

/* ==============================================
   PAGE LOADER
   ============================================== */
.loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  opacity: 1;
  visibility: visible;
}

.loader-overlay.loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid rgba(240, 89, 54, 0.18);
  border-top-color: #f05936;
  animation: loaderSpin 0.85s linear infinite;
}

.loader-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

/* ==============================================
   SHARED UTILITIES
   ============================================== */
.highlight { color: #ff9800; }

.tagline {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ff9800;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
}

.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 1.1rem;
}

.body-text {
  font-size: clamp(0.85rem, 1.1vw, 0.97rem);
  color: #777;
  line-height: 1.85;
  max-width: 480px;
}

/* Solid CTA */
.btn-primary {
  display: inline-block;
  background: #ff9800;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(255,152,0,0.38);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: #e68900;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,152,0,0.45);
}

/* Outline CTA */
.btn-outline {
  display: inline-block;
  border: 2px solid #ff9800;
  color: #ff9800;
  background: transparent;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-outline:hover {
  background: #ff9800;
  color: #fff;
  transform: translateY(-2px);
}

/* ==============================================
   NAVBAR
   ============================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  background: rgba(245,245,245,0.93);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 18px rgba(0,0,0,0.07);
}

.nav-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: #333;
  transition: color 0.2s;
}

.nav-links a:hover { color: #ff9800; }

.nav-icons {
  display: none;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==============================================
   MODAL
   ============================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.modal--open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem 2.25rem;
  max-width: 560px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.modal--open .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0 4px;
}

.modal-close:hover { color: #ff9800; }

.modal-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
}

.modal-text {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.9;
  text-align: center;
}

/* ==============================================
   HERO
   ============================================== */
.hero {
  display: flex;
  min-height: 100vh;
  padding-top: 82px;
}

/* Left — grey */
.hero-left {
  flex: 1;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5% 6% 5% 8%;
  position: relative;
  z-index: 2;
}

/* Curved divider */
.hero-left::after {
  content: '';
  position: absolute;
  top: 0;
  right: -80px;
  width: 160px;
  height: 100%;
  background: #f5f5f5;
  border-radius: 0 50% 50% 0 / 0 30% 30% 0;
  z-index: 3;
}

.hero-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero-desc {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: #666;
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 2rem;
}

.hero-left .btn-primary { align-self: flex-start; }

/* Right — orange */
.hero-right {
  flex: 1;
  background: #ff9800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

/* Floating image cluster */
.hero-imgs {
  position: relative;
  width: 340px;
  height: 340px;
  z-index: 4;
}

.img-main,
.img-float {
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  position: absolute;
}

.img-main {
  width: 260px;
  height: 260px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 5px solid #fff;
}

.img-float {
  width: 100px;
  height: 100px;
  border: 4px solid #fff;
}

.img-tl { top: -10px;    left: -10px; }
.img-tr { top: -10px;    right: -10px; }
.img-bl { bottom: -10px; left: -10px; }
.img-br { bottom: -10px; right: -10px; }

/* ==============================================
   ABOUT
   ============================================== */
.about {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 7rem 8%;
  background: #fff;
  overflow: hidden;
}

/* --- Image cluster --- */
.about-visuals {
  position: relative;
  flex: 0 0 420px;
  height: 460px;
}

/* Abstract orange blob */
.about-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,152,0,0.15);
  border-radius: 62% 38% 55% 45% / 50% 62% 38% 50%;
  top: 50%;
  left: 50%;
  transform: translate(-38%, -50%);
  z-index: 0;
}

.about-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* --- Text side --- */
.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-preview {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.about-content .btn-outline {
  align-self: flex-start;
  margin-top: 0.25rem;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

/* ==============================================
   MOST POPULAR FOOD
   ============================================== */
.popular {
  padding: 7rem 8%;
  background: #f5f5f5;
}

.popular-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.popular-header .section-heading { margin-bottom: 0; }

.menu-categories {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.menu-category {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

/* Category title row — just the heading */
.menu-category-header h3 {
  font-size: 1.55rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
  padding-left: 0.25rem;
}

/* Row: [arrow] [track] [arrow] */
.menu-category-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Arrow buttons — fixed width so they never shrink */
.slider-btn {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #ff9800;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  z-index: 2;
}

.slider-btn:hover {
  background: #ff9800;
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(255,152,0,0.35);
}

/* Track fills remaining space */
.slider-track {
  flex: 1;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 0.55rem;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.slider-track::-webkit-scrollbar { display: none; }

.menu-card {
  scroll-snap-align: start;
  min-width: 260px;
  flex: 0 0 260px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.13);
}

.menu-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f7f3ee;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-img img { transform: scale(1.05); }

.menu-card-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.menu-card-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.menu-card-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0;
}

.menu-card-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ff9800;
  white-space: nowrap;
}

.menu-card-desc {
  font-size: 0.84rem;
  color: #777;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-add {
  margin-top: auto;
  align-self: flex-start;
  background: #ff9800;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-add:hover {
  background: #e68900;
  transform: translateY(-1px);
}

/* Deprecated grid fallback */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card */
.food-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.food-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.food-card:hover .card-img-wrap img { transform: scale(1.06); }

.card-body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

.card-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

.card-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: #ff9800;
  background: rgba(255,152,0,0.1);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.stars {
  color: #ff9800;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.rating-num {
  font-size: 0.78rem;
  color: #aaa;
  font-weight: 500;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.card-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
}

.btn-cart {
  display: inline-block;
  background: #ff9800;
  color: #fff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}

.btn-cart:hover {
  background: #e68900;
  transform: translateY(-1px);
}

/* Pagination dots */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: 2.75rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.dot-active {
  background: #ff9800;
  transform: scale(1.35);
}

/* ==============================================
   RESPONSIVE — TABLET 1024px
   ============================================== */
@media (max-width: 1024px) {
  /* Hero */
  .hero-left { padding: 5% 4% 5% 5%; }
  .hero-imgs  { width: 280px; height: 280px; }
  .img-main   { width: 210px; height: 210px; }
  .img-float  { width: 85px;  height: 85px; }

  /* About */
  .about {
    gap: 3rem;
    padding: 5rem 5%;
  }
  .about-visuals { flex: 0 0 340px; height: 380px; }
  .about-circle  { width: 230px; height: 230px; }
  .about-bottle  { width: 90px; height: 180px; }

  /* Popular */
  .popular { padding: 5rem 5%; }
  .menu-categories { gap: 2rem; }
  .menu-card { min-width: 230px; flex: 0 0 230px; }
}

/* ==============================================
   RESPONSIVE — MOBILE 768px
   ============================================== */
@media (max-width: 768px) {
  /* Navbar */
  .nav-icons { display: flex; }
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(245,245,245,0.97);
    padding: 0.75rem 0;
    gap: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }

  .nav-links.open { display: flex; }
  .nav-links li { padding: 0.75rem 2rem; }

  /* Hero */
  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-left::after { display: none; }

  .hero-left {
    padding: 3rem 2rem 2.5rem;
    align-items: center;
    text-align: center;
  }

  .hero-desc { max-width: 100%; }
  .hero-left .btn-primary { align-self: center; }

  .hero-right {
    padding: 2.5rem 1rem 3rem;
    min-height: 300px;
  }

  .hero-imgs  { width: 240px; height: 240px; }
  .img-main   { width: 180px; height: 180px; }
  .img-float  { width: 72px;  height: 72px; }
  .img-bl, .img-br { display: none; }

  /* About */
  .about {
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 2.5rem;
    text-align: center;
  }

  .about-visuals {
    flex: none;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 1.5rem 0;
  }

  .about-blob   { display: none; }
  .about-bottle { display: none; }

  .about-circle {
    position: static;
    transform: none;
    width: 200px;
    height: 200px;
  }

  .about-content { align-items: center; }
  .about-content .body-text { max-width: 100%; }
  .about-content .btn-outline { align-self: center; }

  /* Popular */
  .popular { padding: 4rem 2rem; }
  .menu-card { min-width: 200px; flex: 0 0 200px; }
  .slider-btn { width: 36px; height: 36px; }
}

/* ==============================================
   RESPONSIVE — TABLET CARDS 2-col (481–1024px)
   ============================================== */
@media (min-width: 481px) and (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==============================================
   RESPONSIVE — SMALL 480px
   ============================================== */
@media (max-width: 480px) {
  .navbar { padding: 0 4%; }
  .nav-logo-img { height: 46px; }

  .hero-left { padding: 2.5rem 1.25rem 2rem; }
  .hero-imgs  { width: 200px; height: 200px; }
  .img-main   { width: 155px; height: 155px; }
  .img-float  { width: 60px;  height: 60px; }

  .about { padding: 3rem 1.25rem; }
  .about-circle { width: 170px; height: 170px; }

  .popular { padding: 3rem 1.25rem; }
  .menu-card { min-width: calc(100% - 0px); flex: 0 0 calc(100% - 0px); }
  .slider-btn { width: 34px; height: 34px; flex-shrink: 0; }
}

/* ==============================================
   MENU FLAT GRID (5 items)
   ============================================== */
.menu-flat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.menu-flat-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.menu-flat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.13);
}

.menu-flat-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f7f3ee;
}

.menu-flat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-flat-card:hover .menu-flat-img img { transform: scale(1.05); }

.menu-flat-body {
  padding: 1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.menu-flat-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0;
}

.menu-flat-desc {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.menu-flat-body .btn-add {
  margin-top: auto;
  align-self: flex-start;
}

/* Tablet: 3 per row */
@media (max-width: 1024px) {
  .menu-flat-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

/* Mobile: 2 per row */
@media (max-width: 768px) {
  .menu-flat-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

/* Small: 1 per row */
@media (max-width: 480px) {
  .menu-flat-grid { grid-template-columns: 1fr; }
}

/* ==============================================
   WHY CHOOSE OUR FOOD
   ============================================== */
.why {
  padding: 7rem 8%;
  background: #fff;
  text-align: center;
}

.why-header {
  margin-bottom: 4rem;
}

.why-header .section-heading { margin-bottom: 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}

/* Base item — minimal */
.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  transition: transform 0.25s;
}

.why-item:hover { transform: translateY(-4px); }

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,152,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
}

.why-desc {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.8;
  max-width: 260px;
}

/* Featured (middle) item */
.why-item--featured {
  background: #fff;
  box-shadow: 0 12px 48px rgba(0,0,0,0.1);
  padding: 2.75rem 2rem;
  transform: translateY(-8px);
}

.why-item--featured:hover { transform: translateY(-14px); }

.why-icon--featured {
  background: #ff9800;
  box-shadow: 0 6px 20px rgba(255,152,0,0.4);
}

/* ==============================================
   CUSTOMER REVIEWS
   ============================================== */
.reviews {
  padding: 7rem 8%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

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

.reviews-header .section-heading { margin-bottom: 0; }

/* Main review card */
.review-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.09);
  padding: 2.25rem 2.5rem;
  max-width: 640px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: opacity 0.22s ease, transform 0.22s ease;
  opacity: 1;
  transform: translateY(0);
}

.review-card--fade {
  opacity: 0;
  transform: translateY(8px);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

/* Numbered avatar circle */
.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ff9800;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255,152,0,0.35);
}

.review-user-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review-name {
  font-size: 0.97rem;
  font-weight: 700;
  color: #1a1a1a;
}

.review-label {
  font-size: 0.74rem;
  color: #aaa;
  font-weight: 500;
}

/* Green rating badge */
.review-badge {
  background: #22c55e;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.review-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.85;
  font-style: italic;
}

/* Numbered selector row */
.review-selectors {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.review-selector {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #e5e5e5;
  background: #fff;
  color: #999;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-selector:hover {
  border-color: #ff9800;
  color: #ff9800;
  transform: scale(1.08);
}

.review-selector--active {
  background: #ff9800;
  border-color: #ff9800;
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 4px 14px rgba(255,152,0,0.35);
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 5rem 8% 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Column shared */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.footer-about {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #999;
  max-width: 240px;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.social-btn:hover {
  background: #ff9800;
  color: #fff;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

/* Hours & Contact list */
.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: #999;
  line-height: 1.5;
}

.footer-list li svg { flex-shrink: 0; margin-top: 2px; }

.footer-day {
  font-weight: 600;
  color: #ddd;
  min-width: 80px;
}

.footer-time { color: #999; }

/* Subscribe */
.footer-sub-text {
  font-size: 0.83rem;
  color: #999;
  line-height: 1.7;
}

.subscribe-form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  overflow: hidden;
  padding: 4px 4px 4px 16px;
  margin-top: 0.25rem;
}

.subscribe-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  min-width: 0;
}

.subscribe-input::placeholder { color: #666; }

.subscribe-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ff9800;
  border: none;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.subscribe-btn:hover {
  background: #e68900;
  transform: scale(1.08);
}

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: #555;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: #ff9800; }

/* ==============================================
   RESPONSIVE — TABLET 1024px
   ============================================== */
@media (max-width: 1024px) {
  /* Why */
  .why { padding: 5rem 5%; }
  .why-grid { gap: 1.5rem; }
  .why-item--featured { padding: 2.25rem 1.5rem; }

  /* Reviews */
  .reviews { padding: 5rem 5%; }
  .review-card { padding: 2rem 2rem; }

  /* Footer */
  .footer { padding: 4rem 5% 0; }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

/* ==============================================
   RESPONSIVE — MOBILE 768px
   ============================================== */
@media (max-width: 768px) {
  /* Why */
  .why { padding: 4rem 2rem; }
  .why-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  /* All items become cards on mobile */
  .why-item {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    padding: 2rem 1.5rem;
  }

  .why-item--featured {
    transform: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }

  .why-item--featured:hover,
  .why-item:hover { transform: translateY(-4px); }

  /* Reviews */
  .reviews { padding: 4rem 2rem; gap: 2rem; }
  .review-card { padding: 1.75rem 1.5rem; }

  /* Footer */
  .footer { padding: 3.5rem 2rem 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-col { align-items: center; }
  .footer-about { max-width: 100%; }

  .footer-list li { justify-content: center; }
  .footer-day { min-width: auto; }

  .subscribe-form { max-width: 340px; width: 100%; }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* ==============================================
   RESPONSIVE — TABLET WHY 2-col (481–1024px)
   ============================================== */
@media (min-width: 481px) and (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Featured item spans full width on 2-col */
  .why-item--featured {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ==============================================
   RESPONSIVE — SMALL 480px
   ============================================== */
@media (max-width: 480px) {
  .why { padding: 3rem 1.25rem; }

  .reviews { padding: 3rem 1.25rem; gap: 1.75rem; }
  .review-card { padding: 1.5rem 1.25rem; border-radius: 18px; }
  .review-text { font-size: 0.92rem; }

  .footer { padding: 3rem 1.25rem 0; }
  .footer-bottom-links { flex-direction: column; gap: 0.5rem; align-items: center; }

  /* Modal */
  .modal-box { padding: 2rem 1.25rem; border-radius: 18px; }
  .modal-logo { height: 40px; }
  .modal-title { font-size: 1.2rem; }
  .modal-text { font-size: 0.85rem; }
}
