/* ===== CSS Variables ===== */
:root {
  --navy: #0a1628;
  --gold: #f5a623;
  --white: #ffffff;
  --cream: #fdf6ec;
  --green: #2d6a4f;
  --saffron: #e8b86d;
  --saffron-light: #f5d9a8;
  --green-light: #40916c;
  --shadow: 0 10px 40px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.18);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  width: auto;
  height: 48px;
  max-width: 140px;
  object-fit: contain;
}

.footer-logo .logo-img {
  height: 44px;
  max-width: 130px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.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 ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 120px 24px 10vh;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.1) 0%, rgba(10, 22, 40, 0.15) 45%, rgba(10, 22, 40, 0.55) 78%, rgba(10, 22, 40, 0.75) 100%),
    linear-gradient(180deg, transparent 0%, transparent 50%, rgba(245, 166, 35, 0.04) 100%),
    radial-gradient(ellipse at 50% 85%, rgba(245, 166, 35, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  isolation: isolate;
  max-width: 900px;
  text-align: center;
  width: 100%;
  padding-bottom: 8px;
}

/* Desktop / laptop only — mobile unchanged */
@media (min-width: 769px) {
  .hero {
    padding-bottom: 4vh;
  }

  .hero-bg img {
    object-position: center 8%;
  }

  .hero-content {
    padding-bottom: 0;
    transform: translateY(28px);
  }
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  animation: fadeDown 1s ease 0.2s both;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.8),
    0 2px 12px rgba(0, 0, 0, 0.6),
    0 0 24px rgba(245, 166, 35, 0.35);
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 28px;
  min-height: 1.3em;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.9),
    0 4px 16px rgba(0, 0, 0, 0.75),
    0 8px 32px rgba(10, 22, 40, 0.65);
}

.hero-headline::after {
  content: '|';
  color: var(--gold);
  animation: blink 0.7s step-end infinite;
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.8),
    0 0 16px rgba(245, 166, 35, 0.5);
}

.btn-cta {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold) 0%, #e09410 100%);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  animation: fadeUp 1s ease 0.7s both;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.45);
}

/* ===== Trust Badges ===== */
.trust-badges {
  background: var(--white);
  padding: 28px 24px;
  margin-top: -1px;
  box-shadow: 0 -10px 40px rgba(10, 22, 40, 0.06);
}

.trust-badges.visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.badge i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1.1rem;
}

/* ===== Sections Common ===== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header.light h2,
.section-header.light p {
  color: var(--cream);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-header p {
  color: #5a6b7d;
  font-size: 1rem;
}

/* Fade-in animation (JS triggered) */
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Destinations ===== */
.destinations-section {
  background: var(--cream);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dest-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.dest-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.dest-card:hover .dest-image {
  transform: scale(1.1);
}

.dest-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.85) 0%, transparent 55%);
  z-index: 1;
}

.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  color: var(--white);
}

.dest-info h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.dest-tagline {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-bottom: 8px;
}

.dest-rating {
  font-size: 0.8rem;
  color: var(--gold);
}

.dest-rating i {
  margin-right: 2px;
}

/* ===== Food Trail ===== */
.food-trail-section {
  background: linear-gradient(160deg, var(--navy) 0%, #122a45 40%, var(--green) 100%);
  position: relative;
}

.food-trail-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.food-trail-section .container {
  position: relative;
  z-index: 1;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.food-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.food-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.food-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--navy);
}

.food-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 22, 40, 0.25) 100%);
  pointer-events: none;
}

.food-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.food-card:hover .food-card-image img {
  transform: scale(1.07);
}

.food-card-body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  color: var(--navy);
}

.food-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 8px;
  line-height: 1.25;
}

