/* ═══════════════════════════════════════════
   AZARIAH SHIP MANAGEMENT — GLOBAL STYLES
═══════════════════════════════════════════ */

:root {
  --navy:      #0a1628;
  --navy-mid:  #0f2040;
  --navy-light:#162d56;
  --gold:      #c9a84c;
  --gold-light:#e8c76a;
  --gold-pale: #f5e6b8;
  --white:     #ffffff;
  --off-white: #f8f9fc;
  --text:      #1e2d45;
  --muted:     #6b7d96;
  --border:    #e2e8f0;
  --gradient:  linear-gradient(135deg, #0a1628 0%, #162d56 50%, #1a3a6e 100%);
  --shadow-sm: 0 2px 8px rgba(10,22,40,.10);
  --shadow-md: 0 8px 32px rgba(10,22,40,.15);
  --shadow-lg: 0 20px 60px rgba(10,22,40,.25);
  --radius:    16px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* Arabic RTL */
[dir="rtl"] { font-family: 'Noto Naskh Arabic', 'Inter', sans-serif; }

/* ══════════════════════ NAVBAR ══════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
  padding: 0 24px;
}
.nav-container {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 140px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 130px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900;
  color: var(--gold); letter-spacing: .08em;
}
.logo-sub { font-size: .65rem; color: rgba(255,255,255,.7); letter-spacing: .05em; text-transform: uppercase; }

/* Hero logo */
.hero-logo { width: 340px; height: 340px; object-fit: contain; margin-bottom: 24px; display: block; margin-left: auto; margin-right: auto; }

/* Footer logo */
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-img { height: 100px; width: auto; }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.85);
  letter-spacing: .03em; position: relative; padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--gold); border-radius: 2px; transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }


.nav-right { display: flex; align-items: center; gap: 16px; }

/* Language Toggle */
.lang-toggle {
  display: flex; align-items: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-size: .72rem; font-weight: 600;
  color: rgba(255,255,255,.7);
  padding: 5px 10px; border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
}
.lang-btn:hover { color: var(--white); background: rgba(255,255,255,.15); }
.lang-btn.active { background: var(--gold); color: var(--navy); }

.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(--white); border-radius: 2px; transition: var(--transition); }

/* ══════════════════════ HERO ══════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #1a2f50 50%, #0a1628 100%);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
  pointer-events: none;
}
.hero-video::-webkit-media-controls { display: none !important; }
.hero-video::-webkit-media-controls-enclosure { display: none !important; }
.hero-video::-webkit-media-controls-panel { display: none !important; }
.hero-video::-webkit-media-controls-play-button { display: none !important; }
.hero-video::-webkit-media-controls-start-playback-button { display: none !important; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,.08) 0%,
    rgba(10,22,40,.15) 50%,
    rgba(10,22,40,.30) 100%
  );
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; z-index: 2; }
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(201,168,76,.25);
  animation: float linear infinite;
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center; color: var(--white);
  padding: 0 24px; max-width: 820px;
}
.hero-badge {
  display: inline-block;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(201,168,76,.6);
  color: var(--gold-light);
  font-size: .78rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; padding: 6px 20px; border-radius: 50px;
  margin-bottom: 28px;
  text-shadow: 1px 1px 0 #000;
}
.hero-title { margin-bottom: 16px; }
.hero-line1 {
  display: block;
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 900; color: var(--gold);
  letter-spacing: .06em;
  text-shadow: 2px 2px 0 #000, 0 0 30px rgba(0,0,0,.9), 0 0 60px rgba(0,0,0,.7);
  animation: fadeUp .8s ease both;
}
.hero-line2 {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 400; color: var(--white);
  letter-spacing: .04em;
  text-shadow: 1px 1px 0 #000, 0 0 20px rgba(0,0,0,.9);
  animation: fadeUp .8s .15s ease both;
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600; color: var(--gold-light);
  margin-bottom: 12px;
  text-shadow: 1px 1px 0 #000, 0 0 20px rgba(0,0,0,.9);
  animation: fadeUp .8s .25s ease both;
}
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,.9);
  margin-bottom: 40px;
  text-shadow: 1px 1px 0 #000, 0 0 16px rgba(0,0,0,.9);
  animation: fadeUp .8s .35s ease both;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeUp .8s .45s ease both;
}
.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: .9rem; letter-spacing: .04em;
  padding: 14px 36px; border-radius: 50px;
  transition: all var(--transition);
  border: 2px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.4); }
.btn-outline {
  display: inline-block;
  background: transparent; color: var(--white);
  font-weight: 600; font-size: .9rem; letter-spacing: .04em;
  padding: 14px 36px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,.4);
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  animation: fadeUp .8s .55s ease both;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: .75rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: scrollPulse 2s ease infinite;
}

/* ══════════════════════ SECTIONS ══════════════════════ */
.section { padding: 100px 0; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 32px; }

