/* ============================================================
   CSS VARIABLES & RESET
============================================================ */
:root {
  --navy: #0B1F4A;
  --navy-mid: #163370;
  --navy-light: #1E4DB7;
  --accent: #2563EB;
  --accent-bright: #3B82F6;
  --sky: #EFF6FF;
  --sky-mid: #DBEAFE;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gold: #F59E0B;
  --gold-light: #FEF3C7;
  --green: #10B981;
  --green-light: #D1FAE5;
  --shadow-sm: 0 1px 3px rgba(11,31,74,.08), 0 1px 2px rgba(11,31,74,.06);
  --shadow-md: 0 4px 16px rgba(11,31,74,.10), 0 2px 6px rgba(11,31,74,.08);
  --shadow-lg: 0 12px 40px rgba(11,31,74,.14), 0 4px 12px rgba(11,31,74,.10);
  --shadow-xl: 0 24px 64px rgba(11,31,74,.18);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--sky-mid); color: var(--accent);
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
}
.section-title { font-size: clamp(30px, 4vw, 48px); color: var(--navy); margin-bottom: 16px; }
.section-sub { font-size: 18px; color: var(--gray-600); max-width: 580px; line-height: 1.75; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 15px; font-weight: 600;
  padding: 14px 30px; border-radius: 100px; cursor: pointer;
  transition: var(--transition); border: none; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 4px 18px rgba(37,99,235,.35); }
.btn-primary:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); box-shadow: 0 4px 18px rgba(11,31,74,.25); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  background: #ffffff;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(11,31,74,.10);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 96px;
  gap: 24px;
}
.logo { display: flex; align-items: center; cursor: pointer; flex-shrink: 0; }
.logo-icon {
  display: flex; align-items: center; justify-content: center;
  background: transparent; padding: 0; flex-shrink: 0;
}
.logo-icon img {
  height: 62px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}
.logo-text { display: none; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-head); font-size: 14px; font-weight: 500;
  color: var(--gray-700); padding: 8px 14px; border-radius: 8px;
  transition: var(--transition);
}
#navbar.scrolled .nav-links a { color: var(--gray-700); }
.nav-links a:hover { background: var(--sky); color: var(--accent); }
#navbar.scrolled .nav-links a:hover { background: var(--sky); color: var(--accent); }
.nav-links a.active-page { color: var(--accent); background: var(--sky); }
#navbar.scrolled .nav-links a.active-page { color: var(--accent); background: var(--sky); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
#navbar.scrolled .hamburger span { background: var(--navy); }
.mobile-menu {
  display: none; position: fixed; top: 96px; left: 0; right: 0;
  background: var(--white); box-shadow: var(--shadow-lg);
  padding: 16px 5% 24px; z-index: 999;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-head); font-size: 15px; font-weight: 500; color: var(--gray-700); padding: 10px 14px; border-radius: 8px; }
.mobile-menu a:hover { background: var(--sky); color: var(--accent); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative; min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.18; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,31,74,.92) 0%, rgba(22,51,112,.82) 60%, rgba(30,77,183,.65) 100%);
  z-index: 1;
}
.hero-shapes { position: absolute; inset: 0; z-index: 2; overflow: hidden; pointer-events: none; }
.hero-shapes .shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,.04); }
.hero-shapes .s1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.hero-shapes .s2 { width: 300px; height: 300px; bottom: 100px; left: -80px; background: rgba(59,130,246,.08); }
.hero-shapes .s3 { width: 200px; height: 200px; top: 40%; right: 15%; background: rgba(245,158,11,.06); }

