/* ============================================================
   MANOUR GROUP — GLOBAL DESIGN SYSTEM
   Colors: Dark Navy, Steel Grey, Gold Accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ---- TOKENS ---- */
:root {
  --navy:       #0a1628;
  --navy-light: #112240;
  --navy-mid:   #1a3260;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale:  #f5e9c8;
  --grey-900:   #1c1c1e;
  --grey-700:   #3a3a3c;
  --grey-500:   #636366;
  --grey-300:   #aeaeb2;
  --grey-100:   #f2f2f7;
  --white:      #ffffff;
  --success:    #28a745;

  --font-sans:  'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.12);
  --shadow-md:  0 8px 32px rgba(0,0,0,.16);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.24);

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --transition: .3s cubic-bezier(.25,.46,.45,.94);
  --container:  1440px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--grey-900); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }
input, textarea, select { font-family: var(--font-sans); }

/* ---- LAYOUT ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 16px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ---- TYPOGRAPHY ---- */
.display-xl { font-family: var(--font-serif); font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 800; line-height: 1.05; letter-spacing: -.02em; }
.display-lg { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -.01em; }
.display-md { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.2; }
.heading-lg { font-size: 1.5rem; font-weight: 700; line-height: 1.3; }
.heading-md { font-size: 1.25rem; font-weight: 600; line-height: 1.4; }
.body-lg { font-size: 1.125rem; line-height: 1.7; color: var(--grey-500); }
.body-md { font-size: 1rem; line-height: 1.7; color: var(--grey-500); }
.label { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

/* ---- GOLD DIVIDER ---- */
.gold-line { width: 56px; height: 3px; background: var(--gold); display: block; margin-bottom: 24px; }
.gold-line--center { margin-left: auto; margin-right: auto; }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: var(--radius-sm); font-size: .95rem; font-weight: 600; letter-spacing: .02em; transition: var(--transition); }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 10px 22px; font-size: .875rem; }
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- TAGS ---- */
.tag { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.tag-gold { background: rgba(201,168,76,.15); color: var(--gold); border: 1px solid rgba(201,168,76,.3); }
.tag-navy { background: rgba(10,22,40,.08); color: var(--navy); }

/* ---- CARDS ---- */
.card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(0,0,0,.06); transition: var(--transition); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 28px; }

