* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0f3b2e;
  --primary-dark: #0a2b21;
  --gold: #c9a646;
  --gold-dark: #a8842f;
  --gold-soft: #ead9a6;
  --white: #ffffff;
  --soft: #f8f5ee;
  --soft-2: #fcfaf6;
  --text: #1d1d1d;
  --heading: #161616;
  --muted: #666666;
  --muted-2: #8a8a8a;
  --border: rgba(0, 0, 0, 0.08);
  --border-soft: rgba(0, 0, 0, 0.05);
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.05);
  --radius: 18px;
  --radius-lg: 24px;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

ul {
  padding-left: 18px;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: auto;
}

.section {
  padding: 90px 0;
}

.alt {
  background: var(--soft);
}

.tag {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 12px;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 3.3rem;
  margin-bottom: 18px;
  letter-spacing: -1px;
  color: var(--white);
}

h2 {
  font-size: 2.3rem;
  color: var(--heading);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

h3 {
  color: var(--heading);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

h4 {
  color: var(--heading);
}

p {
  color: var(--muted);
}

.lead {
  font-size: 1.08rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 0.96rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(201, 166, 70, 0.22);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--heading);
}

.btn-dark-outline {
  background: transparent;
  color: var(--heading);
  border: 1px solid var(--heading);
}

.btn-dark-outline:hover {
  background: var(--heading);
  color: var(--white);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.navbar {
  min-height: 86px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--heading);
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-text h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--heading);
}

.brand-text p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted-2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: var(--heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  color: var(--heading);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.menu-btn:hover {
  background: rgba(15, 59, 46, 0.06);
}

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(rgba(8, 22, 18, 0.64), rgba(8, 22, 18, 0.72)),
    url("images/hero.jpeg") center/cover no-repeat;
}

.hero-inner {
  max-width: 860px;
}

.hero p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 730px;
  margin-bottom: 22px;
}

.badge {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--white);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* UPDATED: inner page hero images now fit like home page */
.page-hero {
  padding: 120px 0 80px;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(rgba(8, 22, 18, 0.72), rgba(8, 22, 18, 0.72)),
    url("images/about.jpeg") center/cover no-repeat;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 760px;
}

.page-hero.hajj-hero {
  background:
    linear-gradient(rgba(8, 22, 18, 0.72), rgba(8, 22, 18, 0.72)),
    url("images/hajj.jpeg") center/cover no-repeat;
}

.page-hero.umrah-hero {
  background:
    linear-gradient(rgba(8, 22, 18, 0.72), rgba(8, 22, 18, 0.72)),
    url("images/umrah.jpeg") center/cover no-repeat;
}

.page-hero.guide-hero {
  background:
    linear-gradient(rgba(8, 22, 18, 0.72), rgba(8, 22, 18, 0.72)),
    url("images/guide.jpeg") center/cover no-repeat;
}

.page-hero.gallery-hero {
  background:
    linear-gradient(rgba(8, 22, 18, 0.72), rgba(8, 22, 18, 0.72)),
    url("images/gallery.jpeg") center/cover no-repeat;
}

.page-hero.testimonials-hero {
  background:
    linear-gradient(rgba(8, 22, 18, 0.72), rgba(8, 22, 18, 0.72)),
    url("images/testimonials.jpeg") center/cover no-repeat;
}

.page-hero.contact-hero {
  background:
    linear-gradient(rgba(8, 22, 18, 0.72), rgba(8, 22, 18, 0.72)),
    url("images/contact.jpeg") center/cover no-repeat;
}

