*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #BA9345;
  --gold2: #d4aa5a;
  --gold3: #9a7830;
  --gold-pale: #f5ead6;
  --gold-glass: rgba(186,147,69,0.12);
  --navy: #0E1A54;
  --navy-light: #162266;
  --white: #ffffff;
  --off: #fafaf8;
  --light: #f4f1eb;
  --light2: #ede8dc;
  --ink: #1a1510;
  --ink2: #2d2820;
  --muted: #7a7060;
  --muted2: #a09580;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 4px 24px rgba(186,147,69,0.12);
  --shadow-lg: 0 16px 60px rgba(186,147,69,0.18);
  --transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Cairo', sans-serif;
  background: var(--off);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.7;
  max-width: 100%;
}

/* UTILITIES */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.gold { color: var(--gold); }
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-glass); border: 1px solid rgba(186,147,69,0.3);
  color: var(--gold); font-size: 13px; font-weight: 700;
  padding: 6px 16px; border-radius: 30px; margin-bottom: 14px;
  align-items: center;
    justify-content: center;
}
.sec-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900; line-height: 1.2; margin-bottom: 14px; color: var(--ink);
}
.sec-title span { color: var(--gold); }
.sec-sub { font-size: 15px; color: var(--muted); max-width: 540px; line-height: 1.85; }
.center { text-align: center; }
.center .sec-sub { margin: 0 auto; }
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(186,147,69,0.25), transparent);
  margin: 0 40px;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 15px;
  padding: 13px 28px; border-radius: 50px; cursor: pointer;
  transition: var(--transition); border: none; text-decoration: none;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold3)); color: #fff; box-shadow: 0 6px 24px rgba(186,147,69,0.35); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(186,147,69,0.45); }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid rgba(186,147,69,0.45); }
.btn-outline:hover { background: var(--gold-pale); transform: translateY(-3px); }
.btn-white { background: #fff; color: var(--gold); box-shadow: 0 6px 24px rgba(0,0,0,0.12); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.18); }

/* ANIMATIONS */
.a { opacity: 0; transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22,1,0.36,1); }
.a-l { transform: translateX(-60px); }
.a-r { transform: translateX(60px); }
.a-u { transform: translateY(50px); }
.a-s { transform: scale(0.88); }
.a.in { opacity: 1 !important; transform: none !important; }
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}
.d4{transition-delay:.4s}.d5{transition-delay:.5s}.d6{transition-delay:.6s}

/* TOP BAR */
.topbar {
  background: var(--navy); padding: 8px 28px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.75);
}
.topbar-items { display: flex; align-items: center; gap: 20px; }
.topbar-items a { color: inherit; text-decoration: none; transition: color .3s; }
.topbar-items a:hover { color: var(--gold); }
.topbar i { color: var(--gold); margin-left: 5px; }
.topbar-badge { background: var(--gold); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }

/* NAVBAR */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(186,147,69,0.15);
  padding: 0 15px; transition: var(--transition);
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 100px; height: 50px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  /* background: linear-gradient(135deg, var(--gold), var(--gold3)); */
  flex-shrink: 0;
}
.nav-logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.nav-logo-icon .ico-fb { color: #fff; font-size: 18px; display: none; }
.nav-logo-text { font-size: 20px; font-weight: 900; color: var(--ink); }
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { color: var(--ink2); text-decoration: none; font-size: 14px; font-weight: 600; padding: 4px 0; position: relative; transition: color .3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; right: 0; left: 0; height: 2px; background: var(--gold); border-radius: 2px; transform: scaleX(0); transition: transform .3s; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--ink); text-decoration: none; transition: color .3s; }
.nav-phone:hover { color: var(--gold); }
.nav-phone i { color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* HERO */
#hero {
  min-height: 100vh;
  background:#fff;
  display: flex; align-items: center;
  padding: 40px 0 40px; position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 80% 20%, rgba(186,147,69,0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 10% 80%, rgba(186,147,69,0.08) 0%, transparent 45%);
}
.hero-deco { position: absolute; border-radius: 50%; pointer-events: none; }
.deco-1 { width: 600px; height: 600px; right: -180px; top: 50%; transform: translateY(-50%); background: radial-gradient(circle, rgba(186,147,69,0.1) 0%, transparent 70%); border: 1px solid rgba(186,147,69,0.1); }
.deco-2 { width: 300px; height: 300px; left: 5%; top: 10%; background: radial-gradient(circle, rgba(186,147,69,0.06) 0%, transparent 70%); }

