/* ===================== ELOUD LTD — Design System ===================== */
:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --charcoal: #1e1e1e;
  --gold: #c9a227;
  --gold-light: #e6c95c;
  --gold-pale: #f4e9c9;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --gray-50: #f4f3f1;
  --gray-100: #e9e7e2;
  --gray-400: #9a968c;
  --gray-600: #6b675f;
  --gray-800: #322f2a;
  --text: #201e1a;

  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --gold-gradient: linear-gradient(135deg, #7a6118 0%, #d4af37 25%, #f4e5b2 50%, #c9a227 75%, #8a6d1a 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.18);
  --radius: 10px;
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--black); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-head { max-width: 760px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 16px; }
.section-head p { color: var(--gray-600); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold-gradient);
  background-size: 200% 200%;
  color: var(--black);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { background-position: 100% 0; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-dark {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,162,39,0.15);
  transition: background 0.3s ease;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 44px; width: 44px; border-radius: 8px; object-fit: cover; }
.brand-name { font-family: var(--font-head); color: var(--white); font-size: 1.25rem; letter-spacing: 0.02em; }
.brand-name span { color: var(--gold); }

.nav-desktop { display: flex; align-items: center; gap: 34px; }
.nav-desktop a {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--gold-light); }
.nav-desktop a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
}
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-cta .btn { padding: 11px 24px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.25s ease; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 78px; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 999;
  padding: 32px 24px;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: var(--white);
  font-size: 1.15rem;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a.active { color: var(--gold); }
.mobile-menu .btn { margin-top: 24px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(10,10,10,0.94) 10%, rgba(10,10,10,0.72) 55%, rgba(10,10,10,0.4) 100%),
    repeating-linear-gradient(115deg, #1a1a1a 0px, #1a1a1a 2px, #0e0e0e 2px, #0e0e0e 120px);
  color: var(--white);
  padding-top: 78px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 140%;
  background: radial-gradient(circle, rgba(201,162,39,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { max-width: 680px; position: relative; z-index: 2; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  color: var(--white);
  margin-bottom: 22px;
}
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.page-hero {
  position: relative;
  padding: 180px 0 90px;
  background:
    linear-gradient(120deg, rgba(10,10,10,0.95), rgba(10,10,10,0.8)),
    repeating-linear-gradient(115deg, #1a1a1a 0px, #1a1a1a 2px, #0e0e0e 2px, #0e0e0e 120px);
  color: var(--white);
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(2.1rem, 4vw, 3rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { margin-top: 22px; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.breadcrumb a { color: var(--gold-light); }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  padding: 26px 0;
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: center;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gray-800);
}
.trust-item svg { flex-shrink: 0; color: var(--gold); width: 18px; height: 18px; }

/* ---------- About preview / two-col ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
  aspect-ratio: 4/3.2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-media .badge-frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 6px;
  pointer-events: none;
}
.split-media img.logo-mark { width: 130px; opacity: 0.92; }
.stat-float {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 22px 26px;
  text-align: center;
}
.stat-float .num { font-family: var(--font-head); font-size: 2rem; color: var(--gold); font-weight: 700; }
.stat-float .lbl { font-size: 0.78rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,162,39,0.35); }
.card-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; color: var(--gold); }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--gray-600); font-size: 0.95rem; }
.card a.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 600; font-size: 0.88rem; color: var(--black); }
.card a.card-link:hover { color: var(--gold); }

.service-card { position: relative; }
.service-card .num-tag {
  position: absolute; top: 28px; right: 28px;
  font-family: var(--font-head); font-size: 1.6rem;
  color: var(--gray-100);
}

/* ---------- Dark section (Why choose) ---------- */
.dark-section { background: var(--black); color: var(--white); }
.dark-section .section-head h2, .dark-section h3 { color: var(--white); }
.dark-section .section-head p { color: rgba(255,255,255,0.65); }
.feature-item { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.feature-item:last-child { border-bottom: none; }
.feature-item .f-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(201,162,39,0.12);
  display: flex; align-items: center; justify-content: center;
}
.feature-item .f-icon svg { width: 22px; height: 22px; color: var(--gold); }
.feature-item h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 6px; }
.feature-item p { color: rgba(255,255,255,0.62); font-size: 0.92rem; }

/* ---------- Process steps ---------- */
.process-track { position: relative; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 28px; left: 6%; right: 6%;
  height: 1px;
  background: var(--gray-100);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step .step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  color: var(--black);
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.step h4 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: 0.87rem; color: var(--gray-600); }

/* ---------- Stats ---------- */
.stats-bar {
  background: var(--gold-gradient);
  color: var(--black);
}
.stats-bar .grid-4 { text-align: center; }
.stats-bar .stat-num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; }
.stats-bar .stat-lbl { font-size: 0.88rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 6px; }

/* ---------- Industries ---------- */
.industry-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.industry-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.industry-card .ind-top {
  background: var(--black);
  color: var(--white);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 12px;
}
.industry-card .ind-top svg { width: 22px; height: 22px; color: var(--gold); }
.industry-card .ind-top h3 { color: var(--white); font-size: 1.05rem; }
.industry-card .ind-body { padding: 22px 24px; }
.industry-card .ind-tagline { color: var(--gold); font-weight: 600; font-size: 0.85rem; margin-bottom: 10px; }
.industry-card p.ind-desc { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 16px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list span { background: var(--gray-50); color: var(--gray-800); font-size: 0.78rem; padding: 5px 12px; border-radius: 999px; }
.ind-benefits { margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--gray-100); }
.ind-benefits li { font-size: 0.86rem; color: var(--gray-600); padding: 4px 0; display: flex; gap: 8px; }
.ind-benefits li::before { content: "✓"; color: var(--gold); font-weight: 700; }

/* ---------- Testimonial / CTA ---------- */
.testimonial-box {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 56px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  border: 1px dashed var(--gray-100);
}
.testimonial-box svg { color: var(--gold); width: 34px; height: 34px; margin-bottom: 18px; }
.testimonial-box p { font-size: 1.1rem; color: var(--gray-800); font-style: italic; margin-bottom: 14px; }
.testimonial-box small { color: var(--gray-600); }

.cta-band {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(201,162,39,0.18), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.7); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
}
.faq-q .plus { font-size: 1.4rem; color: var(--gold); transition: transform 0.25s ease; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--gray-600);
  font-size: 0.95rem;
}
.faq-a-inner { padding-bottom: 22px; }
.faq-item.open .faq-a { max-height: 300px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info-item .ci-icon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%;
  background: var(--black); display: flex; align-items: center; justify-content: center;
}
.contact-info-item .ci-icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-info-item h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: var(--gray-600); font-size: 0.94rem; }

.form-card { background: var(--gray-50); border-radius: var(--radius); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--gray-800); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--gray-400); margin-top: 14px; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-100); height: 340px; }

