*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #c0392b;
  --red-dk: #96281b;
  --gold:   #d4a017;
  --dark:   #1a1a1a;
  --dark2:  #2c2c2c;
  --light:  #f9f5f0;
  --white:  #ffffff;
  --gray:   #6b7280;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 70px;
  background: rgba(26,26,26,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.4); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo .logo-icon {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
}
.nav-logo span em {
  color: var(--gold);
  font-style: normal;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .4px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 6px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--red-dk) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

/* ── HERO ── */
#home {
  min-height: 100vh;
  background:
    linear-gradient(rgba(20,10,10,.65), rgba(20,10,10,.65)),
    url('images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 6% 80px;
}
.hero-content { max-width: 680px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,.15);
  border: 1px solid rgba(212,160,23,.4);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
h1 span { color: var(--gold); }
.hero-sub {
  color: rgba(255,255,255,.78);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--red-dk); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.45);
  transition: border-color .2s, transform .15s;
}
.btn-outline:hover { border-color: var(--white); transform: translateY(-1px); }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}
.stat .num span { color: var(--gold); }
.stat .label { color: rgba(255,255,255,.6); font-size: .82rem; text-transform: uppercase; letter-spacing: .6px; }

/* ── SECTION SHARED ── */
section { padding: 90px 6%; }
.section-tag {
  display: inline-block;
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 16px;
}
.sub-text { color: var(--gray); font-size: 1rem; max-width: 580px; }

/* ── ABOUT ── */
#about { background: var(--light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}
.about-badge-img {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--white);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  text-align: center;
}
.about-badge-img .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
}
.about-badge-img .lbl { font-size: .72rem; text-transform: uppercase; color: var(--gray); letter-spacing: .5px; }

.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--gray); margin-bottom: 16px; }
.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feat-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(192,57,43,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.feat-text strong { display: block; font-size: .95rem; margin-bottom: 2px; }
.feat-text span { font-size: .85rem; color: var(--gray); }

/* ── PRODUCTS ── */
#products { background: var(--white); }
.products-header { max-width: 600px; margin-bottom: 48px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,.14); }
.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.product-body {
  padding: 24px;
  background: var(--white);
}
.product-tag {
  display: inline-block;
  background: rgba(192,57,43,.1);
  color: var(--red);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.product-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.product-body p { color: var(--gray); font-size: .9rem; margin-bottom: 18px; }
.product-features { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.product-features li {
  font-size: .85rem;
  color: var(--dark2);
  display: flex; align-items: center; gap: 8px;
}
.product-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  font-size: .9rem;
}

/* ── HALAL STRIP ── */
.halal-strip {
  background: var(--dark);
  padding: 40px 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.halal-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.halal-item .icon { font-size: 2rem; }
.halal-item strong { display: block; font-size: 1rem; }
.halal-item span { font-size: .82rem; color: rgba(255,255,255,.55); }

/* ── DESTINATIONS ── */
#destinations { background: var(--light); }
.dest-header { max-width: 600px; margin-bottom: 48px; }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dest-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.dest-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.dest-flag { font-size: 2.4rem; }
.dest-info strong { font-size: 1rem; display: block; }
.dest-info span { font-size: .82rem; color: var(--gray); }

/* ── WHY CHOOSE US ── */
#why { background: var(--red); padding: 90px 6%; }
#why .section-tag { color: var(--gold); }
#why h2 { color: var(--white); }
#why .sub-text { color: rgba(255,255,255,.7); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: background .2s;
}
.why-card:hover { background: rgba(255,255,255,.14); }
.why-icon { font-size: 2.4rem; margin-bottom: 16px; }
.why-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 8px; font-weight: 600; }
.why-card p { color: rgba(255,255,255,.65); font-size: .85rem; }

/* ── CONTACT ── */
#contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 48px;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.contact-info p { color: var(--gray); margin-bottom: 28px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.c-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(192,57,43,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.c-detail strong { display: block; font-size: .88rem; color: var(--gray); margin-bottom: 2px; }
.c-detail span { font-size: .95rem; font-weight: 500; }
.c-detail a { color: var(--dark); text-decoration: none; }
.c-detail a:hover { color: var(--red); }

.contact-form {
  background: var(--light);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--dark2); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background .2s;
  margin-top: 4px;
}
.form-submit:hover { background: var(--red-dk); }
.form-note { font-size: .78rem; color: var(--gray); text-align: center; margin-top: 10px; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 56px 6% 28px;
  color: rgba(255,255,255,.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer-brand p { font-size: .88rem; margin-top: 14px; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: .95rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
}

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  z-index: 200;
  transition: transform .2s;
}
.whatsapp-fab:hover { transform: scale(1.1); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: white; }

.toast {
  position: fixed;
  bottom: 100px; right: 28px;
  background: var(--dark);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: .88rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  z-index: 300;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { order: -1; }
  .products-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  nav { padding: 0 5%; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--dark); padding: 20px 5%; gap: 0; border-top: 1px solid rgba(255,255,255,.08); }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,.05); }
  .nav-links a { display: block; padding: 12px 0; font-size: 1rem; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; }
  .dest-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .halal-strip { gap: 28px; }
}
