/* =====================================================
   JSONS TECHNICAL GLOBAL SERVICES — WEBSITE STYLES
   Aesthetic: Industrial Luxury | Deep Navy + Gold
   ===================================================== */

:root {
  --navy: #0B1F3A;
  --navy-deep: #071629;
  --navy-mid: #132A4E;
  --navy-light: #1E3D6B;
  --gold: #C8952A;
  --gold-light: #DFB24A;
  --gold-pale: #F5E8C8;
  --white: #FFFFFF;
  --off-white: #F4F1EB;
  --grey-100: #E8E6E1;
  --grey-300: #A8A39A;
  --grey-500: #6B6560;
  --text-dark: #1A1612;
  --text-body: #3A3530;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 4px 30px rgba(200, 149, 42, 0.2);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 600; }
em { font-style: italic; }
a { text-decoration: none; color: inherit; }
p { line-height: 1.75; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 100px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-tag {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-tag.light { color: var(--gold-light); }
.section-title { color: var(--navy); margin-bottom: 1.5rem; }
.section-title.light { color: var(--white); }
.section-title em { color: var(--gold); font-style: italic; }
.section-sub { font-size: 1.1rem; color: var(--grey-300); max-width: 560px; margin: 0 auto 3rem; }
.section-header-centered { text-align: center; margin-bottom: 4rem; }
.gold { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== ANIMATIONS ===== */
.line-reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: revealUp 0.8s ease forwards;
}
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
  padding: 0;
}
#navbar.scrolled {
  background: rgba(7, 22, 41, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
}
.logo-icon {
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.logo-text {
  font-family: var(--font-cond);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  display: block;
  margin-top: 2px;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--gold-light) !important; }
.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);
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,149,42,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,149,42,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(200,149,42,0.12) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-tag {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.tag-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-title {
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-title .gold { display: block; }
.hero-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-family: var(--font-cond);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-cond);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(200,149,42,0.6), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 0.75rem 0;
  white-space: nowrap;
}
.ticker {
  display: inline-block;
  animation: ticker 30s linear infinite;
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-deep);
}
.ticker span { margin: 0 1rem; }
.ticker-dot { color: var(--navy-light); font-size: 0.5rem; vertical-align: middle; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== ABOUT ===== */
.about { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-body {
  color: var(--text-body);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.about-pillars {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.pillar-icon {
  font-size: 1.25rem;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.pillar strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; font-family: var(--font-cond); letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.85rem; }
.pillar p { font-size: 0.9rem; color: var(--grey-500); margin: 0; }

/* About visual */
.about-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
}
.av-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 8px;
  padding: 1.2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.av-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 16px 50px rgba(0,0,0,0.15); }
.av-card-1 { top: 0; left: 5%; width: 44%; background: var(--navy); color: white; border-color: var(--navy); }
.av-card-2 { top: 5%; right: 0; width: 44%; background: var(--gold); color: var(--navy-deep); }
.av-card-3 { top: 40%; left: 0; width: 44%; }
.av-card-4 { bottom: 15%; right: 3%; width: 44%; background: var(--navy-mid); color: white; border-color: var(--navy-mid); }
.av-card-5 { bottom: 0; left: 28%; width: 44%; border: 2px solid var(--gold); }
.av-number {
  font-family: var(--font-cond);
  font-size: 1.5rem;
  font-weight: 800;
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.av-card-1 .av-number, .av-card-4 .av-number { color: var(--gold); opacity: 1; }
.av-card-2 .av-number { color: var(--navy-deep); }
.av-label { font-size: 0.8rem; font-weight: 600; font-family: var(--font-cond); letter-spacing: 0.05em; line-height: 1.3; }
.av-center-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--navy-deep);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-weight: 800;
  z-index: 10;
  box-shadow: 0 0 0 4px var(--off-white), var(--shadow-gold);
}
.av-center-badge span { font-size: 1.6rem; line-height: 1; }
.av-center-badge small { font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }

/* ===== SERVICES ===== */
.services { background: var(--navy); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: attr(data-num);
  position: absolute;
  top: -0.5rem;
  right: 1.5rem;
  font-family: var(--font-cond);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(200,149,42,0.06);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}
.service-card:hover {
  background: rgba(200,149,42,0.07);
  border-color: rgba(200,149,42,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.service-card:hover::before { color: rgba(200,149,42,0.12); }
.featured-card {
  grid-column: span 2;
  background: rgba(200,149,42,0.08);
  border-color: rgba(200,149,42,0.25);
}
.sc-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.service-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.sc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.sc-tags span {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,149,42,0.1);
  border: 1px solid rgba(200,149,42,0.2);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

/* ===== SECTORS ===== */
.sectors { background: var(--white); }
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.sector-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1rem;
  background: var(--off-white);
  border-radius: 8px;
  border: 1px solid var(--grey-100);
  transition: var(--transition);
  cursor: default;
}
.sector-item:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.sector-item:hover span { color: rgba(255,255,255,0.8); }
.sector-icon { font-size: 2rem; }
.sector-item span {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--grey-500);
  text-transform: uppercase;
  line-height: 1.4;
  transition: color 0.3s;
}

/* ===== VALUES ===== */
.values { background: var(--navy-deep); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  position: relative;
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
}
.value-card:hover {
  border-color: rgba(200,149,42,0.3);
  background: rgba(200,149,42,0.05);
  transform: translateY(-4px);
}
.value-num {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.7;
}
.value-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.value-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ===== WHY US ===== */
.whyus { background: var(--off-white); }
.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.whyus-left p {
  color: var(--text-body);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.whyus-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--grey-100);
  transition: var(--transition);
}
.why-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateX(4px);
}
.why-icon {
  font-size: 1rem;
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
}
.why-item strong {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.why-item p { font-size: 0.9rem; color: var(--grey-500); margin: 0; }

/* ===== CONTACT ===== */
.contact { background: var(--navy-deep); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.contact-desc {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.cd-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.cd-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.cd-item strong {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.cd-item span { color: rgba(255,255,255,0.6); font-size: 0.95rem; }

/* Contact Form */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--navy-deep); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(200,149,42,0.15);
  border: 1px solid rgba(200,149,42,0.3);
  border-radius: var(--radius);
  color: var(--gold-light);
  font-size: 0.9rem;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 0.5rem;
}
.footer-reg {
  color: rgba(255,255,255,0.25) !important;
  font-size: 0.75rem !important;
  font-style: italic;
}
.footer-col h4 {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li, .footer-col a {
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-motto {
  font-family: var(--font-cond);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .featured-card { grid-column: span 1; }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-right { order: -1; }
  .whyus-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-stats { gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 70px 0; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .av-card { padding: 0.75rem; }
  .av-label { font-size: 0.65rem; }
}

/* ===== LOGO IMAGE ===== */
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}
.logo-img-footer {
  height: 52px;
  margin-bottom: 1rem;
}