.section-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy); margin-bottom: 20px;
}
.section-desc { font-size: 1.05rem; color: var(--muted); max-width: 520px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

/* ══════════════════════ ABOUT ══════════════════════ */
.about { background: var(--off-white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px;
  align-items: center; margin-bottom: 72px;
}
.about-visual { position: relative; }
.about-image-wrap {
  position: relative;
  width: 100%; padding-bottom: 75%;
  border-radius: var(--radius); overflow: hidden;
}
.about-img-bg {
  position: absolute; inset: 0;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
}
.about-img-bg::before {
  content: '⚓';
  font-size: 8rem; opacity: .1;
  position: absolute;
}
.about-img-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><circle cx="200" cy="150" r="120" fill="none" stroke="%23c9a84c" stroke-width="0.5" opacity="0.3"/><circle cx="200" cy="150" r="80" fill="none" stroke="%23c9a84c" stroke-width="0.5" opacity="0.4"/><circle cx="200" cy="150" r="40" fill="none" stroke="%23c9a84c" stroke-width="1" opacity="0.5"/></svg>') center center / contain no-repeat;
}
.about-badge-float {
  position: absolute; bottom: 16px; right: 16px;
  background: var(--gold); color: var(--navy);
  border-radius: var(--radius); padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .85rem;
  box-shadow: var(--shadow-md);
}
.badge-icon { font-size: 1.2rem; color: var(--navy); }
.about-cards-side {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 32px;
}
.side-card {
  background: var(--white); border-radius: 12px;
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-sm);
  font-weight: 600; font-size: .875rem; color: var(--navy);
  border-left: 3px solid var(--gold);
}
.side-icon { font-size: 1.2rem; color: var(--gold); }

.about-content .section-label { text-align: left; }
.about-content .section-title { color: var(--navy); }
.about-lead { font-size: 1.08rem; color: var(--text); font-weight: 500; margin-bottom: 16px; }
.about-text { color: var(--muted); margin-bottom: 28px; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pillar {
  display: flex; align-items: center; gap: 8px;
  font-size: .875rem; font-weight: 600; color: var(--navy);
}
.pillar-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vm-card {
  border-radius: var(--radius); padding: 36px;
  position: relative; overflow: hidden;
}
.vm-card.vision { background: var(--gradient); color: var(--white); }
.vm-card.mission { background: var(--white); border: 2px solid var(--border); }
.vm-card.mission h3, .vm-card.mission p { color: var(--text); }
.vm-icon { font-size: 2.4rem; margin-bottom: 16px; color: var(--gold); }
.vm-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.vm-card.vision p { color: rgba(255,255,255,.8); }
.vm-card::after {
  content: '';
  position: absolute; right: -20px; bottom: -20px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(201,168,76,.08);
}

/* ══════════════════════ SERVICES ══════════════════════ */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--off-white);
  border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  background: var(--white);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(201,168,76,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: background var(--transition);
}
.service-card:hover .service-icon-wrap { background: var(--gold); }
.service-icon { font-size: 1.6rem; color: var(--gold); }
.service-card:hover .service-icon { color: var(--navy); }
.service-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: .875rem; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.service-list {
  list-style: none; margin-bottom: 20px; flex: 1;
  display: flex; flex-direction: column; gap: 6px;
}
.service-list li {
  font-size: .8rem; color: var(--text);
  padding-left: 16px; position: relative;
}
.service-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--gold); font-size: .75rem;
}
.service-link {
  font-size: .8rem; font-weight: 700; color: var(--gold);
  letter-spacing: .05em; transition: gap var(--transition);
}
.service-link:hover { color: var(--navy); }

