/* ============================================================
   UMRETUR — Modern, clean design
   Open Sans throughout + Material Symbols
   ============================================================ */

:root {
  --primary: #0d3b34;
  --primary-dark: #082823;
  --primary-light: #145045;
  --accent: #c9a55c;
  --accent-light: #e8d4a3;
  --accent-dark: #a07e3a;

  --bg: #ffffff;
  --bg-soft: #f8f6f1;
  --bg-section: #faf8f3;
  --border: #ebe6d9;
  --border-light: #f0ece1;

  --text: #1a1a1a;
  --text-soft: #4a4a4a;
  --text-muted: #8a8a8a;
  --text-light: #b8b8b8;

  --white: #ffffff;

  --font: 'Open Sans', system-ui, -apple-system, sans-serif;

  --container: 1240px;
  --header-h: 86px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(13, 59, 52, 0.04), 0 1px 2px rgba(13, 59, 52, 0.06);
  --shadow: 0 4px 16px rgba(13, 59, 52, 0.06), 0 1px 3px rgba(13, 59, 52, 0.04);
  --shadow-md: 0 8px 32px rgba(13, 59, 52, 0.08), 0 2px 8px rgba(13, 59, 52, 0.04);
  --shadow-lg: 0 24px 56px rgba(13, 59, 52, 0.12), 0 8px 24px rgba(13, 59, 52, 0.06);

  --t: 280ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 90px;
}
@media (max-width: 768px) {
  body { padding-bottom: 80px; }
}
@media (max-width: 480px) {
  body { padding-bottom: 70px; }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: -0.015em;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  font-size: 20px;
  line-height: 1;
  vertical-align: middle;
}

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

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  border-radius: 999px;
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn .material-symbols-outlined { font-size: 18px; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--accent); color: var(--primary); }
.btn-accent:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201, 165, 92, 0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  padding: 0;
  transition: gap var(--t);
}
.btn-link:hover { gap: 12px; color: var(--accent-dark); }

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(235, 230, 217, 0.6);
  z-index: 100;
  transition: all var(--t);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}
.header.transparent {
  background: transparent;
  border-bottom-color: transparent;
}
.header.transparent:not(.scrolled) .logo-text,
.header.transparent:not(.scrolled) .nav-list a,
.header.transparent:not(.scrolled) .header-socials a {
  color: var(--white);
}
.header.transparent:not(.scrolled) .menu-toggle .material-symbols-outlined {
  color: var(--white);
}
.header.transparent:not(.scrolled) .drop-arrow {
  color: rgba(255,255,255,0.7);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}
.logo { display: flex; align-items: center; }
.logo-text {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.08em;
  transition: color var(--t);
}
.nav-desktop {
  display: flex;
  flex: 1;
  justify-content: center;
}
.nav-list {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-list > li { position: relative; }
.nav-list a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--t);
  border-radius: 999px;
  position: relative;
}
.nav-list a:hover { color: var(--primary); }
.nav-list a.active { color: var(--primary); font-weight: 600; }
.nav-list a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.drop-arrow {
  font-size: 16px !important;
  color: var(--text-muted);
  transition: transform var(--t);
}
.has-drop:hover .drop-arrow { transform: rotate(180deg); }

.drop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  min-width: 240px;
  border: 1px solid var(--border-light);
  opacity: 0;
  visibility: hidden;
  transition: all var(--t);
  z-index: 200;
}
.has-drop:hover .drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.drop a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  border-radius: 8px;
  white-space: nowrap;
  transition: all var(--t);
  font-weight: 500;
}
.drop a:hover {
  background: var(--bg-soft);
  color: var(--primary);
  padding-left: 18px;
}
.drop a::after { display: none; }
.drop-wide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  min-width: 640px;
  padding: 24px;
}
.drop-col { display: flex; flex-direction: column; }
.drop-title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-socials {
  display: flex;
  gap: 4px;
}
.header-socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  border-radius: 50%;
  transition: all var(--t);
}
.header-socials a:hover {
  color: var(--primary);
  background: var(--bg-soft);
}
.header-cta { padding: 12px 22px; font-size: 14px; }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  border-radius: 8px;
  transition: background var(--t);
}
.menu-toggle:hover { background: var(--bg-soft); }
.menu-toggle .material-symbols-outlined { font-size: 26px; }

