:root {
  --primary: #1e88e5;
  --primary-dark: #0d47a1;
  --accent: #ffb300;
  --text: #1f2933;
  --muted: #6b7280;
  --bg: #f5f7fb;
  --card: #ffffff;
  --shadow: 0 14px 35px rgba(15, 23, 42, 0.16);
  --radius-lg: 18px;
  --transition: 0.25s ease;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

}

.brand, .nav-links a{
  color:#ffffff !important;
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.1rem;
  color: var(--primary-dark);
  transition: opacity var(--transition);
}

.brand:hover {
  opacity: 0.85;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--muted);
  transition: background var(--transition), color var(--transition);
}

.nav-links a:hover {
  background: rgba(30, 136, 229, 0.1);
  color: var(--primary-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #1fa55b, #0a8f45);
  color: #fff;
  box-shadow: 0 10px 18px rgba(22, 163, 74, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(22, 163, 74, 0.45);
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.btn-outline {
  border: 1px solid rgba(30, 136, 229, 0.3);
  color: var(--primary-dark);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(30, 136, 229, 0.08);
} 
.hero .btn-outline {
  color: #ffffff;
  border: 2px solid #ffffff;
}

.hero .btn-outline:hover {
  background: #ffffff;
  color: #000000;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(13, 71, 161, 0.4), rgba(15, 23, 42, 0.8)),
              url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80')
              center/cover no-repeat;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 179, 0, 0.15), transparent 45%),
              radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.2), transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 1.25rem 4rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin: 0 0 1.2rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  padding: 1rem 1.2rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e8f1ff;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.section h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
  text-align: center;
}

.section p.section-lead {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 0.98rem;
}
.about-grid {
  display: flex;                /* side-by-side layout */
  align-items: center;          /* vertical alignment */
  gap: 2rem;                    /* space between text and logo */
  flex-wrap: wrap;              /* responsive wrap on smaller screens */
  background: var(--card);
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

/* Text container inside about-grid */
.about-grid > div:first-child {
  flex: 1;                      /* takes remaining width */
  min-width: 250px;             /* ensures text doesn't shrink too small */
}

/* Logo container */
.about-logo {
  flex: 1;                      /* logo takes remaining space */
  display: flex;
  justify-content: center;      /* center horizontally */
  align-items: center;          /* center vertically */
  min-width: 200px;
  background: none;             /* remove the previous background gradient */
  box-shadow: none;             /* optional: remove inner shadow */
  border-radius: 0;             /* optional */
}

/* Actual logo image */
.about-logo img {
  max-width: 300px;             /* controls size of the logo */
  width: 100%;
  height: auto;
  border-radius: 10px;          /* optional rounded corners */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);  /* optional shadow for depth */
}

.pill {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pill.domestic { background: rgba(46, 213, 115, 0.12); color: #0f5132; }
.pill.international { background: rgba(13, 110, 253, 0.12); color: #0b3c97; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.package-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  transition: transform var(--transition), box-shadow var(--transition), border var(--transition);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(59, 130, 246, 0.45);
}

.package-image {
  height: 150px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: #e3f2fd;
}

.package-image::after {
 content: "";
 position: absolute;
 inset: 0;
 background: linear-gradient(
  to top,
  rgba(0,0,0,0.75),
   rgba(0,0,0,0.25)

 );
 z-index:0;
}

.package-image img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* When a real image exists, we hide the placeholder badge */
.package-image.has-img::after{ content: none; }

.package-label {
  position: relative;
  z-index: 1;
}

.package-label span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.9;
}

.package-label h4 {
  margin: 0.25rem 0 0;
  letter-spacing: -0.02em;
}

.package-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(13, 71, 161, 0.7);
  color: #e3f2fd;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  border: 1px solid rgba(227, 242, 253, 0.8);
  backdrop-filter: blur(8px);
}

.package-body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.package-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1.1rem 1.05rem;
  flex-wrap: wrap;
}

.package-meta {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

form {
  background: var(--card);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.18);
  display: grid;
  gap: 0.85rem;
}

label { font-weight: 600; font-size: 0.93rem; color: var(--text); }

input, textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 1rem;
  transition: border var(--transition), box-shadow var(--transition);
  font-family: inherit;
}

input:focus, textarea:focus {
  outline: none;
  border-color: rgba(59, 130, 246, 0.8);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}

textarea { resize: vertical; min-height: 140px; }