/* ══════════════════════ WHY ══════════════════════ */
.why { position: relative; padding: 100px 0; color: var(--white); overflow: hidden; }
.why-bg { position: absolute; inset: 0; background: var(--gradient); }
.why::after {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><polygon points="100,10 190,190 10,190" fill="%23c9a84c" opacity="0.03"/></svg>') repeat;
  background-size: 80px;
}
.why .container { position: relative; z-index: 1; }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-desc { color: rgba(255,255,255,.65); margin: 0 auto; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 28px;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.why-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(201,168,76,.4);
  transform: translateY(-4px);
}
.why-icon { font-size: 2rem; margin-bottom: 14px; color: var(--gold); }
.why-card h4 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; color: var(--gold-light); margin-bottom: 8px; }
.why-card p { font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.65; }

/* ══════════════════════ QUOTE BANNER ══════════════════════ */
.quote-banner {
  background: var(--gold);
  padding: 64px 32px; text-align: center;
}
.quote-banner .container { max-width: 860px; }
.quote-banner blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.4; margin-bottom: 16px;
}
.quote-banner cite { font-size: .875rem; color: rgba(10,22,40,.6); font-style: normal; }

/* ══════════════════════ CONTACT ══════════════════════ */
.contact { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; }

.contact-info h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 28px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
}
.ci-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; color: var(--gold); width: 20px; text-align: center; }
.contact-item a { color: var(--gold); font-weight: 500; }
.contact-item a:hover { color: var(--navy); }

.contact-support {
  display: flex; align-items: center; gap: 12px;
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.3);
  border-radius: 50px; padding: 10px 20px; margin-top: 32px;
  font-size: .85rem; font-weight: 600; color: var(--navy);
}
.support-pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,197,94,.4);
  animation: pulse 2s infinite;
}

.contact-partner {
  margin-top: 20px; font-size: .9rem; color: var(--muted);
  line-height: 1.7; border-left: 3px solid var(--gold); padding-left: 14px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius); padding: 44px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--text); text-transform: uppercase; letter-spacing: .06em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: .9rem; color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; }

/* ══════════════════════ FOOTER ══════════════════════ */
.footer { background: var(--navy); color: var(--white); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .logo-main { color: var(--gold); font-size: 1.5rem; }
.footer-brand .logo-sub { color: rgba(255,255,255,.5); }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .875rem; margin-top: 16px; line-height: 1.7; }
.footer h4 { font-family: 'Inter', sans-serif; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 18px; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer li, .footer-services li { font-size: .875rem; color: rgba(255,255,255,.55); cursor: default; }
.footer-links li a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-links li a:hover { color: var(--gold); }
.footer-contact p { font-size: .875rem; color: rgba(255,255,255,.55); margin-bottom: 8px; line-height: 1.6; }
.footer-contact a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding: 24px 0; font-size: .8rem; color: rgba(255,255,255,.35);
}
.footer-uae { color: rgba(255,255,255,.45); }

/* ══════════════════════ HOME ABOUT ══════════════════════ */
.home-about { background: var(--white); }
.home-about-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: center;
}