.hero-content {
  position: relative; z-index: 10;
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 138px 5% 80px;
  display: flex; align-items: center;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; width: 100%;
}
.hero-left { width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(10px);
  color: var(--white); border: 1px solid rgba(255,255,255,.2);
  font-size: 12px; font-weight: 600; font-family: var(--font-head);
  letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 28px;
}
.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.4)} }
.hero-title {
  font-size: clamp(38px, 5vw, 64px);
  color: var(--white); margin-bottom: 24px; line-height: 1.1;
}
.hero-title .accent-text {
  background: linear-gradient(135deg, var(--accent-bright), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc { font-size: 19px; color: rgba(255,255,255,.82); margin-bottom: 36px; line-height: 1.78; max-width: 540px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat .num { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: var(--white); }
.hero-stat .label { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 3px; }
.hero-stat .num .plus { color: var(--gold); }

/* Hero Right */
.hero-right { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-card-stack { position: relative; padding: 28px; width: 100%; max-width: 420px; }
.hero-main-img {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl); aspect-ratio: 4/5;
}
.hero-main-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,.96); backdrop-filter: blur(20px);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hfc-1 { bottom: 50px; left: 0; min-width: 180px; }
.hfc-2 { top: 50px; right: 0; min-width: 160px; animation-delay: -3s; }
.hfc-label { font-size: 11px; font-weight: 600; font-family: var(--font-head); color: var(--gray-400); text-transform: uppercase; letter-spacing: .06em; }
.hfc-val { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--navy); margin-top: 3px; }
.hfc-sub { font-size: 12px; color: var(--green); font-weight: 600; margin-top: 2px; }
.hfc-row { display: flex; align-items: center; gap: 8px; }
.hfc-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--sky); display: flex; align-items: center; justify-content: center; }
.hfc-icon svg { width: 16px; height: 16px; }

/* ============================================================
   SECTION WRAPPERS
============================================================ */
.section { padding: 100px 5%; width: 100%; }
.section-center { text-align: center; }
.section-center .section-sub { margin: 0 auto; }
.container { max-width: 1280px; margin: 0 auto; width: 100%; }

/* ============================================================
   SERVICES GRID
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 56px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  padding: 32px; position: relative; overflow: hidden;
  transition: var(--transition); cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  transform: scaleX(0); transition: transform var(--transition); transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent-bright); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 58px; height: 58px; border-radius: 16px;
  background: var(--sky); display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--accent); }
.service-icon svg { width: 26px; height: 26px; transition: var(--transition); }
.service-card:hover .service-icon svg path,
.service-card:hover .service-icon svg rect,
.service-card:hover .service-icon svg circle { fill: white; }
.service-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }
.service-card .card-link {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  color: var(--accent); display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.service-card:hover .card-link { gap: 10px; }
.card-link svg { width: 14px; height: 14px; }

/* ============================================================
   STATS BAND
============================================================ */
.stats-band { background: var(--navy); padding: 72px 5%; }
.stats-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; padding: 32px 20px; border-radius: var(--radius-lg); background: rgba(255,255,255,.05); transition: var(--transition); }
.stat-item:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.stat-num { font-family: var(--font-head); font-size: 46px; font-weight: 800; color: var(--white); line-height: 1; }
.stat-num span { color: var(--gold); }
.stat-label { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 8px; font-weight: 500; }
.stat-icon { margin-bottom: 12px; display: flex; justify-content: center; }
.stat-icon svg { width: 28px; height: 28px; opacity: .7; }

/* ============================================================
   FEATURE SPLIT
============================================================ */
.feature-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
.feature-img-wrap { position: relative; }
.feature-img {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl); aspect-ratio: 4/3;
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 20px 24px; min-width: 180px;
}
.feature-badge .fb-num { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: var(--navy); }
.feature-badge .fb-label { font-size: 13px; color: var(--gray-600); margin-top: 2px; }
.feature-content { max-width: 520px; }
.feature-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; }
.fi-icon { width: 22px; height: 22px; min-width: 22px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.fi-icon svg { width: 11px; height: 11px; }
.fi-text { font-size: 15px; color: var(--gray-700); }

/* ============================================================
   OMANI REALTY SECTION
============================================================ */
.realty-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl); overflow: hidden; position: relative;
  margin: 0 5% 100px;
}
.realty-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; min-height: 560px;
}
.realty-content { padding: 72px 60px; position: relative; z-index: 2; }
.realty-content .tag { background: rgba(255,255,255,.15); color: var(--white); }
.realty-title { font-size: clamp(28px, 3.5vw, 44px); color: var(--white); margin: 16px 0; }
.realty-desc { font-size: 17px; color: rgba(255,255,255,.78); line-height: 1.78; margin-bottom: 32px; }
.realty-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.realty-feat { display: flex; align-items: center; gap: 10px; font-size: 16px; color: rgba(255,255,255,.88); }
.realty-feat svg { width: 16px; height: 16px; flex-shrink: 0; }
.realty-img { position: relative; height: 100%; }
.realty-img img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.realty-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testi-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200); padding: 32px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--accent-bright); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars svg { width: 16px; height: 16px; fill: var(--gold); }
.testi-text { font-size: 15px; color: var(--gray-600); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; border: 2px solid var(--sky-mid); }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--gray-400); margin-top: 1px; }