.food-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  background: rgba(45, 106, 79, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.food-card p {
  font-size: 0.88rem;
  margin-bottom: 18px;
  line-height: 1.55;
  color: #5a6b7d;
  flex: 1;
}

.food-card .btn-trail {
  align-self: flex-start;
}

.btn-trail {
  padding: 10px 24px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn-trail:hover {
  background: var(--green);
  transform: scale(1.05);
}

/* ===== Packages ===== */
.packages-section {
  background: var(--white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center;
}

.package-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.package-card.featured {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.06);
  padding: 48px 36px;
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  z-index: 2;
}

.package-card.featured:hover {
  transform: scale(1.06) translateY(-4px);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 20px;
  border-radius: 20px;
}

.package-card h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.package-duration {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 28px;
}

.package-features {
  text-align: left;
  margin-bottom: 32px;
}

.package-features li {
  padding: 10px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-card.featured .package-features li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.package-features i {
  color: var(--gold);
  font-size: 0.85rem;
}

.package-price {
  margin-bottom: 24px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.package-card.featured .price-amount {
  color: var(--gold);
}

.price-note {
  font-size: 0.8rem;
  opacity: 0.7;
}

.btn-package {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-package:hover {
  background: transparent;
  color: var(--navy);
}

.package-card.featured .btn-package {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.package-card.featured .btn-package:hover {
  background: transparent;
  color: var(--gold);
}

/* ===== Why Choose Us ===== */
.why-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.feature-box {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--gold);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--saffron-light) 100%);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--green);
}

.feature-box h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.feature-box p {
  font-size: 0.88rem;
  color: #5a6b7d;
  line-height: 1.6;
}

/* ===== Testimonials ===== */
.testimonials-section {
  background: var(--navy);
  overflow: hidden;
}

.hint-mobile {
  display: none;
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
  color: var(--white);
}

.testimonials-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-section .section-header p strong {
  color: var(--gold);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .reviews-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* Google reviews marquee */
.reviews-marquee {
  overflow: hidden;
  margin: 0 -24px;
  padding: 8px 0 24px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviewsScroll 35s linear infinite;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

@keyframes reviewsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.review-card {
  flex: 0 0 340px;
  max-width: 340px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 26px 24px;
  transition: background var(--transition), border-color var(--transition);
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 166, 35, 0.35);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.review-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  padding: 5px 10px;
  border-radius: 20px;
}

.review-google-badge .fa-google {
  color: #ea4335;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.review-snippet {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-read-review {
  background: none;
  border: none;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 18px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.btn-read-review:hover {
  color: var(--white);
}

.reviews-marquee-hint {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 24px;
}

.reviews-marquee-hint i {
  margin-right: 6px;
  color: var(--gold);
}

.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  padding: 14px 28px;
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 30px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonials-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-google-reviews:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-google-reviews .fa-google {
  color: #ea4335;
  font-size: 1.1rem;
}

/* Review read modal */
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.review-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.review-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(6px);
}

.review-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  background: var(--white);
  color: var(--navy);
  border-radius: 20px;
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(0.98);
  transition: transform var(--transition);
}

.review-modal.is-open .review-modal-dialog {
  transform: translateY(0) scale(1);
}

.review-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--cream);
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition);
}

.review-modal-close:hover {
  background: var(--saffron-light);
}

.review-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-modal-header .review-google-badge {
  color: var(--navy);
  background: var(--cream);
}

.review-modal-author {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.review-modal-text {
  font-size: 1rem;
  line-height: 1.75;
  font-style: italic;
  color: #3d4f63;
  margin-bottom: 12px;
}

.review-modal-source {
  font-size: 0.82rem;
  color: #5a6b7d;
  margin-bottom: 20px;
}

.btn-google-reviews--modal {
  width: 100%;
  background: var(--navy);
  color: var(--white);
}

.btn-google-reviews--modal:hover {
  background: var(--green);
  color: var(--white);
}

.btn-google-reviews--modal .fa-google {
  color: var(--gold);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 100%);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  word-break: break-word;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== Footer ===== */
.footer {
  background: #060f1a;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  margin: 20px 0 24px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-logo {
  justify-content: flex-start;
}

.footer-brand .footer-logo {
  margin-bottom: 4px;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--white);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.social-icons a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--gold);
  width: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Keyframe Animations ===== */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* ===== Responsive: 768px ===== */