/* Left column */
.home-welcome-label {
  display: flex; align-items: center; gap: 12px;
  font-size: .75rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.home-welcome-label::after {
  content: ''; flex: 1; max-width: 48px; height: 2px; background: var(--gold); border-radius: 2px;
}
.home-about-heading {
  display: flex; flex-direction: column; margin-bottom: 16px; line-height: 1.05;
}
.hah-main {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900; color: var(--navy);
  letter-spacing: .02em; text-transform: uppercase;
}
.hah-gold {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900; color: var(--gold);
  letter-spacing: .02em; text-transform: uppercase;
}
.home-about-tagline {
  font-size: 1rem; font-weight: 500; color: var(--navy); margin-bottom: 14px;
}
.home-about-divider {
  width: 52px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 18px;
}
.home-about-sub {
  font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 18px;
}
.home-about-left p {
  color: var(--muted); font-size: .92rem; line-height: 1.8; margin-bottom: 12px;
}
.btn-icon-left {
  display: inline-flex; align-items: center; gap: 8px;
}

/* Right column — photo grid */
.home-about-right { display: flex; flex-direction: column; gap: 20px; }
.hap-grid {
  position: relative;
  display: grid; grid-template-columns: 1.7fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 10px; height: 380px;
}
.hap-main {
  grid-column: 1; grid-row: 1 / 3;
  border-radius: 16px; overflow: hidden;
}
.hap-side {
  grid-column: 2; grid-row: 1 / 3;
  display: flex; flex-direction: column; gap: 10px;
}
.hap-small {
  flex: 1; border-radius: 12px; overflow: hidden;
}
.hap-slot {
  background: var(--off-white);
  border: 2px dashed rgba(201,168,76,.35);
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.hap-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hap-hint {
  font-size: .75rem; color: var(--muted); font-weight: 500; pointer-events: none;
}
.hap-anchor-badge {
  position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%);
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; box-shadow: 0 4px 16px rgba(201,168,76,.25);
  z-index: 5;
}

/* Stats cards */
.home-about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 36px;
}
.has-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
  display: flex; align-items: center; gap: 16px;
  transition: all var(--transition);
}
.has-card:hover { border-color: var(--gold); background: var(--white); box-shadow: var(--shadow-sm); }
.has-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0; color: var(--white);
}
.has-info { display: flex; flex-direction: column; }
.has-num { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; color: var(--navy); line-height: 1; }
.has-label { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: 4px; }

@media (max-width: 900px) {
  .home-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .hap-grid { height: 300px; }
  .hap-anchor-badge { bottom: -20px; width: 56px; height: 56px; font-size: 1.5rem; }
}

/* ══════════════════════ PAGE HERO (inner pages) ══════════════════════ */
.page-hero {
  position: relative; min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient); overflow: hidden;
  padding-top: 76px;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23c9a84c" fill-opacity="0.05" d="M0,160 C360,220 720,100 1080,160 C1260,190 1380,140 1440,120 L1440,320 L0,320 Z"/></svg>') no-repeat bottom center / cover;
}
.page-hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 48px 24px;
}
.page-hero-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem); color: var(--white); margin-bottom: 20px;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.55);
}
.breadcrumb a { color: var(--gold); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }

/* ══════════════════════ NAV ACTIVE LINK ══════════════════════ */
.nav-links a.active { color: var(--gold) !important; }
.nav-links a.active::after { width: 100% !important; }

/* ══════════════════════ INTRO STRIP ══════════════════════ */
.intro-strip { background: var(--white); padding: 48px 0; border-bottom: 1px solid var(--border); }
.intro-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.intro-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; border-radius: var(--radius);
  transition: background var(--transition);
}
.intro-item:hover { background: var(--off-white); }
.intro-icon { font-size: 2rem; flex-shrink: 0; color: var(--gold); }
.intro-icon i { font-size: inherit; color: inherit; }
.intro-item strong { display: block; color: var(--navy); font-size: .95rem; margin-bottom: 4px; }
.intro-item p { color: var(--muted); font-size: .8rem; margin: 0; }

