/* ============================================================
   INOVEXGI — Global Stylesheet
   inovexgi.com | Private Limited Company, London
   ============================================================ */

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

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #1a2332;
  background: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CSS Variables ── */
:root {
  --navy:      #0D1F3C;
  --navy2:     #152849;
  --steel:     #1E3A5F;
  --gold:      #C9A84C;
  --gold-lt:   #E2C07A;
  --silver:    #8A9BB0;
  --light:     #F4F6F9;
  --white:     #ffffff;
  --text:      #1a2332;
  --muted:     #5A6A7E;
  --border:    rgba(13,31,60,0.12);
  --shadow:    0 4px 24px rgba(13,31,60,0.10);
  --shadow-lg: 0 12px 48px rgba(13,31,60,0.16);
  --ff-head:   'Playfair Display', Georgia, serif;
  --ff-body:   'Lato', Arial, sans-serif;
  --radius:    2px;
  --max-w:     1180px;
  --transition: all 0.25s ease;
}

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-white { color: var(--white); }
.fw-300 { font-weight: 300; }
.fw-700 { font-weight: 700; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Gold Divider ── */
.divider {
  width: 44px; height: 3px;
  background: var(--gold);
  margin: 14px 0 22px;
}
.divider.center { margin: 14px auto 22px; }

/* ── Section Label ── */
.section-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

/* ======================================================
   HEADER / NAVIGATION
   ====================================================== */
#site-header {
  position: sticky; top: 0; z-index: 999;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head);
  font-size: 14px; font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-wordmark {
  font-family: var(--ff-head);
  font-size: 18px; font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
}
.logo-reg {
  display: block;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-top: 1px;
}

/* Nav Menu */
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.68);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active { color: var(--gold-lt); background: rgba(201,168,76,0.08); }

/* Header CTA */
.header-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.header-cta:hover { background: var(--gold-lt); }

/* Mobile hamburger (hidden by default) */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white); margin: 4px 0;
  transition: var(--transition);
}

/* ======================================================
   BUTTONS
   ====================================================== */
.btn {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px 28px;
  cursor: pointer; border: none;
  transition: var(--transition);
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-lt); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--steel); }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ======================================================
   HERO — HOMEPAGE
   ====================================================== */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 96px 40px 80px;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -120px;
  width: 480px; height: 480px;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; top: -40px; right: -60px;
  width: 300px; height: 300px;
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 6px 16px;
  margin-bottom: 28px;
}
.hero-eyebrow span {
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
}
.hero-eyebrow .dot {
  width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%;
}
.hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600; line-height: 1.2;
  color: var(--white);
  max-width: 640px;
  margin-bottom: 22px;
}
.hero h1 em { color: var(--gold-lt); font-style: normal; }
.hero-sub {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.68);
  max-width: 520px; line-height: 1.8;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex; gap: 0;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat {
  padding: 0 36px 0 0;
  margin-right: 36px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-head);
  font-size: 30px; font-weight: 600;
  color: var(--gold-lt); line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ======================================================
   TRUST BAR
   ====================================================== */
.trust-bar {
  background: var(--navy2);
  padding: 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: stretch;
}
.trust-item {
  flex: 1; text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(201,168,76,0.06); }
.trust-item-title {
  font-family: var(--ff-head);
  font-size: 13px; color: var(--gold-lt);
  margin-bottom: 3px;
}
.trust-item-sub {
  font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ======================================================
   SERVICES SECTION
   ====================================================== */
.section { padding: 80px 40px; }
.section.bg-light { background: var(--light); }
.section.bg-navy { background: var(--navy); }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head h2 {
  font-family: var(--ff-head);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600; color: var(--navy);
  margin-bottom: 14px;
}
.section-head p {
  color: var(--muted); font-size: 15px;
  max-width: 560px; margin: 0 auto;
  font-weight: 300;
}
.section-head.light h2 { color: var(--white); }
.section-head.light p { color: rgba(255,255,255,0.6); }

.services-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--white);
  padding: 32px 28px 40px;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { background: #FAFBFD; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 44px; height: 44px;
  background: rgba(13,31,60,0.05);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 20px; height: 20px; stroke: var(--navy); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 {
  font-family: var(--ff-head);
  font-size: 16px; font-weight: 600;
  color: var(--navy); margin-bottom: 10px;
  line-height: 1.3;
}
.service-card p {
  font-size: 13px; color: var(--muted);
  line-height: 1.6; margin-bottom: 20px;
}
.service-link {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 6px;
}
.service-link svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 2; transition: var(--transition); }
.service-card:hover .service-link svg { transform: translateX(3px); }