.map-placeholder {
  background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(30, 136, 229, 0.18));
  border: 1px dashed rgba(59, 130, 246, 0.45);
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  font-weight: 600;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  background: #f3f4f6;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  border-radius: var(--radius-lg);
}

footer {
  background: #0f172a;
  color: #e5e7eb;
  padding: 1.6rem 1.25rem;
  text-align: center;
  margin-top: 3rem;
}

footer .socials {
  display: inline-flex;
  gap: 0.65rem;
  margin-top: 0.4rem;
}

footer .socials a {
  color: #cbd5e1;
  font-weight: 600;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  transition: background var(--transition), color var(--transition);
}

footer .socials a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

@media (max-width: 720px) {
  .nav { padding: 0.9rem 1rem; }
  .hero { min-height: 70vh; }
  .packages-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 720px) {
  .hero {
   background-color:#1e99e5
}
  /* FIX HEADER OVERLAP */
  header {
    position: relative;
  }

  /* NAV LINKS STACK */
  .nav {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
  }

  /* HERO GRID FIX */
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 120px;
    gap: 2rem;
    text-align: center;
  }

  .hero p {
    max-width: 100%;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta a {
    width: 100%;
  }

  /* ABOUT */
  .about-grid {
    flex-direction: column;
    text-align: center;
  }

  /* PACKAGES */
  .packages-grid {
    grid-template-columns: 1fr;
  }

  /* CONTACT */
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
header {
  background: #e3f2fd; /* change this color if you want */
}

header span {
  color: #0d47a1; /* logo text */
  font-weight: 700;
}

.nav-links a {
  color: #0d47a1 !important;
  font-weight: 600;
}
/* ==========================
   Customer Photos & Reviews
   ========================== */
#reviews {
  padding: 40px 20px;
  background-color: #f5f7fb;
  text-align: center;
}

#reviews h2 {
  margin-bottom: 0.5rem;
  font-size: 28px;
  color: var(--text);
}

#reviews .section-lead {
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--muted);
}

#reviews .review-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

#reviews .review-item {
  width: 120px;         /* size of each photo block */
  text-align: center;
}

#reviews .review-item img {
  width: 120px;
  height: 120px;        /* uniform square size */
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 5px;
}

#reviews .review-item p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #reviews .review-item {
    width: 100px;
  }
  #reviews .review-item img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  #reviews .review-item {
    width: 80px;
  }
  #reviews .review-item img {
    width: 80px;
    height: 80px;
  }
  #reviews .review-item p {
    font-size: 11px;
  }
}
/* ⭐ Review Stars */
.review-stars {
  color: #fbbf24;           /* gold stars */
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 4px;
  line-height: 1;
}

/* PILGRIMAGE / PACKAGE GRID */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  align-items: stretch;
}

/* PACKAGE CARD */
.package-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-4px);
}

/* IMAGE FIX (MOST IMPORTANT) */
.package-card img {
  width: 100%;
  height: 180px;        /* SAME HEIGHT FOR ALL IMAGES */
  object-fit: cover;   /* CROPS NICELY */
  display: block;
}

/* DURATION BADGE */
.duration {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  z-index: 1;
}

/* CONTENT */
.package-card h3 {
  margin: 14px 16px 6px;
  font-size: 1.05rem;
}

.package-card p {
  margin: 0 16px 12px;
  font-size: 0.9rem;
  color: #555;
  flex-grow: 1;
}

/* FOOTER */
.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px 16px;
  margin-top:
}
/* ===== PACKAGE GRID FIX (Domestic / International / Pilgrimage) ===== */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* Card */
.package-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

/* Image */
.package-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Duration badge */
.package-card .duration {
  position: absolute;
  margin: 12px;
  padding: 6px 12px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 0.8rem;
  border-radius: 20px;
}

/* Title */
.package-card h3 {
  margin: 0.8rem 1rem 0.3rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Description */
.package-card p {
  margin: 0 1rem 1rem;
  font-size: 0.9rem;
  color: #555;
  flex-grow: 1;
}

/* Footer */
.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-top: 1px solid #eee;
}

/* Tag */
.package-footer .tag {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: #f1f5f9;
  border-radius: 20px;
  color: #333;
}

/* WhatsApp button already exists – just spacing */
.package-footer .btn {
  padding: 6px 14px;
  font-size: 0.85rem;
}

/* Mobile fix */
@media (max-width: 600px) {
  .package-card img {
    height: 160px;
  }
}
html {
  scroll-behavior: smooth;
}