/* ============================================================
   UMRAH PACKAGES CANADA - Master CSS
   Mobile-First | TICO Compliant | WhatsApp Optimized
   ============================================================ */

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

:root {
  --green: #1a6b3c;
  --green-dark: #0f4a28;
  --green-light: #2a8f52;
  --gold: #c9a84c;
  --gold-light: #e8c870;
  --red: #cc0000;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-500: #adb5bd;
  --gray-700: #495057;
  --gray-900: #212529;
  --text: #1a1a1a;
  --text-muted: #6c757d;
  --border: #dee2e6;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --header-h: 110px;
  --bottom-nav-h: 64px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  min-height: 100vh;
  padding-top: var(--header-h);
  padding-bottom: var(--bottom-nav-h);
  line-height: 1.65;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ============================================================
   STICKY HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--green-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.top-bar {
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 16px;
  font-size: 12px;
  color: var(--white);
  gap: 8px;
  flex-wrap: wrap;
}
.top-bar-text { opacity: 0.9; }
.top-bar-actions { display: flex; gap: 8px; }
.top-bar-actions a {
  color: var(--white);
  background: rgba(255,255,255,0.15);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  white-space: nowrap;
}
.top-bar-actions a:hover { background: rgba(255,255,255,0.25); text-decoration: none; }

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img {
  height: 45px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  max-width: 210px;
}
/* Fallback text styles (hidden when logo SVG loads) */
.logo-icon { font-size: 28px; display: none; }
.logo-text { color: var(--white); display: none; }
.logo-text .logo-main { font-size: 16px; font-weight: 700; display: block; line-height: 1.2; }
.logo-text .logo-sub { font-size: 11px; opacity: 0.8; display: block; }
@media (max-width: 400px) {
  .logo-img { height: 36px; max-width: 170px; }
}

.hamburger-btn {
  background: rgba(255,255,255,0.1);
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================================
   NAVIGATION DRAWER
   ============================================================ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
}
.nav-overlay.open { display: block; }

.nav-drawer {
  position: fixed;
  top: 0; left: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--white);
  z-index: 1200;
  overflow-y: auto;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
}
.nav-drawer.open { left: 0; }

.nav-drawer-header {
  background: var(--green-dark);
  color: var(--white);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-drawer-header .nav-logo { font-size: 14px; font-weight: 700; }
.nav-close-btn {
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-quick-actions {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.nav-primary { padding: 8px 0; }
.nav-item > a,
.nav-item > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-900);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid var(--gray-200);
  min-height: 44px;
}
.nav-item > a:hover,
.nav-item > button:hover { background: var(--gray-100); text-decoration: none; }

.nav-submenu {
  background: var(--gray-100);
  display: none;
}
.nav-submenu.open { display: block; }
.nav-submenu li a {
  display: block;
  padding: 12px 16px 12px 32px;
  font-size: 14px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-submenu li a:hover { background: var(--gray-200); text-decoration: none; }

/* ============================================================
   BOTTOM NAV
   ============================================================ */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--bottom-nav-h);
  background: var(--white);
  border-top: 1px solid var(--border);
  display: flex;
  z-index: 900;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
}
.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--gray-500);
  font-size: 10px;
  font-weight: 500;
  min-height: 44px;
  text-decoration: none;
  transition: color 0.2s;
}
.bottom-nav-item:hover { text-decoration: none; color: var(--green); }
.bottom-nav-item.active { color: var(--green); }
.bottom-nav-item .icon { font-size: 20px; }
.bottom-nav-item.bottom-nav-whatsapp {
  background: #25D366;
  color: var(--white) !important;
}
.bottom-nav-item.bottom-nav-whatsapp:hover { background: #1da851; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 16px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  text-decoration: none;
  animation: waPulse 2.5s infinite;
}
.whatsapp-float:hover { background: #1da851; text-decoration: none; transform: scale(1.05); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  min-height: 44px;
  transition: all 0.2s;
  text-align: center;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); text-decoration: none; color: var(--white); }
.btn-gold { background: var(--gold); color: var(--gray-900); }
.btn-gold:hover { background: var(--gold-light); text-decoration: none; color: var(--gray-900); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1da851; text-decoration: none; color: var(--white); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); text-decoration: none; }
.btn-full { width: 100%; }
.btn-lg { padding: 15px 28px; font-size: 17px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--green-dark);
  color: var(--white);
  padding: 10px 16px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.trust-bar::-webkit-scrollbar { display: none; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0.9;
}

/* ============================================================
   HAJJ NOTICE
   ============================================================ */
