/* ============================================
   AL NOOR AL WADEH — Premium Redesign
   Font: Poppins (body) + Outfit (headings)
   Palette: Deep Navy #0f172a · Royal Blue #2563eb
            Emerald #059669 · Gold #f59e0b · White
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Outfit:wght@700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0f172a;
  --navy-light:  #1e293b;
  --navy-lighter:#334155;
  --royal:       #2563eb;
  --royal-light: #60a5fa;
  --royal-dark:  #1d4ed8;
  --emerald:     #059669;
  --emerald-light:#10b981;
  --gold:        #f59e0b;
  --gold-light:  #fbbf24;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-300:    #cbd5e1;
  --gray-400:    #94a3b8;
  --gray-500:    #64748b;
  --gray-600:    #475569;
  --text-dark:   #1e293b;
  --text-body:   #475569;
  --text-light:  #64748b;
  --wa-green:    #25d366;

  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow:      0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.16);
  --shadow-royal: 0 4px 20px rgba(37,99,235,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  padding-bottom: 0;
  min-height: 100vh;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== ANIMATED BG ===== */
.animated-bg { display: none; }
.orb { display: none; }

/* ===== TOP BAR — Modern pill style ===== */
.topbar {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f2744 100%);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, #2563eb, #059669, #f59e0b) 1;
  position: relative; z-index: 200;
  padding: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.topbar-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  min-height: 106px; gap: 24px;
}
.tb-logo-wrap {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.tb-logo {
  height: 90px; width: auto;
  object-fit: contain; display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
  transition: var(--transition);
}
.tb-logo-wrap:hover .tb-logo { transform: scale(1.04); }

/* Contact pills */
.tb-contacts {
  display: flex; align-items: center;
  gap: 10px; flex-wrap: wrap;
}
.tb-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  text-decoration: none; transition: var(--transition);
  white-space: nowrap;
}
.tb-pill i { font-size: 0.95rem; }
.tb-pill-wa {
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.3);
  color: #4ade80;
}
.tb-pill-wa:hover { background: rgba(37,211,102,0.25); color: #fff; }
.tb-pill-phone {
  background: rgba(96,165,250,0.12);
  border: 1px solid rgba(96,165,250,0.25);
  color: #93c5fd;
}
.tb-pill-phone:hover { background: rgba(96,165,250,0.22); color: #fff; }
.tb-pill-hours {
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.2);
  color: #fcd34d;
  cursor: default;
}
.tb-pill-email {
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.2);
  color: #6ee7b7;
}
.tb-pill-email:hover { background: rgba(52,211,153,0.2); color: #fff; }

/* Hide old unused classes */
.topbar-left, .tb-link, .tb-block, .tb-sep,
.tb-icon-wrap, .tb-text, .topbar-right { display: none !important; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: #0f172a;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.site-header.scrolled {
  background: #0a0f1e;
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 24px; gap: 32px;
  height: 80px;
}

/* Logo — hidden on desktop (logo lives in topbar on desktop) */
.logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.logo img {
  height: 52px; width: auto;
  object-fit: contain;
}

/* Mobile-only logo — hidden on desktop */
.logo-mobile { display: none; }
  transition: var(--transition);
}
.logo:hover img {
  transform: scale(1.03);
}

