:root {
  --primary: #1F2B7B;
  --primary-2: #0B174A;
  --gold: #D28A2E;
  --gold-2: #F0B65B;
  --bg: #F5F6FA;
  --surface: #FFFFFF;
  --text: #12172D;
  --muted: #667085;
  --border: rgba(31, 43, 123, .14);
  --shadow: 0 24px 70px rgba(11, 23, 74, .12);
  --soft-shadow: 0 14px 35px rgba(11, 23, 74, .08);
  --radius: 28px;
  --container: 1180px;
}

[data-theme="dark"] {
  --bg: #070C22;
  --surface: #0E1638;
  --text: #F7F8FC;
  --muted: #B9C0D5;
  --border: rgba(255, 255, 255, .12);
  --shadow: 0 24px 70px rgba(0, 0, 0, .35);
  --soft-shadow: 0 14px 35px rgba(0, 0, 0, .24);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Cairo", "Tajawal", "DIN Next Arabic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(210, 138, 46, .12), transparent 34%), radial-gradient(circle at top right, rgba(31, 43, 123, .14), transparent 30%), var(--bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }

.top-strip { background: linear-gradient(90deg, var(--primary-2), var(--primary)); color: #fff; font-size: 14px; }
.top-strip-inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.top-info { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.top-info span { display: inline-flex; align-items: center; gap: 7px; opacity: .94; }

.header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(18px); background: color-mix(in srgb, var(--surface) 88%, transparent); border-bottom: 1px solid var(--border); }
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: fit-content; }
.logo-img { width: 64px; height: 54px; object-fit: contain; }
.brand-text strong { display: block; font-size: 22px; color: var(--primary); line-height: 1.2; letter-spacing: -.5px; }
[data-theme="dark"] .brand-text strong { color: #fff; }
.brand-text span { display: block; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .2px; }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a { display: inline-flex; align-items: center; min-height: 42px; padding: 8px 13px; border-radius: 999px; color: var(--muted); font-weight: 800; transition: .25s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: color-mix(in srgb, var(--primary) 10%, transparent); }
[data-theme="dark"] .nav-links a:hover, [data-theme="dark"] .nav-links a.active { color: #fff; background: rgba(255,255,255,.08); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn, .menu-btn { width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); color: var(--text); cursor: pointer; display: grid; place-items: center; box-shadow: var(--soft-shadow); transition: .25s ease; }
.icon-btn:hover, .menu-btn:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--gold) 45%, var(--border)); }
.menu-btn { display: none; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 11px 22px; border-radius: 999px; border: 0; cursor: pointer; font-weight: 900; transition: .25s ease; white-space: nowrap; }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-2)); box-shadow: 0 18px 35px rgba(31,43,123,.25); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 50px rgba(31,43,123,.32); }
.btn-gold { color: #1E1A12; background: linear-gradient(135deg, var(--gold-2), var(--gold)); box-shadow: 0 18px 35px rgba(210,138,46,.25); }
.btn-ghost { color: var(--primary); background: color-mix(in srgb, var(--primary) 8%, transparent); border: 1px solid var(--border); }
[data-theme="dark"] .btn-ghost { color: #fff; background: rgba(255,255,255,.07); }

.hero { position: relative; padding: 90px 0 70px; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(90deg, color-mix(in srgb, var(--border) 45%, transparent) 1px, transparent 1px), linear-gradient(color-mix(in srgb, var(--border) 45%, transparent) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(circle at center, #000, transparent 70%); opacity: .35; pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: 42px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 14px; border: 1px solid var(--border); border-radius: 999px; background: color-mix(in srgb, var(--surface) 72%, transparent); color: var(--gold); font-size: 14px; font-weight: 900; margin-bottom: 18px; }
.hero h1 { font-size: clamp(36px, 6vw, 68px); line-height: 1.15; letter-spacing: -1.5px; color: var(--primary-2); margin-bottom: 18px; }
[data-theme="dark"] .hero h1 { color: #fff; }
.hero h1 span { color: var(--gold); }
.hero p { color: var(--muted); font-size: 18px; max-width: 620px; margin-bottom: 26px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.trust-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 650px; }
.trust-card { background: color-mix(in srgb, var(--surface) 88%, transparent); border: 1px solid var(--border); border-radius: 20px; padding: 14px; box-shadow: var(--soft-shadow); }
.trust-card strong { display: block; color: var(--primary); font-size: 24px; line-height: 1.2; }
[data-theme="dark"] .trust-card strong { color: #fff; }
.trust-card span { color: var(--muted); font-size: 13px; font-weight: 800; }
.hero-visual { position: relative; min-height: 560px; }
.visual-card { position: absolute; border-radius: 36px; overflow: hidden; background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow); }
.main-visual { inset: 20px 20px auto auto; width: min(460px, 92%); height: 430px; background: linear-gradient(180deg, rgba(11,23,74,.05), rgba(11,23,74,.72)), url("hero.svg") center/cover; }
.main-visual .label { position: absolute; right: 26px; bottom: 24px; left: 26px; color: #fff; }
.main-visual .label small { display: inline-flex; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.14); backdrop-filter: blur(10px); margin-bottom: 10px; color: #fff; font-weight: 900; }
.main-visual .label h3 { font-size: 30px; line-height: 1.35; }
.mini-card { width: 250px; padding: 18px; }
.mini-card.one { left: 0; top: 80px; }
.mini-card.two { left: 40px; bottom: 30px; }
.mini-card .icon { width: 52px; height: 52px; border-radius: 18px; display: grid; place-items: center; background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; font-size: 24px; margin-bottom: 12px; }
.mini-card h4 { color: var(--primary); font-size: 18px; }
[data-theme="dark"] .mini-card h4 { color: #fff; }
.mini-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.plane-line { position: absolute; left: 18px; top: 14px; width: 190px; height: 90px; border-top: 2px dashed color-mix(in srgb, var(--gold) 70%, transparent); border-radius: 50%; transform: rotate(-12deg); opacity: .7; }
.plane-line::after { content: "✈"; position: absolute; left: -2px; top: -18px; color: var(--gold); font-size: 22px; transform: rotate(-30deg); }

section { padding: 78px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 22px; margin-bottom: 34px; }
.section-kicker { color: var(--gold); font-weight: 900; margin-bottom: 6px; }
.section-head h2, .inline-title { color: var(--primary-2); font-size: clamp(28px, 4vw, 44px); line-height: 1.25; letter-spacing: -.6px; }
[data-theme="dark"] .section-head h2, [data-theme="dark"] .inline-title { color: #fff; }
.section-head p, .muted-text { color: var(--muted); max-width: 520px; }
.muted-text { margin-bottom: 24px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { position: relative; isolation: isolate; padding: 24px; min-height: 248px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--soft-shadow); overflow: hidden; transition: .3s ease; }
.service-card::before { content: ""; position: absolute; inset: auto -30px -62px auto; width: 130px; height: 130px; border-radius: 50%; background: color-mix(in srgb, var(--gold) 16%, transparent); z-index: -1; }
.service-card:hover { transform: translateY(-8px); border-color: color-mix(in srgb, var(--gold) 40%, var(--border)); }
.service-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 20px; background: color-mix(in srgb, var(--primary) 10%, transparent); color: var(--primary); font-size: 26px; margin-bottom: 16px; }
[data-theme="dark"] .service-icon { color: #fff; background: rgba(255,255,255,.08); }
.service-card h3 { color: var(--primary); font-size: 21px; margin-bottom: 9px; }
[data-theme="dark"] .service-card h3 { color: #fff; }
.service-card p { color: var(--muted); font-size: 15px; }
.packages { background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--primary) 6%, transparent), transparent); }
.package-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.tab-btn { border: 1px solid var(--border); background: var(--surface); color: var(--muted); padding: 10px 16px; border-radius: 999px; cursor: pointer; font-weight: 900; transition: .25s ease; }
.tab-btn.active, .tab-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.package-card { background: var(--surface); border: 1px solid var(--border); border-radius: 32px; overflow: hidden; box-shadow: var(--soft-shadow); transition: .3s ease; }
.package-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.package-media { height: 220px; background: var(--primary); position: relative; overflow: hidden; }
.package-media.umrah { background: linear-gradient(180deg, rgba(11,23,74,.08), rgba(11,23,74,.65)), url("umrah.svg") center/cover; }
.package-media.hajj { background: linear-gradient(180deg, rgba(11,23,74,.08), rgba(11,23,74,.68)), url("hajj.svg") center/cover; }
.package-media.tourism { background: linear-gradient(180deg, rgba(11,23,74,.02), rgba(11,23,74,.62)), url("tourism.svg") center/cover; }
.package-badge { position: absolute; right: 18px; top: 18px; display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,.88); color: var(--primary); font-weight: 900; font-size: 13px; backdrop-filter: blur(10px); }
.package-content { padding: 22px; }
.package-content h3 { color: var(--primary); font-size: 24px; margin-bottom: 7px; }
[data-theme="dark"] .package-content h3 { color: #fff; }
.package-content p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.features { display: grid; gap: 8px; list-style: none; margin-bottom: 18px; color: var(--muted); font-weight: 800; font-size: 14px; }
.features li { display: flex; align-items: center; gap: 9px; }
.features li::before { content: "✓"; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto; background: color-mix(in srgb, var(--gold) 18%, transparent); color: var(--gold); font-size: 13px; font-weight: 900; }
.price-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.price strong { color: var(--gold); font-size: 26px; line-height: 1; }
.price span { display: block; color: var(--muted); font-size: 12px; font-weight: 800; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; align-items: center; }
.about-card { background: var(--surface); border: 1px solid var(--border); border-radius: 36px; padding: 26px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.about-illustration { min-height: 360px; border-radius: 28px; background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(11,23,74,.7)), url("about.svg") center/cover; }
.about-copy h2 { color: var(--primary-2); font-size: clamp(28px, 4vw, 44px); line-height: 1.28; margin-bottom: 16px; }
[data-theme="dark"] .about-copy h2 { color: #fff; }
.about-copy p { color: var(--muted); margin-bottom: 18px; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 22px; }
.check-item { display: flex; align-items: center; gap: 10px; padding: 14px; border: 1px solid var(--border); border-radius: 18px; background: color-mix(in srgb, var(--surface) 78%, transparent); font-weight: 900; }
.check-item span { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--gold); color: #fff; flex: 0 0 auto; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-card { background: var(--surface); border: 1px solid var(--border); border-radius: 28px; padding: 24px; box-shadow: var(--soft-shadow); }
.step-number { width: 46px; height: 46px; border-radius: 17px; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #fff; font-weight: 900; margin-bottom: 16px; }
.step-card h3 { color: var(--primary); font-size: 20px; margin-bottom: 8px; }
[data-theme="dark"] .step-card h3 { color: #fff; }
.step-card p { color: var(--muted); font-size: 15px; }
.booking-box { display: grid; grid-template-columns: .92fr 1.08fr; gap: 26px; background: linear-gradient(135deg, var(--primary-2), var(--primary)); color: #fff; border-radius: 40px; padding: clamp(24px, 5vw, 44px); box-shadow: var(--shadow); overflow: hidden; position: relative; }
.booking-box::before { content: ""; position: absolute; width: 420px; height: 420px; border: 80px solid rgba(255,255,255,.06); border-radius: 50%; right: -160px; bottom: -210px; }
.booking-copy, .booking-form { position: relative; }
.booking-copy .eyebrow { color: #fff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); }
.booking-copy h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.25; margin-bottom: 14px; }
.booking-copy p { color: rgba(255,255,255,.78); margin-bottom: 20px; }
.contact-list { display: grid; gap: 12px; margin-top: 24px; }
.contact-list a, .contact-list span { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.92); font-weight: 800; }
.contact-list i { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.1); font-style: normal; }
.booking-form { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); border-radius: 28px; padding: 22px; backdrop-filter: blur(16px); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; color: rgba(255,255,255,.86); font-size: 13px; font-weight: 900; margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(255,255,255,.94); color: #111827; padding: 12px 14px; outline: none; transition: .25s ease; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(210,138,46,.18); }
.booking-form .btn { width: 100%; margin-top: 16px; }
.form-note { margin-top: 12px; color: rgba(255,255,255,.78); font-size: 13px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: 28px; padding: 24px; box-shadow: var(--soft-shadow); }
.stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial p { color: var(--muted); margin-bottom: 18px; }
.person { display: flex; align-items: center; gap: 12px; }
.avatar { width: 45px; height: 45px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--primary), var(--gold)); color: #fff; font-weight: 900; }
.person strong { display: block; color: var(--primary); }
[data-theme="dark"] .person strong { color: #fff; }
.person span { color: var(--muted); font-size: 13px; }
.faq-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 22px; overflow: hidden; box-shadow: var(--soft-shadow); }
.faq-question { width: 100%; border: 0; background: transparent; color: var(--text); padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; text-align: right; font-weight: 900; }
.faq-question span { color: var(--gold); font-size: 22px; line-height: 1; transition: .25s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { color: var(--muted); padding: 0 20px 18px; font-size: 15px; }
.faq-item.open .faq-answer { max-height: 180px; }
.faq-item.open .faq-question span { transform: rotate(45deg); }
.map-card { background: var(--surface); border: 1px solid var(--border); border-radius: 32px; padding: 20px; box-shadow: var(--shadow); }
.map-visual { height: 330px; border-radius: 24px; background: linear-gradient(135deg, rgba(31,43,123,.88), rgba(11,23,74,.94)), url("map.svg") center/cover; display: grid; place-items: center; color: #fff; text-align: center; }
.map-visual h3 { font-size: 28px; margin-bottom: 6px; }
.map-visual p { color: rgba(255,255,255,.8); }
.footer { padding: 55px 0 26px; background: var(--primary-2); color: #fff; margin-top: 70px; position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; border: 90px solid rgba(255,255,255,.04); left: -220px; top: -240px; }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.2fr .8fr .8fr 1fr; gap: 26px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand-text strong { color: #fff; }
.footer p, .footer a, .footer li { color: rgba(255,255,255,.76); }
.footer-desc { margin-top: 16px; max-width: 360px; }
.footer h3 { margin-bottom: 14px; font-size: 18px; }
.footer ul { list-style: none; display: grid; gap: 8px; }
.footer-bottom { position: relative; padding-top: 20px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: rgba(255,255,255,.7); font-size: 14px; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a { width: 40px; height: 40px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; }
.whatsapp-float { position: fixed; left: 22px; bottom: 22px; z-index: 80; width: 58px; height: 58px; border-radius: 22px; display: grid; place-items: center; color: #fff; background: #25D366; box-shadow: 0 18px 40px rgba(37,211,102,.3); font-size: 26px; transition: .25s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.04); }
.to-top { position: fixed; right: 22px; bottom: 22px; z-index: 80; opacity: 0; pointer-events: none; transform: translateY(12px); }
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(28px); transition: .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .nav-links { position: fixed; inset: 126px 16px auto 16px; display: grid; grid-template-columns: repeat(2, 1fr); background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 14px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s ease; }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .menu-btn { display: grid; }
  .hero-grid, .about-grid, .booking-box, .faq-wrap { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .services-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .top-strip-inner { justify-content: center; text-align: center; padding: 8px 0; }
  .brand-text strong { font-size: 18px; }
  .brand-text span { font-size: 10px; }
  .nav { min-height: 74px; }
  .nav-book { display: none; }
  .hero { padding-top: 54px; }
  .hero h1 { font-size: 40px; }
  .trust-row, .services-grid, .process-grid, .check-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-head p { margin-top: 10px; }
  .hero-visual { min-height: 575px; }
  .main-visual { width: 100%; height: 380px; right: 0; left: 0; }
  .mini-card.one { top: 400px; right: 0; left: auto; width: calc(50% - 8px); }
  .mini-card.two { top: 400px; left: 0; bottom: auto; width: calc(50% - 8px); }
  .mini-card p { display: none; }
  .booking-box { border-radius: 30px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .nav-links { inset: 116px 16px auto 16px; grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .logo-img { width: 52px; height: 46px; }
  .hero h1 { font-size: 34px; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .mini-card h4 { font-size: 15px; }
  .section-head h2, .about-copy h2, .booking-copy h2, .inline-title { font-size: 28px; }
  .service-card, .testimonial, .step-card { border-radius: 22px; }
}