.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-content { display: flex; flex-direction: column; gap: 24px; order: 0; }
.hero-image-wrap { order: 1; position: relative; display: flex; align-items: center; justify-content: center; }

.hero-pre {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, rgba(186,147,69,0.15), rgba(186,147,69,0.05));
  border: 1px solid rgba(186,147,69,0.3);
  color: var(--gold); font-size: 13px; font-weight: 700;
  padding: 8px 20px; border-radius: 30px; width: fit-content;
}
.hero-pre .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero-title { font-size: clamp(34px, 5.5vw, 62px); font-weight: 900; color: var(--ink); }
.hero-title .big-gold { color: var(--gold); display: block; position: relative; }
.hero-title .big-gold::after { content: ''; position: absolute; bottom: -8px; right: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--gold), transparent); border-radius: 4px; }
.hero-desc { font-size: 16px; color: var(--muted); line-height: 1.9; max-width: 500px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px;align-items: center;
    justify-content: center; }
.pill { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1.5px solid rgba(186,147,69,0.25); border-radius: 30px; padding: 8px 10px; font-size: 13px; color: var(--ink2); font-weight: 600; box-shadow: 0 2px 12px rgba(186,147,69,0.1); transition: var(--transition); cursor: default; }
.pill:hover { border-color: var(--gold); background: var(--gold-pale); transform: translateY(-2px); }
.pill i { color: var(--gold); font-size: 13px; }
.pill.hot { border-color: var(--gold); background: var(--gold-pale); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap;align-items: center;
    justify-content: center; }
.hero-trust { display: flex; align-items: center; gap: 20px; padding-top: 16px; border-top: 1px solid rgba(186,147,69,0.15); flex-wrap: wrap; align-items: center;
    justify-content: center;}
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-item i { color: var(--gold); font-size: 17px; }
.trust-item span { font-size: 13px; color: var(--muted); font-weight: 600; }

/* Hero Image */
.hero-img-main {
  width: 100%; max-width: 480px; border-radius: 40px; overflow: hidden;
  position: relative; background: #fff;
  box-shadow: 0 30px 80px rgba(186,147,69,0.25), 0 0 0 1px rgba(186,147,69,0.15);
  aspect-ratio: 3/4;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: contain; display: block; transition: transform 0.6s ease; }