.whatsapp-fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 28px; height: 28px; color: white; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black-soft); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 48px; padding-bottom: 56px; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; color: rgba(255,255,255,0.55); max-width: 320px; }
.footer-col h5 { color: var(--white); font-size: 0.92rem; margin-bottom: 20px; letter-spacing: 0.03em; text-transform: uppercase; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s ease; }
.footer-col ul a:hover { color: var(--gold); }
.social-row { display: flex; gap: 12px; margin-top: 20px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.social-row a:hover { background: var(--gold); }
.social-row a svg { width: 17px; height: 17px; color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Values grid (about page) ---------- */
.value-card { text-align: center; padding: 30px 20px; }
.value-card .v-icon {
  width: 60px; height: 60px; margin: 0 auto 16px;
  border-radius: 50%; border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.value-card .v-icon svg { width: 26px; height: 26px; color: var(--gold); }
.value-card h4 { font-size: 1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.87rem; color: var(--gray-600); }

.timeline-block { display: flex; gap: 24px; margin-bottom: 40px; }
.timeline-block .t-mark { flex-shrink: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); margin-top: 8px; }
.timeline-block .t-line { width: 1px; background: var(--gray-100); flex: 1; margin-top: 4px; }

.list-check { margin-top: 10px; }
.list-check li { display: flex; gap: 10px; padding: 6px 0; font-size: 0.94rem; color: var(--gray-600); }
.list-check li::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-row span {
  background: var(--white); border: 1px solid var(--gray-100);
  padding: 8px 18px; border-radius: 999px; font-size: 0.85rem; font-weight: 500; color: var(--gray-800);
}

.bg-off { background: var(--off-white); }
.bg-gray { background: var(--gray-50); }

/* ---------- Service detail sections ---------- */
.service-detail { border-bottom: 1px solid var(--gray-100); padding: 80px 0; }
.service-detail:nth-child(even) { background: var(--gray-50); }
.service-detail-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.service-icon-block {
  width: 76px; height: 76px; border-radius: 16px;
  background: var(--black); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.service-icon-block svg { width: 36px; height: 36px; color: var(--gold); }
.service-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 28px; }
.service-cols h4 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--gold); margin-bottom: 14px; }

/* ---------- Careers ---------- */
.perk-card { display: flex; gap: 16px; align-items: flex-start; padding: 24px; }

/* ---------- Anchor offset ---------- */
[id] { scroll-margin-top: 96px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===================== Responsive ===================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-desktop, .nav-cta .btn-outline-dark, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 64px 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat-float { position: static; margin-top: -40px; margin-left: 24px; }
}