@media (max-width: 1100px) {
  .nav-desktop, .header-socials { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* MOBILE NAV */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 59, 52, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 360px;
  max-width: 88vw;
  background: var(--white);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform var(--t-slow);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border-light);
}
.menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text);
  transition: background var(--t);
}
.menu-close:hover { background: var(--bg-soft); }
.mobile-nav-list {
  flex: 1;
  padding: 16px 24px;
}
.mobile-nav-list > li { border-bottom: 1px solid var(--border-light); }
.mobile-nav-list > li > a,
.mobile-nav-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}
.mobile-nav-list summary::-webkit-details-marker { display: none; }
.mobile-nav-list summary::after {
  content: 'expand_more';
  font-family: 'Material Symbols Outlined';
  font-size: 22px;
  color: var(--text-muted);
  transition: transform var(--t);
}
.mobile-nav-list details[open] summary::after { transform: rotate(180deg); }
.mobile-nav-list details a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-soft);
  border-radius: 8px;
  margin-bottom: 4px;
}
.mobile-nav-list details a:hover {
  background: var(--bg-soft);
  color: var(--primary);
}
.mobile-nav-list details { padding-bottom: 12px; }
.mobile-nav-footer {
  padding: 24px;
  border-top: 1px solid var(--border-light);
}
.mobile-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.mobile-socials a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--bg-soft);
  border-radius: 50%;
  transition: all var(--t);
}
.mobile-socials a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
  color: var(--white);
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/kaaba-night.jpg');
  background-size: cover;
  background-position: center;
  z-index: -2;
  animation: heroZoom 30s ease-out infinite alternate;
}
@keyframes heroZoom {
  to { transform: scale(1.12); }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(8, 40, 35, 0.5) 0%,
    rgba(8, 40, 35, 0.55) 50%,
    rgba(8, 40, 35, 0.85) 100%);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  width: 100%;
}
.hero-content { max-width: 720px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-eyebrow .material-symbols-outlined { font-size: 16px; color: var(--accent); }
.hero h1 {
  font-size: clamp(40px, 6.5vw, 80px);
  line-height: 1.05;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s forwards;
}
.hero h1 .accent { color: var(--accent); font-style: italic; font-weight: 800; }
.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin-bottom: 36px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s forwards;
}
.hero-features {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
  flex-wrap: wrap;
}
.hero-feat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-feat .material-symbols-outlined {
  font-size: 22px;
  color: var(--accent);
}
.hero-feat-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.hero-feat strong {
  font-size: 22px;
  font-family: var(--font);
  color: var(--white);
  font-weight: 700;
}
.hero-feat small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.hero-card-head .material-symbols-outlined {
  font-size: 28px;
  color: var(--accent);
}
.hero-card-head strong {
  font-family: var(--font);
  font-size: 20px;
  color: var(--white);
  font-weight: 700;
}
.hero-card-list { display: flex; flex-direction: column; gap: 14px; }
.hero-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--t);
}
.hero-card-row:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(4px);
}
.hero-card-row .label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.hero-card-row .material-symbols-outlined {
  font-size: 18px;
  color: var(--accent);
}
.hero-card-row .price {
  font-family: var(--font);
  font-size: 18px;
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 960px) {
  .hero { min-height: 92vh; }
  .hero-inner { grid-template-columns: 1fr; padding: 60px 0 100px; }
  .hero-card { order: -1; padding: 24px; }
  .hero-features { gap: 24px; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* SECTION */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head.row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  gap: 32px;
  flex-wrap: wrap;
}
.section-head.row > div { flex: 1; min-width: 280px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.section-title .accent { color: var(--accent-dark); font-style: italic; font-weight: 800; }
.section-desc {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 640px;
  margin: 18px auto 0;
}
.section-head.row .section-desc { margin: 14px 0 0; }

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section-head { margin-bottom: 44px; }
}

/* DUAL CARDS */
.dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.dual-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  color: var(--white);
  isolation: isolate;
  transition: transform var(--t);
}
.dual-card:hover { transform: translateY(-6px); }
.dual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1s var(--t-slow);
}
.dual-card:hover img { transform: scale(1.08); }
.dual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(8,40,35,0.3) 40%, rgba(8,40,35,0.92) 100%);
  z-index: -1;
}
.dual-card-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(201, 165, 92, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 165, 92, 0.4);
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
}
.dual-card h2 {
  color: var(--white);
  font-size: clamp(36px, 4.2vw, 56px);
  margin-bottom: 14px;
  font-weight: 700;
}
.dual-card p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  max-width: 420px;
  line-height: 1.6;
  font-weight: 300;
}
.dual-card .btn { align-self: flex-start; }
@media (max-width: 800px) {
  .dual { grid-template-columns: 1fr; }
  .dual-card { padding: 28px; aspect-ratio: 5/4; }
}