/* ======================================================
   ABOUT SECTION
   ====================================================== */
.about-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-text .section-label { display: block; }
.about-text h2 {
  font-family: var(--ff-head);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 600; color: var(--navy);
  margin-bottom: 6px;
}
.about-text p {
  font-size: 14px; color: var(--muted);
  line-height: 1.85; margin-bottom: 16px;
  font-weight: 300;
}
.about-features {
  margin: 24px 0;
  display: flex; flex-direction: column; gap: 0;
}
.about-feat {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.feat-dot {
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  margin-top: 8px; flex-shrink: 0;
}
.feat-text strong {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--navy); margin-bottom: 2px;
}
.feat-text span { font-size: 12px; color: var(--muted); }

/* CEO Card */
.ceo-card {
  background: var(--navy);
  padding: 36px;
}
.ceo-header {
  display: flex; align-items: center; gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 22px;
}
.ceo-avatar {
  width: 64px; height: 64px; flex-shrink: 0;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-size: 22px;
  font-weight: 600; color: var(--navy);
}
.ceo-name {
  font-family: var(--ff-head);
  font-size: 18px; color: var(--white); margin-bottom: 3px;
}
.ceo-title {
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.ceo-card p {
  font-size: 13px; color: rgba(255,255,255,0.68);
  line-height: 1.85; margin-bottom: 14px;
  font-weight: 300;
}
.lang-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.lang-tag {
  font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); padding: 4px 10px;
}

/* ======================================================
   TESTIMONIALS / CREDIBILITY
   ====================================================== */
.testimonials-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  padding: 32px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
}
.testimonial-text {
  font-family: var(--ff-head);
  font-size: 15px; font-style: italic;
  color: var(--navy); line-height: 1.7;
  margin-bottom: 22px;
}
.testimonial-author strong {
  display: block; font-size: 13px;
  font-weight: 700; color: var(--navy);
}
.testimonial-author span {
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.04em;
}

/* ======================================================
   CTA BANNER
   ====================================================== */
.cta-banner {
  background: var(--navy);
  padding: 72px 40px;
}
.cta-banner-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.cta-banner h2 {
  font-family: var(--ff-head);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600; color: var(--white);
  margin-bottom: 8px;
}
.cta-banner p {
  font-size: 14px; color: rgba(255,255,255,0.58);
  font-weight: 300;
}

/* ======================================================
   CONTACT FORM
   ====================================================== */
.contact-section { padding: 80px 40px; background: var(--light); }
.contact-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; align-items: start;
}
.contact-info h2 {
  font-family: var(--ff-head);
  font-size: 28px; font-weight: 600;
  color: var(--navy); margin-bottom: 14px;
}
.contact-info p {
  font-size: 14px; color: var(--muted);
  font-weight: 300; line-height: 1.85;
  margin-bottom: 28px;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px;
}
.cd-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.cd-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.cd-text strong {
  display: block; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--navy); margin-bottom: 2px;
}
.cd-text span { font-size: 13px; color: var(--muted); }

.contact-form { background: var(--white); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 11px;
  font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--ff-body); font-size: 13px;
  color: var(--text); border-radius: var(--radius);
  transition: var(--transition);
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 11px; color: var(--muted);
  margin-top: 12px; font-style: italic;
}

/* ======================================================
   FOOTER
   ====================================================== */