/* Nav */
.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  position: relative;
}
.nav-link span { position: relative; z-index: 1; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 50%; right: 50%;
  height: 2px;
  background: #f59e0b;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-link:hover::after { left: 18px; right: 18px; }
.nav-link.active { color: #fff; background: rgba(255,255,255,0.1); }
.nav-link.active::after { left: 18px; right: 18px; }

/* Header CTA buttons */
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn-wa-header {
  display: flex; align-items: center; gap: 7px;
  background: var(--wa-green);
  color: var(--white); padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.88rem;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(37,211,102,0.3);
}
.btn-wa-header:hover { background: #128c7e; transform: translateY(-1px); }
.btn-call-header {
  display: flex; align-items: center; gap: 7px;
  background: #f59e0b;
  color: #0f172a; padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.88rem;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(245,158,11,0.35);
}
.btn-call-header:hover { background: #d97706; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm); padding: 8px; cursor: pointer;
  transition: var(--transition);
}
.hamburger:hover { border-color: #f59e0b; background: rgba(255,255,255,0.12); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== DRAWER ===== */
.drawer {
  position: fixed; top: 0; left: -100%;
  width: min(320px, 85vw); height: 100vh;
  background: var(--white);
  border-right: 1px solid var(--gray-200);
  z-index: 2000; padding: 24px 20px;
  transition: left 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; gap: 20px;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.drawer.open { left: 0; }
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,0.6);
  z-index: 1999; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; }
.drawer-logo { height: 60px; }
.drawer-close {
  background: var(--gray-100); border: none;
  color: var(--navy); width: 36px; height: 36px;
  border-radius: var(--radius-sm); cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.drawer-close:hover { background: var(--royal); color: var(--white); }

.drawer-divider { height: 1px; background: var(--gray-200); margin: 8px 0; }
.drawer-nav { display: flex; flex-direction: column; gap: 2px; }
.dl {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.92rem;
  color: var(--text-body); transition: var(--transition);
}
.dl i { width: 18px; color: var(--royal); flex-shrink: 0; }
.dl:hover { background: var(--gray-50); color: var(--royal); }
.dl.active {
  background: rgba(37,99,235,0.1);
  color: var(--royal);
  border-left: 3px solid var(--royal);
  padding-left: 11px;
}

.drawer-cta { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--gray-200); }
.dcta-wa, .dcta-call {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.92rem; transition: var(--transition);
}
.dcta-wa { background: var(--wa-green); color: var(--white); }
.dcta-wa:hover { background: #128c7e; }
.dcta-call { background: var(--royal); color: var(--white); }
.dcta-call:hover { background: var(--royal-dark); }

/* ===== MAIN CONTENT ===== */
.main-content { position: relative; z-index: 1; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--gray-200);
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--royal), var(--emerald), var(--gold));
}
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  color: var(--royal);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 16px; color: var(--navy);
}
.page-hero p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-body);
  max-width: 560px; margin: 0 auto 28px;
  line-height: 1.8;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-light);
}
.breadcrumb a { color: var(--royal); transition: var(--transition); font-weight: 600; }
.breadcrumb a:hover { color: var(--royal-dark); }
.breadcrumb i { font-size: 0.6rem; }

/* ===== CARD ===== */
.glass-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.glass-card:hover {
  border-color: var(--royal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ===== SECTION LABEL ===== */
.sec-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 12px;
}
.sec-label::before {
  content: '';
  width: 20px; height: 3px;
  border-radius: 2px;
}
.sec-label.purple { color: var(--royal); }
.sec-label.purple::before { background: var(--royal); }
.sec-label.teal   { color: var(--emerald); }
.sec-label.teal::before { background: var(--emerald); }
.sec-label.coral  { color: var(--gold); }
.sec-label.coral::before { background: var(--gold); }

.sec-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 14px;
  color: var(--navy);
}
.sec-title .grad {
  background: linear-gradient(135deg, var(--royal), var(--emerald));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9rem;
  transition: var(--transition); cursor: pointer; border: none;
  white-space: nowrap;
}
.btn-grad {
  background: var(--royal); color: var(--white);
  box-shadow: var(--shadow-royal);
}
.btn-grad:hover { background: var(--royal-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,0.35); }
.btn-glass {
  background: var(--white);
  border: 2px solid var(--gray-300);
  color: var(--navy);
}
.btn-glass:hover { background: var(--gray-50); border-color: var(--royal); color: var(--royal); transform: translateY(-2px); }
.btn-wa {
  background: var(--wa-green); color: var(--white);
  box-shadow: 0 4px 14px rgba(37,211,102,0.25);
}
.btn-wa:hover { background: #128c7e; transform: translateY(-2px); }
.btn-teal {
  background: var(--emerald); color: var(--white);
  box-shadow: 0 4px 14px rgba(5,150,105,0.25);
}
.btn-teal:hover { background: #047857; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--royal);
  color: var(--royal);
}
.btn-outline:hover { background: var(--royal); color: var(--white); }

/* ===== DIVIDER ===== */
.grad-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: var(--gray-300);
  padding: 64px 0 0;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--royal), var(--emerald), var(--gold));
}
.footer-glow { display: none; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid var(--navy-lighter);
}
.footer-logo { height: 72px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: var(--gray-400); line-height: 1.8; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 38px; height: 38px;
  background: var(--navy-light); border: 1px solid var(--navy-lighter);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); font-size: 0.95rem; transition: var(--transition);
}
.footer-socials a:hover { background: var(--royal); border-color: var(--royal); color: var(--white); transform: translateY(-2px); }