/* TOUR CARDS */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tour-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-light);
}
.tour-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.tour-card:hover .tour-card-image img { transform: scale(1.06); }
.tour-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  color: var(--primary);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.tour-tag.accent { background: var(--accent); color: var(--primary); }
.tour-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tour-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}
.tour-price-old {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 500;
}
.tour-price {
  font-size: 26px;
  color: var(--accent-dark);
  font-weight: 800;
  line-height: 1;
}
.tour-card h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.tour-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.tour-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}
.tour-feature .material-symbols-outlined {
  font-size: 20px;
  color: var(--accent-dark);
  flex-shrink: 0;
  margin-top: 1px;
}
.tour-card .btn { width: 100%; justify-content: center; }

@media (max-width: 960px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .tours-grid { grid-template-columns: 1fr; }
}

/* WHY CHOOSE */
.why-section {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 165, 92, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.why-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 59, 52, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.why-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(201, 165, 92, 0.12) 0%, transparent 70%);
}
.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}
.why-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px dashed rgba(201, 165, 92, 0.3);
  border-radius: 22px;
}
.why-icon .material-symbols-outlined { font-size: 30px; }
.why-card h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}
.why-card p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 18px; }
  .why-card { padding: 32px 24px; }
}

/* ABOUT SPLIT */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-image-tag .material-symbols-outlined {
  font-size: 36px;
  color: var(--accent-dark);
}
.about-image-tag .num {
  font-size: 26px;
  color: var(--primary);
  line-height: 1;
  font-weight: 800;
}
.about-image-tag small {
  display: block;
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  margin-top: 4px;
  font-weight: 600;
}
.about-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
  color: var(--primary);
  font-weight: 700;
}
.about-content h2 .accent { color: var(--accent-dark); font-style: italic; font-weight: 800; }
.about-content p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}
.about-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
.about-check .material-symbols-outlined {
  color: var(--accent-dark);
  font-size: 22px;
  background: var(--accent-light);
  border-radius: 50%;
  padding: 4px;
}

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-image { aspect-ratio: 4/3; max-width: 500px; margin: 0 auto; }
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.blog-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--t);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}
.blog-image {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.blog-card:hover .blog-image img { transform: scale(1.06); }
.blog-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.blog-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  padding: 4px 10px;
  background: var(--accent-light);
  border-radius: 999px;
}
.blog-date {
  font-size: 13px;
  color: var(--text-muted);
}
.blog-card h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.3;
  font-weight: 700;
}
.blog-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .blog-card { grid-template-columns: 1fr; }
  .blog-image { aspect-ratio: 16/10; }
}

/* LOCATION */
.location-section { position: relative; }
.location-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--white);
  box-shadow: var(--shadow);
}
.location-info {
  padding: 48px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info .eyebrow { color: var(--accent); }
.location-info h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 700;
}
.location-info p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 28px;
}
.location-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.location-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--t);
}
.location-contact:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(4px);
}
.location-contact .material-symbols-outlined {
  color: var(--accent);
  font-size: 22px;
}
.location-contact span:last-child {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}
.location-map {
  position: relative;
  min-height: 460px;
}
.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-info { padding: 32px 24px; }
  .location-map { min-height: 360px; }
}

/* CTA STRIP */
.cta-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/kaaba-tavaf.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  mix-blend-mode: overlay;
}
.cta-strip::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 165, 92, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-strip-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}
.cta-strip h2 {
  color: var(--white);
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 16px;
  font-weight: 700;
}
.cta-strip h2 .accent { color: var(--accent); font-style: italic; font-weight: 800; }
.cta-strip p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}
.cta-strip-actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* PAGE HEADER */
.page-header {
  position: relative;
  padding: calc(var(--header-h) + 60px) 0 70px;
  background: var(--primary);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/kaaba-prayer.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: -2;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,40,35,0.7) 0%, rgba(8,40,35,0.92) 100%);
  z-index: -1;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--accent-light); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .material-symbols-outlined { font-size: 14px; }
.page-header h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.page-header h1 .accent { color: var(--accent); font-style: italic; font-weight: 800; }
.page-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  line-height: 1.6;
  font-weight: 300;
}