/* ---- FORMS ---- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--grey-700); margin-bottom: 8px; }
.form-control { width: 100%; padding: 12px 16px; border: 1.5px solid #dde1ee; border-radius: var(--radius-sm); font-size: .95rem; color: var(--grey-900); background: var(--white); transition: var(--transition); outline: none; }
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.15); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:640px){ .form-row { grid-template-columns: 1fr; } }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-header .label { color: var(--gold); margin-bottom: 12px; }

/* ---- GRID ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.grid-triple { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media(max-width:1024px){ 
  .grid-4 { grid-template-columns: repeat(2,1fr); } 
  .grid-3 { grid-template-columns: repeat(2,1fr); } 
  .grid-split { gap: 48px; }
}
@media(max-width:768px){ 
  .grid-4, .grid-3, .grid-2, .grid-split { grid-template-columns: 1fr; gap: 32px; } 
  .grid-triple { grid-template-columns: 1fr; gap: 16px; }
}

/* ---- NAV ---- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
#navbar.hero-top {
  background: transparent;
  box-shadow: none;
}
#navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 32px rgba(0,0,0,.35);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { height: 60px; width: auto; display: block; object-fit: contain; }
.nav-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 26px; height: 26px; fill: var(--navy); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name { font-size: 1.1rem; font-weight: 800; color: var(--white); letter-spacing: .02em; }
.nav-logo-sub { font-size: .62rem; font-weight: 500; color: var(--gold); letter-spacing: .14em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { color: rgba(255,255,255,.85); font-size: .875rem; font-weight: 500; padding: 8px 12px; border-radius: 6px; transition: var(--transition); }
.nav-links a:hover { color: var(--gold); background: rgba(255,255,255,.06); }
.nav-links a.active { color: var(--gold); }
.nav-cta { margin-left: 8px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor:pointer; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
@media(max-width:960px){
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 84px; left: 0; right: 0; background: var(--navy); padding: 16px 16px 24px; gap: 4px; box-shadow: var(--shadow-md); }
  .nav-cta.open { display: flex; padding: 0 16px 20px; background: var(--navy); justify-content: flex-start; }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(.45);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,.85) 0%, rgba(26,50,96,.5) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero-eyebrow-line { width: 40px; height: 2px; background: var(--gold); }
.hero-title { color: var(--white); margin-bottom: 24px; }
.hero-title em { color: var(--gold); font-style: normal; }
.hero-desc { color: rgba(255,255,255,.78); font-size: 1.15rem; line-height: 1.75; max-width: 580px; margin-bottom: 44px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-stats { display: flex; gap: 48px; margin-top: 64px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-stat-num { font-size: 2.5rem; font-weight: 800; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.6); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; margin-top: 4px; }
@media(max-width:640px){ .hero-stats { flex-wrap: wrap; gap: 28px; } .hero { background-attachment: scroll; } }

/* ---- SECTOR CARD ---- */
.sector-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  cursor: pointer; aspect-ratio: 4/3;
  display: flex; align-items: flex-end;
}
.sector-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.sector-card:hover img { transform: scale(1.08); }
.sector-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.9) 0%, rgba(10,22,40,.3) 60%, transparent 100%);
  transition: var(--transition);
}
.sector-card:hover .sector-card-overlay { background: linear-gradient(to top, rgba(10,22,40,.95) 0%, rgba(10,22,40,.5) 60%, rgba(10,22,40,.1) 100%); }
.sector-card-content { position: relative; z-index: 2; padding: 28px; width: 100%; }
.sector-card-icon { width: 44px; height: 44px; background: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.sector-card-icon svg { width: 22px; height: 22px; fill: var(--navy); }
.sector-card-title { color: var(--white); font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.sector-card-desc { color: rgba(255,255,255,.7); font-size: .85rem; line-height: 1.5; transform: translateY(8px); opacity: 0; transition: var(--transition); }
.sector-card:hover .sector-card-desc { transform: translateY(0); opacity: 1; }

/* ---- CTA STRIP ---- */
.cta-strip { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 80px 0; position: relative; overflow: hidden; }
.cta-strip::before { content:''; position:absolute; top:-50%; right:-10%; width:600px; height:600px; background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%); pointer-events:none; }

/* ---- STATS BAR ---- */
.stats-bar { background: var(--navy); padding: 56px 0; }
.stat-item { text-align: center; }
.stat-number { font-size: 3rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label { font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.6); margin-top: 8px; letter-spacing: .06em; text-transform: uppercase; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
@media(max-width:768px){ .stats-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px){ .stats-grid { grid-template-columns: 1fr; } }

/* ---- TESTIMONIAL / QUOTE ---- */
.quote-block { background: var(--grey-100); border-left: 4px solid var(--gold); padding: 28px 32px; border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.quote-text { font-size: 1.15rem; font-style: italic; color: var(--grey-700); line-height: 1.7; margin-bottom: 16px; }
.quote-author { font-size: .875rem; font-weight: 700; color: var(--navy); }

/* ---- PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.page-header::after { content:''; position:absolute; bottom:-2px; left:0; right:0; height:64px; background: var(--white); clip-path: ellipse(55% 100% at 50% 100%); }
.page-header-content { position: relative; z-index: 2; }
.page-header-eyebrow { color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 16px; }
.page-header-title { color: var(--white); margin-bottom: 16px; }
.page-header-desc { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 600px; }

/* ---- BREADCRUMB ---- */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }

/* ---- FOOTER ---- */
footer { background: var(--navy); color: var(--white); }
.footer-top { padding: 80px 0 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand-desc { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.7; margin: 20px 0 28px; }
.footer-heading { font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; color: rgba(255,255,255,.55); font-size: .875rem; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; fill: var(--gold); margin-top: 2px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social a svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: 12px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.35); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }
@media(max-width:1024px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:640px){ .footer-grid { grid-template-columns: 1fr; } }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.5); transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,.6); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ---- SCROLL TO TOP ---- */
.scroll-top { position: fixed; bottom: 28px; left: 28px; z-index: 999; width: 44px; height: 44px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); transition: var(--transition); opacity: 0; pointer-events: none; }
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--gold); transform: translateY(-3px); }
.scroll-top svg { width: 18px; height: 18px; fill: white; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp { from { opacity:0; transform: translateY(32px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.animate-fade-up { animation: fadeUp .8s ease forwards; }
.animate-fade-in { animation: fadeIn .6s ease forwards; }

/* ---- MAP SECTION ---- */
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 420px; }
.map-wrapper iframe { width:100%; height:100%; border:none; }

/* ---- TRACKING BOX ---- */
.tracking-box { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); max-width: 640px; margin: 0 auto; }
.tracking-input-row { display: flex; gap: 12px; }
.tracking-input-row .form-control { flex: 1; }
@media(max-width:500px){ .tracking-input-row { flex-direction: column; } }

/* ---- TIMELINE ---- */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content:''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--gold); }
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: -39px; top: 4px; width: 16px; height: 16px; background: var(--gold); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--gold); }
.timeline-year { font-size: .75rem; font-weight: 700; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.timeline-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.timeline-desc { color: var(--grey-500); font-size: .9rem; line-height: 1.6; }

/* ---- PROCESS STEPS ---- */
.process-step { text-align: center; padding: 32px 24px; position: relative; }
.process-step-num { width: 56px; height: 56px; background: var(--gold); color: var(--navy); border-radius: 50%; font-size: 1.25rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.process-step-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }

/* ---- ACCORDION ---- */
.accordion-item { border-bottom: 1px solid rgba(0,0,0,.08); }
.accordion-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-weight: 600; color: var(--navy); transition: var(--transition); }
.accordion-header:hover { color: var(--gold); }
.accordion-icon { width: 24px; height: 24px; flex-shrink: 0; transition: transform var(--transition); }
.accordion-item.open .accordion-icon { transform: rotate(180deg); }
.accordion-body { overflow: hidden; max-height: 0; transition: max-height .4s ease; }
.accordion-body-inner { padding: 0 0 20px; color: var(--grey-500); line-height: 1.7; }
.accordion-item.open .accordion-body { max-height: 500px; }