.hero-img-main:hover img { transform: scale(1.04); }
.hero-img-main .img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,26,84,0.6) 0%, transparent 50%); pointer-events: none; }
.hero-img-main .img-caption { position: absolute; bottom: 24px; right: 20px; left: 20px; display: flex; align-items: center; justify-content: space-between; }
.hero-img-main .img-ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; background: linear-gradient(135deg, var(--gold-pale), #fff); }
.hero-img-main .img-ph i { font-size: 60px; color: var(--gold); opacity: .4; }
.hero-img-main .img-ph span { font-size: 14px; color: var(--muted); }

.float-card {
  position: absolute; background: #fff; border-radius: 16px; padding: 12px 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12); border: 1px solid rgba(186,147,69,0.15);
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap; font-size: 13px; font-weight: 700; color: var(--ink); z-index: 10;
}
.float-card i { color: var(--gold); font-size: 18px; }
.float-card .fc-val { font-size: 18px; font-weight: 900; color: var(--gold); }
.float-card .fc-lbl { font-size: 11px; color: var(--muted); font-weight: 500; margin-top: 1px; }
.fc-1 { top: 30px; left: -15px; animation: flt1 4s ease-in-out infinite; }
.fc-3 { top: 50%; right: -15px; transform: translateY(-50%); animation: flt1 4.5s ease-in-out infinite .4s; }
@keyframes flt1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes flt2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.img-icon { position: absolute; width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1.5px solid rgba(186,147,69,0.3); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 18px; box-shadow: 0 6px 24px rgba(186,147,69,0.2); pointer-events: none; z-index: 10; }
.ii-1 { top: -30px; left: 70%; animation: flt2 4s ease-in-out infinite; }
.ii-2 { bottom: -10px; left: 30%; animation: flt1 5s ease-in-out infinite 1s; }

/* MARQUEE */
.marquee-strip { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 18px 0; overflow: hidden; border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold); }
.marquee-inner { display: flex; gap: 0; width: max-content; animation: marqueeRTL 25s linear infinite; }
.marquee-item { display: flex; align-items: center; gap: 10px; padding: 0 32px; font-size: 14px; font-weight: 700; color: #fff; white-space: nowrap; }
.marquee-item i { color: var(--gold); font-size: 16px; }
.marquee-item .msep { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
@keyframes marqueeRTL { 0%{transform:translateX(0)} 100%{transform:translateX(50%)} }

/* WHY US */
#why { padding: 60px 0; background: #fff; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.why-cards { display: flex; flex-direction: column; gap: 16px; }
.why-card { display: flex; align-items: flex-start; gap: 16px; padding: 20px 22px; background: var(--off); border: 1px solid rgba(186,147,69,0.12); border-radius: var(--radius); transition: var(--transition); cursor: default; }
.why-card:hover { border-color: rgba(186,147,69,0.4); background: var(--gold-pale); transform: translateX(-6px); box-shadow: var(--shadow); }
.why-icon { width: 50px; height: 50px; border-radius: 13px; flex-shrink: 0; background: linear-gradient(135deg, var(--gold), var(--gold3)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; box-shadow: 0 6px 18px rgba(186,147,69,0.3); transition: var(--transition); }
.why-card:hover .why-icon { transform: rotate(-8deg) scale(1.1); }
.why-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.why-body p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 10px; }
.stat-card { background: linear-gradient(135deg, var(--gold), var(--gold3)); border-radius: var(--radius); padding: 24px 20px; text-align: center; color: #fff; box-shadow: 0 8px 30px rgba(186,147,69,0.35); transition: var(--transition); }
.stat-card:hover { transform: translateY(-5px); box-shadow: 0 16px 50px rgba(186,147,69,0.45); }
.stat-card.light { background: var(--off); color: var(--ink); border: 1.5px solid rgba(186,147,69,0.2); box-shadow: var(--shadow); }
.stat-num { font-size: 36px; font-weight: 900; }
.stat-card.light .stat-num { color: var(--gold); }
.stat-lbl { font-size: 12px; opacity: .85; margin-top: 4px; font-weight: 600; }
.stat-card.light .stat-lbl { color: var(--muted); opacity: 1; }

/* SERVICES */
#services { padding: 60px 0; background: linear-gradient(180deg, var(--off) 0%, var(--light) 100%); }
.srv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.srv-card { background: #fff; border: 1px solid rgba(186,147,69,0.12); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); cursor: default; position: relative; }
.srv-card::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(160deg, rgba(186,147,69,0.04) 0%, transparent 60%); opacity: 0; transition: opacity .4s; }
.srv-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(186,147,69,0.35); }
.srv-card:hover::before { opacity: 1; }
.srv-img { width: 100%; height: 200px; overflow: hidden; position: relative; background: var(--light); }
.srv-img img { width:100%;height:100%;object-fit:cover;transition:transform .5s ease; }
.srv-card:hover .srv-img img { transform: scale(1.07); }
.srv-img-ph { width:100%; display:flex;flex-direction:column;align-items:center;justify-content:center; gap:10px;color:var(--muted2);font-size:12px; background: linear-gradient(135deg, var(--light), var(--light2)); }
.srv-img-ph i { font-size: 32px; color: rgba(186,147,69,0.5); }
.srv-img-badge { position: absolute; top: 14px; right: 14px; background: var(--gold); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.srv-body { padding: 22px 22px 24px; }
.srv-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.srv-ico { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; background: var(--gold-pale); border: 1.5px solid rgba(186,147,69,0.25); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 20px; transition: var(--transition); }
.srv-card:hover .srv-ico { background: var(--gold); color: #fff; border-color: var(--gold); }
.srv-name { font-size: 17px; font-weight: 700; }
.srv-desc { font-size: 13px; color: var(--muted); line-height: 1.75; }
.srv-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; color: var(--gold); font-weight: 700; background: var(--gold-pale); border-radius: 20px; padding: 4px 11px; margin-top: 14px; border: 1px solid rgba(186,147,69,0.2); }

/* HOW IT WORKS */
#how { padding: 60px 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); position: relative; overflow: hidden; }
#how::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 20% 50%, rgba(186,147,69,0.12) 0%, transparent 50%), radial-gradient(ellipse at 80% 30%, rgba(186,147,69,0.08) 0%, transparent 45%); }
#how .sec-title { color: #fff; }
#how .sec-sub { color: rgba(255,255,255,0.65); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.step { text-align: center; padding: 32px 22px; background: rgba(255,255,255,0.05); border: 1px solid rgba(186,147,69,0.2); border-radius: var(--radius-lg); transition: var(--transition); position: relative; overflow: hidden; }
.step::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold2)); transform: scaleX(0); transition: transform .4s; }
.step:hover { background: rgba(255,255,255,0.1); border-color: rgba(186,147,69,0.45); }
.step:hover::after { transform: scaleX(1); }
.step-num { font-size: 13px; font-weight: 700; color: var(--gold); background: rgba(186,147,69,0.12); border: 1px solid rgba(186,147,69,0.3); border-radius: 30px; padding: 4px 12px; display: inline-block; margin-bottom: 16px; }
.step-ico { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 18px; background: linear-gradient(135deg, var(--gold), var(--gold3)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 28px; box-shadow: 0 10px 30px rgba(186,147,69,0.4); transition: var(--transition); }
.step:hover .step-ico { transform: scale(1.1) rotate(-5deg); }
.step h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* COVERAGE */
#coverage { padding: 60px 0; background: #fff; }
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.coverage-map { position: relative; background: var(--gold-pale); border-radius: 30px; padding: 40px; border: 2px solid rgba(186,147,69,0.2); min-height: 380px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.coverage-map::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(186,147,69,0.1) 0%, transparent 70%); }
.map-inner { text-align: center; position: relative; z-index: 2; }
.map-icon { font-size: 80px; color: var(--gold); opacity: .4; margin-bottom: 16px; }
.map-title { font-size: 22px; font-weight: 900; color: var(--ink); margin-bottom: 8px; }
.map-sub { font-size: 14px; color: var(--muted); }
.emirates-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; justify-content: center; }
.em { background: #fff; border: 1.5px solid rgba(186,147,69,0.3); border-radius: 20px; padding: 5px 14px; font-size: 13px; font-weight: 600; color: var(--ink); transition: var(--transition); }
.em:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.coverage-content { display: flex; flex-direction: column; gap: 20px; }
.cov-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px; background: var(--off); border: 1px solid rgba(186,147,69,0.1); border-radius: var(--radius); transition: var(--transition); }
.cov-item:hover { border-color: rgba(186,147,69,0.35); background: var(--gold-pale); }
.cov-ico { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; background: linear-gradient(135deg, var(--gold), var(--gold3)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 19px; }
.cov-txt h5 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.cov-txt p { font-size: 13px; color: var(--muted); }

/* PAYMENT */
#payment { padding: 80px 0; background: var(--light); }
.pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.pay-card { background: #fff; border-radius: var(--radius-lg); padding: 30px; text-align: center; border: 1px solid rgba(186,147,69,0.12); transition: var(--transition); }
.pay-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(186,147,69,0.35); }
.pay-num { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold3)); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 900; color: #fff; margin: 0 auto 16px; }
.pay-ico { font-size: 36px; color: var(--gold); margin-bottom: 12px; display: block; }
.pay-name { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.pay-desc { font-size: 13px; color: var(--muted); }

/* REVIEWS */
#reviews { padding: 100px 0; background: #fff; }
.rev-summary { display: flex; align-items: center; justify-content: center; gap: 50px; background: var(--gold-pale); border: 1px solid rgba(186,147,69,0.2); border-radius: var(--radius-lg); padding: 32px 40px; max-width: 680px; margin: 0 auto 56px; }
.rev-big { font-size: 78px; font-weight: 900; color: var(--gold); line-height: 1; }
.rev-stars { display: flex; gap: 6px; margin-top: 8px; }
.rev-stars i { color: var(--gold); font-size: 20px; }
.rev-cnt { font-size: 13px; color: var(--muted); margin-top: 5px; }
.rev-bars { display: flex; flex-direction: column; gap: 8px; min-width: 200px; }
.rb { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.rb > span:first-child { color: var(--muted); width: 16px; }
.rb-t { flex: 1; height: 7px; background: rgba(186,147,69,0.15); border-radius: 4px; overflow: hidden; }
.rb-f { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold2)); border-radius: 4px; width: 0; transition: width 1.3s cubic-bezier(0.22,1,0.36,1); }
.rb > span:last-child { color: var(--muted); width: 30px; font-size: 11px; }