.hajj-notice {
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: var(--radius);
  padding: 16px;
  margin: 16px;
}
.hajj-notice-title {
  color: #856404;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}
.hajj-notice p {
  color: #856404;
  font-size: 14px;
  line-height: 1.6;
}
.hajj-notice a { color: #533f03; font-weight: 600; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-light) 100%);
  color: var(--white);
  padding: 32px 16px 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}
.hero-desc {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-stats {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
}
.hero-stat { text-align: center; flex: 1; min-width: 70px; }
.hero-stat .stat-num { font-size: 22px; font-weight: 700; color: var(--gold-light); }
.hero-stat .stat-label { font-size: 11px; opacity: 0.8; }

/* ============================================================
   DIRECT ANSWER BOX
   ============================================================ */
.answer-box {
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 16px;
  margin: 16px;
}
.answer-box-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--green-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.answer-box p { font-size: 14px; color: var(--gray-700); line-height: 1.6; }

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.section { padding: 32px 0; }
.section-header { padding: 0 16px; margin-bottom: 20px; }
.section-title {
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.section-subtitle { font-size: 14px; color: var(--text-muted); }

/* ============================================================
   PACKAGE CARDS
   ============================================================ */
.package-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 0 16px;
}
.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.package-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.package-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.package-card-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.package-card-body { padding: 16px; position: relative; }
.package-card-category {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.package-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.35;
}
.package-card-features {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-700);
}
.feature-icon { font-size: 14px; }
.package-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.price-from { font-size: 11px; color: var(--text-muted); }
.price-amount { font-size: 22px; font-weight: 700; color: var(--green); }
.price-currency { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   CATEGORY GRID (Hub pages)
   ============================================================ */
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 16px;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: var(--shadow);
}
.category-card:hover {
  border-color: var(--green);
  background: #f0faf4;
  transform: translateY(-2px);
  text-decoration: none;
}
.category-icon { font-size: 32px; }
.category-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.3;
}
.category-count { font-size: 11px; color: var(--text-muted); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { padding: 0 16px 32px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-900);
  background: var(--white);
  min-height: 44px;
  gap: 10px;
  user-select: none;
}
.faq-question:hover { background: var(--gray-100); }
.faq-arrow { font-size: 12px; color: var(--green); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 16px 16px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 10px 16px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  font-size: 12px;
  flex-wrap: nowrap;
}
.breadcrumb::-webkit-scrollbar { display: none; }
.breadcrumb a { color: var(--green); white-space: nowrap; }
.breadcrumb-sep { color: var(--gray-500); }
.breadcrumb-current { color: var(--gray-700); white-space: nowrap; }

/* ============================================================
   AUTHOR BOX
   ============================================================ */
.author-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.author-info h3 { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.author-info p { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-top: 3px; }
.author-updated { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */
.content-section { padding: 0 16px; }
.content-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green);
}
.content-section h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-900);
  margin: 20px 0 10px;
}
.content-section p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 14px;
}
.content-section ul {
  list-style: none;
  margin-bottom: 14px;
}
.content-section ul li {
  padding: 6px 0 6px 20px;
  font-size: 14px;
  color: var(--gray-700);
  position: relative;
  line-height: 1.6;
}
.content-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ============================================================
   INFO BOXES
   ============================================================ */
.info-box {
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
}
.info-box.green { background: #e8f5e9; border-left: 4px solid var(--green); }
.info-box.amber { background: #fff8e1; border-left: 4px solid var(--gold); }
.info-box.blue { background: #e3f2fd; border-left: 4px solid #1565c0; }
.info-box-title { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.info-box.green .info-box-title { color: var(--green-dark); }
.info-box.amber .info-box-title { color: #5d4037; }
.info-box.blue .info-box-title { color: #1565c0; }
.info-box p { font-size: 13px; margin-bottom: 0; }

/* ============================================================
   PRICE TABLE
   ============================================================ */
.price-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 16px; }
.price-table th {
  background: var(--green);
  color: var(--white);
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
}
.price-table td { padding: 11px 14px; border-bottom: 1px solid var(--border); }
.price-table tr:nth-child(even) td { background: var(--gray-100); }
.price-table tr:hover td { background: #e8f5e9; }
.price-highlight { font-weight: 700; color: var(--green); font-size: 16px; }

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 0 16px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.testimonial-stars { font-size: 16px; margin-bottom: 10px; }
.testimonial-text {
  font-size: 14px;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 12px;
}
.testimonial-author { font-size: 13px; font-weight: 600; color: var(--gray-900); }
.testimonial-location { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  padding: 32px 16px;
  text-align: center;
  margin: 24px 0;
}
.cta-section h2 { font-size: 22px; margin-bottom: 10px; }
.cta-section p { font-size: 15px; opacity: 0.9; margin-bottom: 20px; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; max-width: 340px; margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 32px 16px 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--gold-light);
}
.footer-col ul { display: flex; flex-direction: column; gap: 6px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}
.footer-col ul li a:hover { color: var(--white); text-decoration: underline; }
.footer-col p { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.footer-bottom a { color: rgba(255,255,255,0.8); }
/* Compliance grid — responsive */
.footer-compliance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .footer-compliance-grid { grid-template-columns: 1fr 1fr; }
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 6px;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-green { color: var(--green); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.hidden { display: none; }

/* Language selector */
.lang-selector {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 12px 16px;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: var(--green);
  color: var(--white);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}
.lang-btn:hover { background: var(--green-dark); text-decoration: none; color: var(--white); }

/* ============================================================
   TABLET / DESKTOP (768px+)
   ============================================================ */
@media (min-width: 768px) {
  body { padding-top: 100px; }
  .hero-actions { flex-direction: row; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { flex-direction: row; }
}

@media (min-width: 1024px) {
  .package-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