/* TOUR DETAIL */
.tour-detail {
  padding: 80px 0;
  background: var(--bg);
}
.tour-detail-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: flex-start;
}
.tour-detail-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 40px;
  aspect-ratio: 16/9;
}
.tour-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.tour-detail-main h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 700;
}
.tour-detail-main .lead {
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  font-weight: 300;
}
.tour-block { margin-bottom: 40px; }
.tour-block h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.tour-block h3 .material-symbols-outlined {
  font-size: 24px;
  color: var(--accent-dark);
  background: var(--accent-light);
  border-radius: 8px;
  padding: 6px;
}
.tour-block p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 12px;
}
.tour-includes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}
.tour-includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  transition: all var(--t);
}
.tour-includes li:hover {
  background: var(--white);
  border-color: var(--accent-light);
  transform: translateX(4px);
}
.tour-includes li::before {
  content: 'check_circle';
  font-family: 'Material Symbols Outlined';
  color: var(--accent-dark);
  font-size: 22px;
  flex-shrink: 0;
}

.tour-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.tour-sidebar-head {
  background: var(--primary);
  color: var(--white);
  padding: 32px;
  text-align: center;
}
.tour-sidebar-head .price-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 700;
}
.tour-sidebar-head .price {
  font-size: 44px;
  color: var(--accent);
  line-height: 1;
  font-weight: 800;
}
.tour-sidebar-head .price-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}
.tour-sidebar-body { padding: 24px; }
.sidebar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}
.sidebar-row:last-of-type { border-bottom: none; }
.sidebar-row .label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-weight: 500;
}
.sidebar-row .material-symbols-outlined {
  font-size: 20px;
  color: var(--accent-dark);
}
.sidebar-row .value { font-weight: 700; color: var(--primary); }
.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.sidebar-actions .btn { width: 100%; justify-content: center; }

@media (max-width: 1100px) {
  .tour-detail-grid { grid-template-columns: 1fr; }
  .tour-sidebar { position: static; }
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: flex-start;
}
.contact-info-card {
  background: var(--primary);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 165, 92, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.contact-info-card .eyebrow { color: var(--accent); }
.contact-info-card h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 16px;
  position: relative;
  font-weight: 700;
}
.contact-info-card > p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
  position: relative;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201, 165, 92, 0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
  font-weight: 700;
}
.contact-item-body strong, .contact-item-body a {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-size: 26px;
  margin-bottom: 8px;
  font-weight: 700;
}
.contact-form .form-intro {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  border-radius: 12px;
  transition: all var(--t);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 165, 92, 0.15);
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-info-card, .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* FOOTER */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 165, 92, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  position: relative;
  padding-bottom: 56px;
}
.footer-brand .logo-text {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 18px;
  display: block;
  font-weight: 800;
}
.footer-tag {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  max-width: 320px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--accent);
  border-radius: 50%;
  transition: all var(--t);
}
.footer-socials a:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-2px);
  border-color: var(--accent);
}
.footer-col h4 {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: all var(--t);
}
.footer-col a:hover {
  color: var(--accent);
  padding-left: 6px;
}
.foot-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}
.foot-line .material-symbols-outlined {
  font-size: 18px;
  color: var(--accent);
  margin-top: 1px;
}
.foot-line a {
  display: inline;
  padding: 0;
  color: rgba(255,255,255,0.75);
}
.foot-line a:hover { padding: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  position: relative;
}
.footer-bottom-links {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-bottom-links a { color: rgba(255,255,255,0.6); }
.footer-bottom-links a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* STICKY CONTACT BAR */
.sticky-contact {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 510px;
  width: 90%;
  margin-bottom: 15px;
  border: 4px solid #fff;
  display: flex;
  z-index: 80;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  overflow: hidden;
  transition: opacity var(--t), visibility var(--t);
}
body.menu-open .sticky-contact {
  opacity: 0;
  visibility: hidden;
}
.contact-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}
.btn-call {
  background: #f55b14;
}
.btn-call:hover {
  background: #020e28;
  color: white;
}
.btn-whatsapp {
  background: #25d366;
}
.btn-whatsapp:hover {
  background: #073819;
  color: white;
}
.btn-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
@media (max-width: 768px) {
  .contact-btn { font-size: 14px; padding: 16px 15px; gap: 8px; }
  .btn-icon { width: 20px; height: 20px; }
}
@media (max-width: 480px) {
  .contact-btn { font-size: 12px; padding: 14px 10px; gap: 6px; }
  .btn-icon { width: 18px; height: 18px; }
}

/* FADE IN */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

::selection { background: var(--accent); color: var(--primary); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--accent-dark); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