/* Slider */
.rev-wrap { overflow: hidden; touch-action: pan-y; }
.rev-track { display: flex; gap: 22px; transition: transform .65s cubic-bezier(0.22,1,0.36,1); will-change: transform; }
.rev-card { flex: 0 0 340px; background: var(--off); border: 1px solid rgba(186,147,69,0.12); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden; user-select: none; transition: border-color .3s, box-shadow .3s, transform .3s; }
.rev-card::before { content: '\f10d'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 14px; left: 18px; font-size: 52px; color: rgba(186,147,69,0.08); line-height: 1; pointer-events: none; }
.rev-card:hover { border-color: rgba(186,147,69,0.4); box-shadow: var(--shadow); transform: translateY(-6px); }
.rev-hdr { display: flex; align-items: center; gap: 13px; }
.rev-av { width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--gold), var(--gold3)); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 900; color: #fff; }
.rev-nm { font-size: 15px; font-weight: 700; }
.rev-dt { font-size: 12px; color: var(--muted); }
.rev-rt { display: flex; gap: 3px; }
.rev-rt i { color: var(--gold); font-size: 13px; }
.rev-txt { font-size: 14px; color: var(--muted); line-height: 1.8; flex: 1; }
.rev-ok { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gold); font-weight: 600; }
.dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(186,147,69,0.25); cursor: pointer; transition: .3s; }
.dot.on { width: 26px; border-radius: 4px; background: var(--gold); }
.arrows { display: flex; justify-content: center; gap: 12px; margin-top: 12px; }
.arr { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-pale); border: 1.5px solid rgba(186,147,69,0.3); display: flex; align-items: center; justify-content: center; color: var(--gold); cursor: pointer; transition: var(--transition); font-size: 14px; }
.arr:hover { background: var(--gold); color: #fff; transform: scale(1.1); }

/* CTA BANNER */
#cta-banner { padding: 80px 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); position: relative; overflow: hidden; }
#cta-banner::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 20% 50%, rgba(186,147,69,0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 30%, rgba(186,147,69,0.1) 0%, transparent 45%); }
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(26px,4vw,44px); font-weight: 900; color: #fff; margin-bottom: 14px; }
.cta-inner h2 span { color: var(--gold); }
.cta-inner p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* CONTACT */
#contact { padding: 60px 0; background: var(--off); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.c-items { display: flex; flex-direction: column; gap: 13px; }
.c-item {
  display: flex; align-items: center; gap: 15px;
  padding: 16px 18px; background: #fff;
  border: 1px solid rgba(186,147,69,0.12);
  border-radius: var(--radius); transition: var(--transition);
  text-decoration: none; color: inherit;
}
.c-item:hover { border-color: rgba(186,147,69,0.4); background: var(--gold-pale); transform: translateX(-5px); }
.c-ico { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; background: linear-gradient(135deg, var(--gold), var(--gold3)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; }
.c-lbl { font-size: 11px; color: var(--muted); margin-bottom: 2px; font-weight: 600; }
.c-val { font-size: 14px; font-weight: 700; color: var(--ink); }
.soc-row { display: flex; gap: 10px; }
.soc { width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1.5px solid rgba(186,147,69,0.22); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 17px; text-decoration: none; transition: var(--transition); }
.soc:hover { background: var(--gold); color: #fff; transform: translateY(-4px); box-shadow: 0 8px 24px rgba(186,147,69,0.35); }
.c-form { background: #fff; border-radius: var(--radius-lg); padding: 36px; border: 1px solid rgba(186,147,69,0.12); box-shadow: var(--shadow); }
.cf-title { font-size: 20px; font-weight: 700; margin-bottom: 22px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-g { display: flex; flex-direction: column; gap: 6px; }
.cf-g label { font-size: 12px; color: var(--muted); font-weight: 700; }
.cf-g input, .cf-g textarea, .cf-g select { background: var(--off); border: 1.5px solid rgba(186,147,69,0.18); border-radius: 12px; padding: 12px 15px; color: var(--ink); font-family: 'Cairo', sans-serif; font-size: 14px; transition: .3s; outline: none; width: 100%; resize: none; appearance: none; }
.cf-g input:focus, .cf-g textarea:focus, .cf-g select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(186,147,69,0.15); }
.cf-g textarea { min-height: 105px; }
.cf-g select option { background: #fff; color: var(--ink); }
.btn-sub { background: linear-gradient(135deg, var(--gold), var(--gold3)); color: #fff; font-family: 'Cairo', sans-serif; font-size: 16px; font-weight: 700; padding: 15px; border-radius: 50px; border: none; cursor: pointer; width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; transition: var(--transition); margin-top: 6px; box-shadow: 0 6px 24px rgba(186,147,69,0.35); }
.btn-sub:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(186,147,69,0.45); }

/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,0.85); padding: 60px 28px 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.ft-brand { display: flex; flex-direction: column; gap: 14px; }
.ft-logo-box { display: flex; align-items: center; gap: 10px; }
.ft-logo-ico { width: 80px; height: 44px; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ft-logo-ico img { width: 100%; height: 100%; object-fit: cover; }
.ft-logo-ico .ico-fb { color: #fff; font-size: 19px; display: none; }
.ft-logo-txt { font-size: 20px; font-weight: 900; color: #fff; }
.ft-logo-txt span { color: var(--gold); }
.ft-tagline { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.ft-col h5 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(186,147,69,0.2); }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ft-col ul a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; transition: color .3s; }
.ft-col ul a:hover { color: var(--gold); }
.ft-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); font-size: 13px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 12px; }
.ft-bottom span { color: var(--gold); }
.ft-soc { display: flex; gap: 10px; }
.ft-soc a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 14px; text-decoration: none; transition: var(--transition); }
.ft-soc a:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* FIXED BUTTONS */
#stt { position: fixed; bottom: 65px; left: 10px; width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold3)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 17px; cursor: pointer; border: none; transition: var(--transition); opacity: 0; pointer-events: none; z-index: 999; box-shadow: 0 6px 24px rgba(186,147,69,0.35); }
#stt.show { opacity: 1; pointer-events: auto; }
#stt:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(186,147,69,0.5); }

/* WhatsApp button with label text */
.wa-btn {
  position: fixed; bottom: 10px; left: 10px;
  display: flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 11px 18px 11px 14px; border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition); z-index: 999;
  animation: waPulse 3s ease-in-out infinite;
  font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 14px;
  white-space: nowrap;
}
.wa-btn i { font-size: 22px; flex-shrink: 0; }
.wa-btn .wa-lbl { font-size: 13px; font-weight: 700; }
.wa-btn:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
@keyframes waPulse { 0%,100%{box-shadow:0 6px 24px rgba(37,211,102,0.4)} 50%{box-shadow:0 6px 40px rgba(37,211,102,0.7)} }

/* MOBILE MENU */
.mob-ov { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1999; opacity: 0; pointer-events: none; transition: opacity .3s; }
.mob-ov.show { opacity: 1; pointer-events: auto; }
.mob-menu { position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: #fff; z-index: 2000; padding: 80px 28px 40px; display: flex; flex-direction: column; gap: 20px; transform: translateX(100%); transition: transform .4s cubic-bezier(0.22,1,0.36,1); border-left: 2px solid rgba(186,147,69,0.2); overflow-y: auto; }
.mob-menu.open { transform: translateX(0); }
.mob-menu a { color: var(--ink); text-decoration: none; font-size: 17px; font-weight: 600; padding: 10px 0; border-bottom: 1px solid rgba(186,147,69,0.1); }
.mob-menu a:hover { color: var(--gold); }
.mob-close { position: absolute; top: 20px; left: 20px; background: none; border: none; color: var(--gold); font-size: 22px; cursor: pointer; }

/* RESPONSIVE */
@media(max-width: 980px) {
  .topbar { display: none; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  /* Mobile: content first (order 0), image second (order 1) */
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { order: 0; }
  .hero-image-wrap { order: 1; }
  .hero-img-main { max-width: 380px; margin: 0 auto; aspect-ratio: 4/5; }
  .why-grid, .coverage-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* .fc-1, .fc-3 { display: none; }
  .ii-1, .ii-2 { display: none; } */
}

@media(max-width: 600px) {
  .wrap { padding: 0 16px; }
  .hero-title { font-size: 30px; }
  .hero-img-main { aspect-ratio: 3/4; max-width: 100%; }
  .srv-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .cta-buttons { flex-direction: row; align-items: center; }
  .cf-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn { justify-content: center; }
  .rev-card { flex: 0 0 calc(100vw - 64px); }
  .rev-summary { flex-direction: column; gap: 24px; padding: 24px 20px; }
  .rev-bars { min-width: 100%; }
  .hero-trust { gap: 12px; align-items: center;
    justify-content: center;}

  /* .wa-btn .wa-lbl { display: none; } */
  /* .wa-btn { padding: 12px 13px; border-radius: 50%; } */
  
}