#site-footer {
  background: #080F1E;
  padding: 56px 40px 0;
}
.footer-main {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo-wordmark { font-size: 20px; margin-bottom: 14px; display: block; }
.footer-brand p {
  font-size: 12px; color: rgba(255,255,255,0.38);
  line-height: 1.8; max-width: 240px; font-weight: 300;
}
.footer-col h4 {
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 18px;
}
.footer-col a, .footer-col p {
  display: block; font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px; line-height: 1.5;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold-lt); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding: 20px 0;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p {
  font-size: 11px; color: rgba(255,255,255,0.25);
}

/* ======================================================
   PAGE HERO (inner pages)
   ====================================================== */
.page-hero {
  background: var(--navy);
  padding: 72px 40px 60px;
  border-bottom: 3px solid var(--gold);
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.breadcrumb {
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.35); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.25); margin: 0 8px; }
.page-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600; color: var(--white);
  margin-bottom: 16px; max-width: 680px;
  line-height: 1.2;
}
.page-hero p {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 600px; line-height: 1.75;
}

/* ======================================================
   SERVICE PAGE LAYOUT
   ====================================================== */
.service-layout {
  max-width: var(--max-w); margin: 0 auto;
  padding: 64px 40px;
  display: grid; grid-template-columns: 1fr 340px;
  gap: 56px; align-items: start;
}
.service-main h2 {
  font-family: var(--ff-head);
  font-size: 26px; font-weight: 600;
  color: var(--navy); margin-bottom: 18px;
}
.service-main h3 {
  font-family: var(--ff-head);
  font-size: 20px; font-weight: 600;
  color: var(--navy); margin: 36px 0 12px;
}
.service-main p {
  font-size: 14px; color: var(--muted);
  line-height: 1.9; margin-bottom: 18px;
  font-weight: 300;
}
.feature-list { margin: 8px 0 28px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 13px; color: var(--muted); line-height: 1.5;
}
.feature-list li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); margin-top: 7px; flex-shrink: 0;
}

/* Sidebar */
.service-sidebar { position: sticky; top: 88px; }
.sidebar-cta {
  background: var(--navy);
  padding: 30px;
  margin-bottom: 24px;
}
.sidebar-cta h4 {
  font-family: var(--ff-head);
  font-size: 18px; font-weight: 600;
  color: var(--white); margin-bottom: 12px;
}
.sidebar-cta p {
  font-size: 13px; color: rgba(255,255,255,0.62);
  line-height: 1.7; margin-bottom: 22px;
  font-weight: 300;
}
.sidebar-cta .btn { display: block; text-align: center; width: 100%; }
.sidebar-info {
  background: var(--light);
  padding: 24px;
  border-left: 3px solid var(--gold);
}
.sidebar-info h5 {
  font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 14px;
}
.sidebar-info ul li {
  font-size: 13px; color: var(--navy);
  padding: 7px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.sidebar-info ul li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%; flex-shrink: 0;
}

/* Why Choose Us Grid */
.why-section { background: var(--light); padding: 64px 40px; }
.why-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px; background: var(--border);
}
.why-item {
  background: var(--white);
  padding: 32px 28px;
  border-top: 3px solid var(--navy);
  transition: var(--transition);
}
.why-item:hover { border-top-color: var(--gold); }
.why-item h4 {
  font-family: var(--ff-head);
  font-size: 16px; font-weight: 600;
  color: var(--navy); margin-bottom: 10px;
}
.why-item p {
  font-size: 13px; color: var(--muted); line-height: 1.65;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header-inner { padding: 0 20px; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--navy); padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 998;
  }
  .hero { padding: 56px 20px 48px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat { border-right: none; padding: 0; margin: 0; }
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-item { min-width: 50%; }
  .section { padding: 52px 20px; }
  .container { padding: 0 20px; }
  .cta-banner { padding: 52px 20px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 20px 40px; }
  .service-layout { padding: 40px 20px; }
  .why-section { padding: 40px 20px; }
}