.verse {
  max-width: 760px;
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.verse.white-verse {
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.verse p {
  color: var(--white);
}

.verse.white-verse p {
  color: var(--text);
}

.verse span {
  display: block;
  margin-top: 10px;
  color: var(--gold-soft);
  font-weight: 700;
}

.verse.white-verse span {
  color: var(--gold-dark);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.intro-grid {
  align-items: center;
}

.card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card {
  text-align: center;
}

.feature-card .icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(15, 59, 46, 0.18);
}

.package-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.package-card p {
  margin-bottom: 8px;
}

.package-card ul li {
  margin-bottom: 8px;
  color: var(--muted);
}

.package-btn {
  margin-top: 18px;
}

.price {
  color: var(--gold);
  font-weight: 700;
  margin: 10px 0 14px;
}

.featured {
  border: 1px solid rgba(201, 166, 70, 0.4);
  box-shadow: 0 18px 35px rgba(201, 166, 70, 0.14);
  transform: translateY(-4px);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.timeline-item {
  text-align: center;
  background: var(--white);
  padding: 28px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}

.timeline-step {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(201, 166, 70, 0.22);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.compare-table th,
.compare-table td {
  border: 1px solid var(--border);
  padding: 14px;
  text-align: left;
}

.compare-table th {
  background: var(--primary);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* UPDATED: gallery behaves like before */
.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

.testimonial {
  text-align: center;
}

.quote-mark {
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.enquiry-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.enquiry-box {
  max-width: 820px;
  text-align: center;
}

.enquiry-box p {
  max-width: 650px;
  margin: 0 auto 26px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  border: none;
  background: var(--white);
  color: var(--heading);
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding-bottom: 18px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  background: #fff;
  color: var(--text);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 166, 70, 0.08);
}

.form button {
  width: 100%;
}

.notice,
#formNotice {
  margin-top: 12px;
  font-weight: 700;
  color: var(--primary);
}

.contact-box a,
.contact-box p {
  display: block;
  margin-bottom: 10px;
}

.map-embed {
  margin-top: 20px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-embed iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 30px;
}

.footer img {
  width: 72px;
  margin-bottom: 12px;
}

.footer h3,
.footer h4 {
  color: var(--white);
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 10px;
  display: block;
}

.footer a:hover {
  color: var(--gold-soft);
}

.copy {
  text-align: center;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2000;
  background: #25d366;
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 20px;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 14px;
}

.show-flex {
  display: flex !important;
}

/* PREMIUM FOOTER V2 */
.premium-footer {
  background: linear-gradient(180deg, var(--primary-dark), #071a14);
  padding-top: 28px;
}

.footer-topline {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 166, 70, 0.15) 20%,
    rgba(201, 166, 70, 0.55) 50%,
    rgba(201, 166, 70, 0.15) 80%,
    transparent 100%
  );
  margin-bottom: 34px;
}

.footer-grid-premium {
  grid-template-columns: 1.35fr 0.95fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.footer-brand img {
  width: 78px;
  margin-bottom: 14px;
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4 {
  color: var(--white);
}

.footer-brand p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a {
  position: relative;
  width: fit-content;
  padding: 4px 0;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold-soft);
  transition: 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.social-links-premium {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.social-links-premium a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s ease;
}

.social-links-premium a i {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-soft);
  font-size: 15px;
  transition: 0.3s ease;
}

.social-links-premium a span {
  font-weight: 600;
}

.social-links-premium a:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.social-links-premium a:hover i {
  background: var(--gold);
  color: var(--white);
}

.premium-footer .copy {
  margin-top: 26px;
}

.social-btn {
  gap: 10px;
}

.social-btn i {
  font-size: 16px;
}

.contact-icon-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text);
}

.contact-icon-link i {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(15, 59, 46, 0.08);
  color: var(--primary);
  font-size: 15px;
  flex-shrink: 0;
  transition: 0.3s ease;
}

.contact-icon-link:hover {
  color: var(--primary);
}

.contact-icon-link:hover i {
  background: var(--gold);
  color: var(--white);
}

.video-intro {
  max-width: 700px;
  margin-bottom: 24px;
}

.video-box {
  max-width: 900px;
  margin: auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: #000;
}

.video-box video {
  width: 100%;
  display: block;
  background: #000;
}

@media (max-width: 992px) {
  .grid-4,
  .timeline,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid-premium {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .gallery-grid img {
    height: 300px;
  }

  h1 {
    font-size: 2.7rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 82px;
    left: 5%;
    right: 5%;
    background: rgba(255, 255, 255, 0.98);
    padding: 14px;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    gap: 4px;
    backdrop-filter: blur(10px);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 15px 14px;
    border-radius: 14px;
    color: var(--heading);
    font-weight: 700;
    background: transparent;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(201, 166, 70, 0.12);
    color: var(--gold-dark);
  }

  .nav-links a:last-child {
    margin-bottom: 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .timeline,
  .gallery-grid,
  .footer-grid,
  .footer-grid-premium {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .page-hero {
    min-height: 60vh;
    padding: 100px 0 60px;
  }

  .gallery-grid img {
    height: 260px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }
}
/* Premium Contact Card Improvement */

.contact-box .card {
  transition: 0.3s ease;
}

.contact-box .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.10);
}

.contact-icon-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-icon-link i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,59,46,0.08);
  color: #0f3b2e;
  transition: 0.3s ease;
}

.contact-icon-link:hover i {
  background: #c9a646;
  color: white;
}