@media (max-width: 768px) {
  .navbar {
    padding: 14px 0;
  }

  .navbar.scrolled {
    padding: 12px 0;
  }

  .nav-container {
    padding: 0 16px;
    gap: 12px;
  }

  .logo-img {
    height: 40px;
    max-width: 110px;
  }

  .footer-logo .logo-img {
    height: 40px;
    max-width: 110px;
  }

  .hero {
    padding: 100px 20px 8vh;
    min-height: 100svh;
    align-items: flex-end;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10, 22, 40, 0.05) 0%, rgba(10, 22, 40, 0.12) 50%, rgba(10, 22, 40, 0.6) 82%, rgba(10, 22, 40, 0.78) 100%),
      linear-gradient(180deg, transparent 0%, transparent 50%, rgba(245, 166, 35, 0.04) 100%),
      radial-gradient(ellipse at 50% 85%, rgba(245, 166, 35, 0.1) 0%, transparent 55%);
  }

  .hero-bg img {
    object-position: center top;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 22, 40, 0.98);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right var(--transition);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .btn-cta {
    width: 100%;
    max-width: 320px;
  }

  .food-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .food-card-image {
    height: 200px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hint-desktop {
    display: none;
  }

  .hint-mobile {
    display: inline;
  }

  .testimonials-section .section-header {
    padding: 0 8px;
    margin-bottom: 40px;
  }

  .testimonials-section .section-header p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .testimonials-section .container {
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
  }

  .reviews-marquee {
    margin: 0;
    width: 100%;
    padding: 4px 0 20px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  }

  .reviews-track {
    gap: 16px;
    animation-duration: 32s;
  }

  .review-card {
    flex: 0 0 min(288px, calc(100vw - 56px));
    max-width: min(288px, calc(100vw - 56px));
    padding: 20px 18px;
  }

  .review-card-top {
    flex-wrap: wrap;
    gap: 10px;
  }

  .review-snippet {
    font-size: 0.88rem;
    -webkit-line-clamp: 4;
  }

  .btn-read-review {
    font-size: 0.85rem;
    padding: 4px 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .testimonial-author {
    gap: 12px;
  }

  .avatar {
    width: 42px;
    height: 42px;
    font-size: 0.8rem;
  }

  .reviews-marquee-hint {
    font-size: 0.78rem;
    padding: 0 12px;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .btn-google-reviews {
    width: 100%;
    max-width: 100%;
    padding: 14px 20px;
    font-size: 0.88rem;
    text-align: center;
  }

  .review-modal {
    padding: 0;
    align-items: flex-end;
  }

  .review-modal-dialog {
    max-width: 100%;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px 20px 0 0;
    padding: 28px 20px 24px;
    -webkit-overflow-scrolling: touch;
  }

  .review-modal-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand .footer-logo {
    justify-content: center;
  }

  .footer-brand p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .social-icons {
    justify-content: center;
  }

  .section {
    padding: 70px 0;
  }
}

/* ===== Responsive: 480px ===== */
@media (max-width: 480px) {
  .nav-container {
    padding: 0 12px;
  }

  .logo-img {
    height: 36px;
    max-width: 96px;
  }

  .hero {
    padding: 88px 16px 6vh;
  }

  .hero-headline {
    font-size: 1.85rem;
  }

  .trust-container {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
  }

  .food-grid {
    grid-template-columns: 1fr;
  }

  .food-card-image {
    height: 240px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    width: 100%;
    right: -100%;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .testimonials-section .section-header {
    margin-bottom: 32px;
  }

  .reviews-track {
    animation-duration: 38s;
    gap: 14px;
  }

  .review-card {
    flex: 0 0 calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    padding: 18px 16px;
  }

  .review-google-badge {
    font-size: 0.68rem;
    padding: 4px 8px;
  }

  .testimonial-author strong {
    font-size: 0.9rem;
  }

  .testimonial-author span {
    font-size: 0.75rem;
  }

  .review-modal-author {
    font-size: 1.2rem;
    padding-right: 36px;
  }

  .review-modal-text {
    font-size: 0.95rem;
  }
}
