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

:root {
  /* Primary Palette */
  --navy: #0A1628;
  --navy-light: #121F36;
  --navy-mid: #1A2940;
  --teal: #00BFA6;
  --teal-dark: #009E8B;
  --teal-glow: rgba(0, 191, 166, 0.25);
  --coral: #FF6B6B;
  --coral-dark: #E55A5A;
  --gold: #F4C542;
  --gold-dark: #D4A82E;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F0F4F8;
  --light-gray: #E2E8F0;
  --medium-gray: #94A3B8;
  --dark-gray: #334155;
  --text-dark: #1E293B;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-bg-light: rgba(255, 255, 255, 0.85);
  --glass-border-light: rgba(255, 255, 255, 0.5);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.16);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.24);
  --shadow-glow-teal: 0 4px 20px rgba(0, 191, 166, 0.3);
  --shadow-glow-coral: 0 4px 20px rgba(255, 107, 107, 0.3);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Spacing */
  --nav-height: 72px;
  --section-padding: 80px;
  --container-max: 1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition-base);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo .logo-accent {
  color: var(--teal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--medium-gray);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.active {
  color: var(--teal);
  background: var(--teal-glow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-nav-overlay.open {
  display: flex;
  opacity: 1;
}

.mobile-nav-overlay a {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.mobile-nav-overlay a:hover,
.mobile-nav-overlay a.active {
  color: var(--teal);
  background: var(--teal-glow);
}

/* ===== HERO SECTIONS ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 40px) 24px 60px;
  overflow: hidden;
}

.hero-home {
  min-height: 100vh;
  background: linear-gradient(135deg, #0A1628 0%, #0D2137 25%, #0F2B4A 50%, #0A3D5C 75%, #084D5A 100%);
}

.hero-home::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(0, 191, 166, 0.08) 0%, transparent 60%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-home::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255, 107, 107, 0.06) 0%, transparent 60%);
  animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

.hero-page {
  min-height: 50vh;
  background: linear-gradient(135deg, #0A1628 0%, #0F2B4A 50%, #084D5A 100%);
}

.hero-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(0, 191, 166, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.08) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: var(--teal-glow);
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 191, 166, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  box-shadow: var(--shadow-glow-teal);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 191, 166, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.btn-coral {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: var(--white);
  box-shadow: var(--shadow-glow-coral);
}

.btn-coral:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 107, 107, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
  border-radius: 10px;
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--section-padding) 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-navy-light {
  background: var(--navy-light);
  color: var(--white);
}

.section-light {
  background: var(--off-white);
}

.section-white {
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-header .section-subtitle {
  font-size: 1.05rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header h2 {
  color: var(--white);
}

/* ===== CARDS ===== */
/* Glass Card (Dark bg) */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-base);
}

.glass-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
}

/* Light Card */
.light-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  padding: 28px;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.light-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.card-grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.card-grid-4 {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* Card internals */
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.card-icon-teal { background: var(--teal-glow); }
.card-icon-coral { background: rgba(255, 107, 107, 0.15); }
.card-icon-gold { background: rgba(244, 197, 66, 0.15); }
.card-icon-navy { background: rgba(10, 22, 40, 0.08); }

.card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-text {
  font-size: 0.925rem;
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.light-card .card-text {
  color: var(--dark-gray);
}

/* Category Tags */
.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.tag-beach { background: rgba(0, 191, 166, 0.15); color: var(--teal); }
.tag-nature { background: rgba(34, 197, 94, 0.15); color: #22C55E; }
.tag-entertainment { background: rgba(168, 85, 247, 0.15); color: #A855F7; }
.tag-sightseeing { background: rgba(244, 197, 66, 0.15); color: var(--gold-dark); }

.light-card .tag-beach { background: rgba(0, 191, 166, 0.1); }
.light-card .tag-nature { background: rgba(34, 197, 94, 0.1); }
.light-card .tag-entertainment { background: rgba(168, 85, 247, 0.1); }
.light-card .tag-sightseeing { background: rgba(244, 197, 66, 0.1); }

/* Price Badge */
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--teal);
  margin-bottom: 8px;
}

.price-badge .price-inactive {
  color: var(--light-gray);
}

/* Type Badge */
.type-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(0, 191, 166, 0.1);
  color: var(--teal);
  margin-bottom: 12px;
}

/* Card Gradient Top */
.card-gradient-top {
  height: 6px;
  border-radius: 16px 16px 0 0;
  margin: -28px -28px 20px -28px;
}

.gradient-teal { background: linear-gradient(135deg, var(--teal), #00E5CC); }
.gradient-coral { background: linear-gradient(135deg, var(--coral), #FF9A9A); }
.gradient-gold { background: linear-gradient(135deg, var(--gold), #FFD97A); }
.gradient-purple { background: linear-gradient(135deg, #A855F7, #C084FC); }
.gradient-blue { background: linear-gradient(135deg, #3B82F6, #60A5FA); }

/* ===== QUICK ACCESS GRID (Home Page) ===== */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.quick-card {
  text-align: center;
  cursor: pointer;
}

.quick-card .card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  font-size: 1.8rem;
  border-radius: 16px;
  transition: all var(--transition-base);
}

.quick-card:hover .card-icon {
  transform: scale(1.1);
}

.quick-card .card-title {
  font-size: 1rem;
  color: var(--white);
}

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--white);
  color: var(--dark-gray);
  border: 2px solid var(--light-gray);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-tab:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.filter-tab.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* Dark filter tabs */
.section-dark .filter-tab {
  background: var(--glass-bg);
  color: var(--medium-gray);
  border-color: var(--glass-border);
}

.section-dark .filter-tab:hover {
  color: var(--teal);
  border-color: var(--teal);
}

.section-dark .filter-tab.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* ===== GOOD TO KNOW GRID ===== */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fact-card {
  text-align: center;
  padding: 24px 16px;
}

.fact-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.fact-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  margin-bottom: 6px;
}

.fact-value {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

/* ===== TRANSPORTATION ===== */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.transport-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.transport-card .card-icon {
  flex-shrink: 0;
}

.transport-card .card-title {
  margin-bottom: 4px;
}

.transport-card .card-text {
  margin-bottom: 0;
  font-size: 0.875rem;
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 14px;
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--teal);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--teal);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 191, 166, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
  font-size: 1.2rem;
  color: var(--teal);
}

.faq-item.open .faq-icon {
  background: var(--teal);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--dark-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* ===== GOVERNMENT NOTE ===== */
.info-banner {
  background: linear-gradient(135deg, rgba(0, 191, 166, 0.08), rgba(0, 191, 166, 0.03));
  border: 1px solid rgba(0, 191, 166, 0.2);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 32px;
}

.info-banner-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}

.info-banner-text {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

.info-banner-text strong {
  color: var(--text-dark);
}

/* ===== GROCERY SECTION ===== */
.grocery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.grocery-card {
  padding: 20px;
  text-align: center;
}

.grocery-card .card-icon {
  margin: 0 auto 12px;
}

.grocery-card .card-title {
  font-size: 1rem;
  margin-bottom: 4px;
}

.grocery-card .card-text {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ===== TWO-COLUMN LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.two-col-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.two-col-content p {
  color: var(--dark-gray);
  margin-bottom: 24px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: var(--medium-gray);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

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

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  padding: 4px 0;
  color: var(--medium-gray);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  position: relative;
  height: 60px;
  overflow: hidden;
}

.wave-divider.wave-dark {
  background: var(--off-white);
}

.wave-divider.wave-dark::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--navy);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.wave-divider.wave-light {
  background: var(--navy);
}

.wave-divider.wave-light::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--off-white);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.wave-divider.wave-white {
  background: var(--navy);
}

.wave-divider.wave-white::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.wave-divider.wave-navy-to-light {
  background: var(--navy-light);
}

.wave-divider.wave-navy-to-light::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--off-white);
  clip-path: ellipse(60% 100% at 50% 100%);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 56px;
    --nav-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

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

  .card-grid,
  .card-grid-3,
  .card-grid-4 {
    grid-template-columns: 1fr;
  }

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

  .hero-home {
    min-height: 90vh;
  }

  .hero-page {
    min-height: 40vh;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .filter-tabs {
    gap: 6px;
  }

  .filter-tab {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.925rem;
  }

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

@media (max-width: 480px) {
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .facts-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .container {
    padding: 0 16px;
  }

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

/* ===== DECORATIVE SHAPES ===== */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.deco-circle-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 191, 166, 0.08), transparent 70%);
  top: 20%;
  right: -80px;
}

.deco-circle-2 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.06), transparent 70%);
  bottom: 10%;
  left: -60px;
}

/* ===== HERO BUTTON GROUP ===== */
.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SUB-SECTION HEADING ===== */
.subsection-heading {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-gray);
}

.section-dark .subsection-heading {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* ===== DINING CATEGORY LABEL ===== */
.category-divider {
  margin-top: 48px;
  margin-bottom: 24px;
}

.category-divider:first-of-type {
  margin-top: 0;
}

.category-divider h3 {
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-divider h3 .cat-emoji {
  font-size: 1.5rem;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.hidden { display: none !important; }