/* ---- ALERT / NOTICE ---- */
.alert { padding: 16px 20px; border-radius: var(--radius-md); display: flex; align-items: flex-start; gap: 14px; }
.alert-success { background: rgba(40,167,69,.1); border: 1px solid rgba(40,167,69,.3); color: #1a6b30; }
.alert-info { background: rgba(10,22,40,.06); border: 1px solid rgba(10,22,40,.15); color: var(--navy); }

/* ---- GLOBAL PRESENCE MAP ---- */
.presence-map { background: var(--navy); border-radius: var(--radius-lg); padding: 48px; position: relative; overflow: hidden; }
.presence-map svg { width: 100%; height: auto; }
.presence-pin { fill: var(--gold); }
.presence-pin-pulse { animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }

/* ---- RESPONSIVE UTILITIES ---- */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.w-full { width: 100%; }
.h-auto { height: auto; }
.list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media(max-width:768px){ 
  .container { padding: 0 16px; }
  .list-grid { grid-template-columns: 1fr; gap: 8px; }
  .section { padding: 48px 0; } 
  .section-sm { padding: 40px 0; }
  .display-xl { font-size: 2.2rem; }
  .display-lg { font-size: 1.8rem; }
  .display-md { font-size: 1.5rem; }
  .hero-content { padding-top: 40px; }
  .page-header { padding: 100px 0 60px; }
}