/* ============================================================
   LOCATIONS
============================================================ */
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.location-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; cursor: pointer; transition: var(--transition); }
.location-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.location-img { aspect-ratio: 3/4; position: relative; overflow: hidden; }
.location-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.location-card:hover .location-img img { transform: scale(1.06); }
.location-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,31,74,.85) 0%, transparent 60%);
}
.location-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.location-name { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--white); }
.location-count { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 4px; }
.location-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--navy);
  font-size: 11px; font-weight: 700; font-family: var(--font-head);
  padding: 4px 12px; border-radius: 100px; text-transform: uppercase;
}

/* ============================================================
   CHAIRMAN SECTION
============================================================ */
.chairman-section { background: var(--sky); }
.chairman-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.chairman-img-wrap { position: relative; }
.chairman-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); aspect-ratio: 3/4; }
.chairman-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.chairman-badge {
  position: absolute; top: 32px; right: -24px;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 18px 22px;
}
.chairman-badge .cb-label { font-size: 11px; font-weight: 700; font-family: var(--font-head); color: var(--gray-400); text-transform: uppercase; letter-spacing: .08em; }
.chairman-badge .cb-val { font-family: var(--font-head); font-size: 17px; font-weight: 800; color: var(--navy); margin-top: 4px; }
.chairman-content blockquote {
  font-size: 20px; font-style: italic; color: var(--navy-mid);
  border-left: 4px solid var(--accent); padding-left: 24px;
  margin: 28px 0; line-height: 1.65;
}
.chairman-content p { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 14px; }
.chairman-name { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--navy); margin-top: 32px; }
.chairman-title { font-size: 14px; color: var(--accent); font-weight: 600; margin-top: 3px; }
.chairman-creds { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.cred-badge {
  background: var(--navy); color: var(--white);
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  padding: 5px 14px; border-radius: 100px; text-transform: uppercase;
}

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--navy-light) 50%, var(--navy) 100%);
  border-radius: var(--radius-xl); margin: 0 5% 100px;
  padding: 80px 60px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.06);
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.04);
}
.cta-title { font-size: clamp(28px, 4vw, 46px); color: var(--white); margin-bottom: 16px; position: relative; z-index: 2; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,.78); margin-bottom: 36px; position: relative; z-index: 2; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: clamp(28px, 3.5vw, 40px); color: var(--navy); margin-bottom: 16px; }
.contact-info p { font-size: 17px; color: var(--gray-600); line-height: 1.75; margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: center; gap: 16px; padding: 18px 22px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1.5px solid var(--gray-200); }
.ci-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; background: var(--sky); display: flex; align-items: center; justify-content: center; }
.ci-icon svg { width: 20px; height: 20px; }
.ci-label { font-size: 11px; font-weight: 700; font-family: var(--font-head); color: var(--gray-400); text-transform: uppercase; letter-spacing: .08em; }
.ci-val { font-size: 16px; color: var(--navy); font-weight: 600; margin-top: 2px; }
.contact-form { background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); padding: 40px; border: 1.5px solid var(--gray-200); }
.office-locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 700; font-family: var(--font-head); color: var(--gray-600); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 7px; display: block; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 12px;
  border: 1.5px solid var(--gray-200); font-family: var(--font-body);
  font-size: 14px; color: var(--gray-800); background: var(--off-white); outline: none;
  transition: border-color var(--transition); resize: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); background: var(--white); }
.form-submit {
  width: 100%; background: var(--accent); color: var(--white);
  border: none; border-radius: 12px; padding: 14px;
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.form-submit:hover { background: var(--navy); transform: translateY(-2px); }

/* ============================================================
   FOOTER
============================================================ */
footer { background: var(--navy); color: var(--white); padding: 80px 5% 32px; }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.8; margin: 16px 0 24px; max-width: 300px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  transition: var(--transition); cursor: pointer;
}
.social-btn:hover { background: var(--accent); }
.social-btn svg { width: 16px; height: 16px; fill: white; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 15px; color: rgba(255,255,255,.7); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent-bright); }
.footer-bottom {
  max-width: 1280px; margin: 28px auto 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--accent-bright); }