.footer-col h4 {
  font-size: 0.9rem; font-weight: 700; color: var(--white);
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid var(--navy-lighter);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  display: flex; align-items: center; gap: 8px;
  color: var(--gray-400); font-size: 0.86rem; transition: var(--transition);
}
.footer-col a i { font-size: 0.6rem; color: var(--royal-light); }
.footer-col a:hover { color: var(--emerald-light); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.fci {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.86rem; color: var(--gray-400); transition: var(--transition);
}
.fci i { color: var(--emerald); width: 16px; flex-shrink: 0; }
.fci:hover { color: var(--white); }

.footer-bottom { padding: 18px 0; }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--gray-500); }

/* ===== FLOATING BUTTONS ===== */
.float-btn {
  position: fixed; right: 20px;
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white);
  z-index: 800; transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.float-wa { bottom: 92px; background: var(--wa-green); }
.float-call { bottom: 158px; background: var(--royal); }
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
.float-call:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,99,235,0.4); }
.float-tip {
  position: absolute; right: 64px;
  background: var(--navy); border: 1px solid var(--navy-lighter);
  color: var(--white); font-size: 0.75rem; font-weight: 600;
  padding: 6px 12px; border-radius: var(--radius-sm);
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.float-btn:hover .float-tip { opacity: 1; }

/* ===== MOBILE BOTTOM NAV ===== */
.mob-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  z-index: 900;
  padding: 0 0 env(safe-area-inset-bottom, 0);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
  height: 64px;
  align-items: stretch;
}
.mn-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3px; padding: 8px 4px;
  color: var(--text-light); font-size: 0.62rem; font-weight: 600;
  transition: var(--transition);
  position: relative;
}
.mn-item i { font-size: 1.2rem; line-height: 1; }
.mn-item span { font-size: 0.6rem; font-weight: 600; }
.mn-item.active { color: var(--royal); }
.mn-item.active i { color: var(--royal); }
.mn-item:hover { color: var(--royal); }

/* Active indicator dot */
.mn-item.active::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--royal);
}

/* WhatsApp — same size, just green color */
.mn-wa {
  background: transparent;
  color: var(--wa-green) !important;
  border-radius: 0;
  margin: 0; padding: 8px 4px;
}
.mn-wa i { font-size: 1.4rem; color: var(--wa-green); }
.mn-wa span { color: var(--wa-green); }
.mn-wa:hover { background: transparent; color: #128c7e !important; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  body { padding-bottom: 72px; }
  .topbar { display: none !important; }
  .nav-desktop, .header-actions { display: none; }
  .hamburger { display: flex; }
  .mob-nav { display: flex; }

  /* Mobile header: logo left, hamburger right */
  .header-inner {
    height: 64px;
    padding: 0 16px;
    justify-content: space-between;
  }
  .logo-mobile {
    display: flex !important;
    align-items: center;
  }
  .logo-mobile img {
    height: 52px;
    width: auto;
    object-fit: contain;
    
  }

  .float-btn { right: 14px; width: 48px; height: 48px; font-size: 1.2rem; }
  .float-wa { bottom: 84px; }
  .float-call { bottom: 144px; }
  .float-tip { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header-inner { padding: 0 16px; }
  .topbar-left { flex-wrap: wrap; }
  .tb-link { font-size: 0.8rem; padding: 0 12px; }
}

/* ===== TOPBAR RESPONSIVE ===== */
@media (max-width: 1024px) {
  .tb-pill-hours { display: none; }
}
@media (max-width: 768px) {
  .topbar { display: none !important; }
}
@media (max-width: 600px) {
  .tb-pill-email { display: none; }
  .tb-contacts { gap: 8px; }
  .tb-pill { padding: 7px 12px; font-size: 0.8rem; }
}