/* ══════════════════════ SERVICE DETAIL (services page) ══════════════════════ */
.service-detail {
  display: grid; grid-template-columns: 140px 1fr; gap: 48px;
  align-items: flex-start; padding: 56px 0;
}
.service-detail.reverse { grid-template-columns: 1fr 140px; }
.service-detail.reverse .service-detail-icon { order: 2; }
.service-detail.reverse .service-detail-body { order: 1; }
.service-detail-icon {
  width: 100px; height: 100px; border-radius: 24px;
  background: rgba(201,168,76,.1); display: flex; align-items: center;
  justify-content: center; font-size: 2.4rem; color: var(--gold);
  flex-shrink: 0; margin-top: 8px;
}
.service-detail-body .section-label { margin-bottom: 4px; }
.service-detail-body .section-title { font-size: 1.8rem; margin-bottom: 16px; }
.service-detail-body > p { color: var(--muted); margin-bottom: 24px; line-height: 1.75; }
.service-detail-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px;
}
.sdl-item {
  display: flex; gap: 8px; font-size: .875rem; color: var(--text);
}
.sdl-item span:first-child { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.sdl-title {
  font-size: .72rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.service-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ══════════════════════ TEAM CARDS (about page) ══════════════════════ */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--border);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.team-icon { font-size: 2rem; margin-bottom: 14px; color: var(--gold); }
.team-card h4 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.team-card p { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════ ANIMATIONS ══════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%   { transform: translateY(0) scale(1); opacity: .6; }
  50%  { transform: translateY(-60px) scale(1.1); opacity: .3; }
  100% { transform: translateY(-120px) scale(.9); opacity: 0; }
}
@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: .4; }
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  70%  { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════ RESPONSIVE ══════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 460px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .intro-strip-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 28px; }
  .service-detail.reverse { grid-template-columns: 1fr; }
  .service-detail.reverse .service-detail-icon { order: 0; }
  .service-detail.reverse .service-detail-body { order: 0; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }
  .navbar { padding: 0 12px; }
  .nav-container { height: 90px; padding: 0; }
  .logo-img { height: 72px; }
  .logo-main { font-size: 1rem; }
  .logo-sub { font-size: .55rem; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 90px; left: 0; right: 0; background: rgba(10,22,40,.98); padding: 16px 0; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; display: block; font-size: .9rem; }
  .hamburger { display: flex; }
  .hero-content { padding: 90px 16px 0; }
  .page-hero { padding-top: 90px; }
  .hero-logo { width: 180px; height: 180px; }
  .hero-stats { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
  .stat-num { font-size: 1.3rem; }
  .section-title { font-size: 1.6rem; }
  .home-about-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .has-card { padding: 14px; gap: 10px; }
  .hap-anchor-badge { display: none; }
  .service-detail { gap: 20px; }
  .service-detail.reverse .service-detail-icon { order: 0; }
  .service-detail.reverse .service-detail-body { order: 0; }
  .about-cards-side { flex-direction: row; flex-wrap: wrap; }
  .side-card { flex: 1 1 120px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-logo-wrap { justify-content: flex-start; }
  .footer-logo-img { height: 70px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .lang-toggle { gap: 1px; }
  .lang-btn { padding: 4px 7px; font-size: .65rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .quote-banner blockquote { font-size: 1.2rem; }
  .btn-primary, .btn-outline { padding: 12px 24px; font-size: .85rem; }
  .intro-strip { padding: 32px 0; }
  .intro-item { padding: 12px; }
}
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .hero-content { padding-top: 100px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-logo { width: 140px; height: 140px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .intro-strip-grid { grid-template-columns: 1fr; }
  .service-detail-list { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .home-about-stats { grid-template-columns: 1fr; }
  .about-cards-side { flex-direction: column; }
  .has-card { padding: 12px; }
  .section-header { margin-bottom: 36px; }
  .footer-logo-img { height: 60px; }
  .hap-grid { height: 240px; }
  .hero-stats { gap: 12px; }
  .why-card { padding: 20px 16px; }
}

/* ══════════════════════ RTL SUPPORT ══════════════════════ */
[dir="rtl"] .about-content .section-label { text-align: right; }
[dir="rtl"] .logo-text { align-items: flex-end; }
[dir="rtl"] .pillar-dot { margin-left: 0; margin-right: 0; }
[dir="rtl"] .service-list li { padding-left: 0; padding-right: 16px; }
[dir="rtl"] .service-list li::before { left: auto; right: 0; content: '←'; }
[dir="rtl"] .contact-item { text-align: right; }
[dir="rtl"] .vm-card.vision { text-align: right; }
[dir="rtl"] .footer-brand { text-align: right; }