.footer-brand-logo {
  height: auto;
  width: 100%;
  max-width: 280px;
  object-fit: contain;
  display: block;
  margin-bottom: 24px;
}

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 176px 5% 80px; position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .14; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,31,74,.92), rgba(22,51,112,.85)); }
.page-hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(32px, 4.5vw, 56px); color: var(--white); margin: 16px 0 20px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,.78); max-width: 640px; line-height: 1.75; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 8px;
}
.breadcrumb a, .breadcrumb span { font-size: 14px; color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,.35); font-size: 16px; line-height: 1; }

/* ============================================================
   DETAIL FEATURES
============================================================ */
.detail-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.detail-feat {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; background: var(--white); border-radius: var(--radius);
  border: 1.5px solid var(--gray-200); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.detail-feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-bright); }
.df-icon { width: 48px; height: 48px; min-width: 48px; border-radius: 12px; background: var(--sky); display: flex; align-items: center; justify-content: center; }
.df-icon svg { width: 22px; height: 22px; }
.df-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.df-desc { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ============================================================
   WHY OMAN / CARDS
============================================================ */
.why-oman-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.oman-card {
  border-radius: var(--radius-lg); padding: 36px 28px; text-align: center;
  transition: var(--transition); cursor: pointer;
  border: 1.5px solid var(--gray-200); background: var(--white);
}
.oman-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent-bright); }
.oman-icon { width: 68px; height: 68px; border-radius: 20px; background: var(--sky); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.oman-icon svg { width: 32px; height: 32px; }
.oman-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.oman-card p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* ============================================================
   PROCESS STEPS
============================================================ */
.process-steps { display: flex; gap: 0; margin-top: 56px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 36px; left: calc(16.66% + 28px);
  right: calc(16.66% + 28px); height: 2px;
  background: linear-gradient(90deg, var(--accent-bright), var(--navy-light));
}
.process-step { flex: 1; text-align: center; padding: 0 12px; position: relative; z-index: 2; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--accent-bright);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 0 0 6px var(--sky);
}
.step-num span { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--accent); }
.process-step h3 { font-size: 15px; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* ============================================================
   PORTAL PAGE
============================================================ */
.portal-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.portal-feat {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  border: 1.5px solid var(--gray-200); text-align: center;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.portal-feat:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent-bright); }
.pf-icon { width: 64px; height: 64px; border-radius: 18px; background: linear-gradient(135deg, var(--accent), var(--navy-light)); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 8px 24px rgba(37,99,235,.3); }
.pf-icon svg { width: 28px; height: 28px; }
.portal-feat h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.portal-feat p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* ============================================================
   AGGREGATE / SUPPLY PAGE
============================================================ */
.supply-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.supply-img { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-xl); }
.supply-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   ABOUT / TEAM PAGE
============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.team-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1.5px solid var(--gray-200); transition: var(--transition); }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-img { aspect-ratio: 1; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-info { padding: 22px; }
.team-name { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--navy); }
.team-role { font-size: 13px; color: var(--accent); font-weight: 600; margin-top: 3px; }
.team-bio { font-size: 13px; color: var(--gray-600); line-height: 1.6; margin-top: 8px; }

/* ============================================================
   SCROLL ANIMATION
============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-right { display: none; }
  .hero-left { max-width: 100%; }
  .hero-desc { max-width: 100%; }
  .hero-stats { justify-content: center; }
  .hero-btns { justify-content: center; }
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
  .feature-split.reverse { direction: ltr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .realty-inner { grid-template-columns: 1fr; }
  .realty-img { display: none; }
  .realty-content { padding: 56px 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .chairman-grid { grid-template-columns: 1fr; }
  .chairman-img-wrap { max-width: 400px; }
  .chairman-badge { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; gap: 32px; }
  .process-steps::before { display: none; }
  .why-oman-grid { grid-template-columns: 1fr; }
  .portal-features { grid-template-columns: 1fr; }
  .supply-grid { grid-template-columns: 1fr; }
  .detail-features { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .logo-icon img { height: 48px; max-width: 180px; }
  .nav-inner { height: 80px; }
  .mobile-menu { top: 80px; }
  .section { padding: 72px 5%; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-logo { max-width: 180px; }
  .cta-banner { padding: 56px 28px; margin: 0 4% 72px; }
  .realty-content { padding: 40px 28px; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .contact-item { padding: 14px 16px; gap: 12px; }
  .contact-grid { gap: 32px; }
  .office-locations-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 500px) {
  .locations-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .office-locations-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero-stats { gap: 20px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .cta-banner { padding: 48px 20px; margin: 0 0 60px; border-radius: var(--radius-lg); }
}
