/* ============================================================
   QUALITYEDGE TECHNICAL SERVICES L.L.C – Premium Design System
   Colors: #001e3a (Navy), #d4b04f (Gold), #ffffff, #0a0a0a
   ============================================================ */

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

/* ─── CSS Variables ─── */
:root {
  --navy:        #001e3a;
  --navy-light:  #002f5c;
  --navy-dark:   #00111f;
  --gold:        #d4b04f;
  --gold-light:  #e8cc7a;
  --gold-dark:   #b8922d;
  --white:       #ffffff;
  --off-white:   #f5f3ee;
  --black:       #0a0a0a;
  --gray-100:    #f8f9fa;
  --gray-200:    #e9ecef;
  --gray-400:    #9ca3af;
  --gray-600:    #6b7280;
  --text-dark:   #1a1a2e;
  --text-light:  #e8e8e8;

  --font-body:   'Outfit', sans-serif;
  --font-head:   'Playfair Display', serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(0,30,58,0.15);
  --shadow-lg:   0 20px 60px rgba(0,30,58,0.25);
  --shadow-gold: 0 4px 20px rgba(212,176,79,0.3);

  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; background: none; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p { font-size: 1rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* ─── Utility Classes ─── */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

.text-gold    { color: var(--gold); }
.text-navy    { color: var(--navy); }
.text-white, .text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5 { color: var(--white); }
.text-center  { text-align: center; }

.bg-navy    { background: var(--navy); }
.bg-gold    { background: var(--gold); }
.bg-off     { background: var(--off-white); }
.bg-dark    { background: var(--navy-dark); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,176,79,0.12);
  border: 1px solid rgba(212,176,79,0.35);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.divider-gold {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 24px;
}
.divider-gold.center { margin: 16px auto 24px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,176,79,0.45);
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0,30,58,0.06);
}

#navbar.transparent {
  background: transparent;
  box-shadow: none;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,30,58,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 32px;
  max-width: 1320px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 76px;
  width: auto;
  transition: var(--transition);
}
#navbar.transparent .nav-logo img { 
  background: #ffffff;
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-text .brand-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  transition: var(--transition);
}
#navbar.transparent .nav-logo-text .brand-name { color: var(--white); }
.nav-logo-text .brand-tag {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: 32px;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a,
.nav-links > li > .nav-drop-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.3px;
}
#navbar.transparent .nav-links > li > a,
#navbar.transparent .nav-links > li > .nav-drop-toggle {
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}

.nav-links > li > a:hover,
.nav-links > li > .nav-drop-toggle:hover,
.nav-links > li > a.active,
.nav-links > li > .nav-drop-toggle.active {
  color: var(--gold);
  background: rgba(212,176,79,0.1);
}

.nav-drop-toggle svg {
  width: 14px; height: 14px;
  transition: transform 0.3s ease;
}
.nav-links > li.open > .nav-drop-toggle svg {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #ffffff;
  backdrop-filter: blur(20px);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.nav-links > li:hover .dropdown-menu,
.nav-links > li.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown-menu a:hover {
  background: rgba(212,176,79,0.08);
  color: var(--navy);
}
.dropdown-menu a .drop-icon {
  width: 32px; height: 32px;
  background: rgba(212,176,79,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-contact-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-md) !important;
  font-size: 0.85rem !important;
}
.nav-contact-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
#navbar.transparent .hamburger span { background: var(--white); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: #ffffff;
  border-top: 1px solid var(--gray-200);
  padding: 16px;
  z-index: 999;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0,30,58,0.1);
}
.mobile-menu.open { display: block; }

.mobile-menu a, .mobile-menu .mob-drop-toggle {
  display: block;
  padding: 14px 20px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}
.mobile-menu a:hover, .mobile-menu .mob-drop-toggle:hover { color: var(--navy); background: rgba(212,176,79,0.08); }
.mobile-submenu { padding-left: 16px; display: none; }
.mobile-submenu.open { display: block; }
.mobile-submenu a { font-size: 0.875rem; padding: 10px 20px; }

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero_banner.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,17,31,0.92) 0%,
    rgba(0,30,58,0.85) 40%,
    rgba(0,30,58,0.65) 70%,
    rgba(0,17,31,0.88) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.15;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.15; }
  90%  { opacity: 0.15; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,176,79,0.15);
  border: 1px solid rgba(212,176,79,0.4);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.15;
  margin-bottom: 12px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero h1 .gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  color: rgba(255,255,255,0.75);
  font-style: italic;
  margin-bottom: 16px;
  animation: fadeUp 0.8s 0.25s ease both;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.35s ease both;
}

.hero-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.45s ease both;
}
.hero-role-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.55s ease both;
}

.hero-stats {
  position: absolute;
  bottom: 48px;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 2px;
  animation: fadeUp 0.8s 0.7s ease both;
}
.stat-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212,176,79,0.2);
  padding: 20px 28px;
  text-align: center;
  border-radius: var(--radius-md);
}
.stat-card:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.stat-card:last-child  { border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Hero scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
.scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,176,79,0.08) 0%, transparent 70%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 560px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ─── SERVICES GRID ─── */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.services-grid .service-card {
  max-width: 420px;
}

.service-card {
  flex: 1 1 320px;
  width: 100%;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,176,79,0.25);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p  { font-size: 0.9rem; margin-bottom: 20px; }

.service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-600);
}
.service-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── TECH CAPABILITIES GRID ─── */
.tech-caps-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.tech-cap-card {
  flex: 0 1 280px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.tech-cap-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.tech-cap-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--white);
}
.tech-cap-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.tech-cap-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0;
}

/* ─── VISION & MISSION GRID ─── */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .vision-mission-grid { grid-template-columns: 1fr; }
}

.vm-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,176,79,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
}
.vm-card:hover {
  background: rgba(212,176,79,0.07);
  border-color: rgba(212,176,79,0.4);
  transform: translateY(-4px);
}
.vm-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: rgba(212,176,79,0.15);
  border: 1px solid rgba(212,176,79,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}
.vm-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.vm-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  font-family: var(--font-body);
  line-height: 1.6;
}
.vm-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0; margin: 0;
}
.vm-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.vm-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ─── VALUE CARDS ─── */

.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.value-card {
  flex: 0 1 320px;
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,176,79,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  background: rgba(212,176,79,0.06);
  border-color: rgba(212,176,79,0.35);
  transform: translateY(-4px);
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.value-card h4 {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 700;
}
.value-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

/* ─── PROFILE CARD ─── */
.profile-section {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: center;
}

.profile-image-wrap {
  position: relative;
}
.profile-image-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.profile-image-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid var(--gold);
  border-radius: calc(var(--radius-xl) + 12px);
  opacity: 0.4;
}
.profile-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

.profile-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: var(--navy-dark);
  border: 1px solid rgba(212,176,79,0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  backdrop-filter: blur(12px);
}
.profile-badge .pb-title {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.profile-badge .pb-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 2px 0;
}
.profile-badge .pb-qual {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.profile-content h2 { margin-bottom: 8px; }
.profile-content .section-label { color: var(--gold); }

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}
.profile-tag {
  background: rgba(0,30,58,0.06);
  border: 1px solid rgba(0,30,58,0.12);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}

.profile-quals {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.qual-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}
.qual-item .q-icon { font-size: 1.2rem; flex-shrink: 0; }
.qual-item .q-text { font-size: 0.875rem; color: var(--gray-600); line-height: 1.5; }
.qual-item .q-text strong { color: var(--navy); display: block; font-size: 0.9rem; }

/* ─── WHY US ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.why-num {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
}
.why-card h4 { font-size: 1rem; margin-bottom: 6px; font-family: var(--font-body); font-weight: 700; }
.why-card p  { font-size: 0.875rem; }

/* ─── CONTACT FORM ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,176,79,0.12) 0%, transparent 70%);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(212,176,79,0.12);
  border: 1px solid rgba(212,176,79,0.25);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-item-val {
  color: rgba(255,255,255,0.85);
  font-size: 0.925rem;
  line-height: 1.6;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: 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(212,176,79,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── FOOTER ─── */
.footer {
  background: var(--navy-dark);
  padding: 72px 0 0;
  border-top: 1px solid rgba(212,176,79,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand img { 
  height: 80px;
  margin-bottom: 16px; 
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin-bottom: 24px;
  line-height: 1.8;
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--gold);
  font-weight: 700;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item .fci-icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}
.footer-bottom .gold { color: var(--gold); }

/* ─── SECTION: IMAGE BANNER ─── */
.img-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.img-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-banner .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,17,31,0.8), rgba(0,30,58,0.5));
  display: flex;
  align-items: center;
  padding: 48px;
}
.img-banner .img-overlay h3 {
  color: var(--white);
  font-size: 2rem;
  max-width: 480px;
}
.img-banner .img-overlay p {
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212,176,79,0.07) 0%, transparent 70%);
}
.cta-section h2 { color: var(--white); margin-bottom: 12px; }
.cta-section p  { color: rgba(255,255,255,0.65); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─── QUALITY PROCESS ─── */
.process-flow {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 140px;
  padding: 20px 12px;
  position: relative;
}
.process-circle {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 2px dashed rgba(212,176,79,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 0 0 rgba(212,176,79,0);
  margin-bottom: 20px;
}
.process-step:hover .process-circle {
  border-style: solid;
  border-color: var(--gold);
  background: rgba(212,176,79,0.1);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(212,176,79,0.2), inset 0 0 20px rgba(212,176,79,0.15);
}
.process-step::after {
  content: '';
  position: absolute;
  top: 65px;
  left: calc(50% + 45px);
  width: calc(100% - 90px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(212,176,79,0.1));
}
.process-step:last-child::after { display: none; }
.process-step h4 {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.process-step p { font-size: 0.78rem; color: var(--gray-400); }

/* ─── HSE SECTION ─── */
.hse-badge {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,176,79,0.3);
  padding: 16px 32px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  backdrop-filter: blur(5px);
}
.hse-badge:hover {
  background: rgba(212,176,79,0.12);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2), inset 0 0 15px rgba(212,176,79,0.1);
}
.hse-badge .icon {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: bold;
}
.hse-badge span {
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.5px;
}

.hse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.hse-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,176,79,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.hse-card:hover {
  background: rgba(212,176,79,0.06);
  border-color: rgba(212,176,79,0.3);
  transform: translateY(-3px);
}
.hse-card .hse-icon { font-size: 2rem; margin-bottom: 12px; }
.hse-card h4 { color: var(--white); font-size: 0.9rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 6px; }
.hse-card p  { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wa-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  text-decoration: none;
}
.wa-btn.wa-uae { background: #25D366; }
.wa-btn.wa-ind { background: #FF9933; }
.wa-btn:hover  { transform: scale(1.1); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.wa-btn img    { width: 28px; }
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--navy-dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  border: 1px solid rgba(212,176,79,0.2);
}
.wa-btn:hover .wa-tooltip { opacity: 1; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Scroll-triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .profile-section { grid-template-columns: 1fr; gap: 40px; }
  .profile-image-wrap { max-width: 400px; margin: 0 auto 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { position: static; margin-top: 48px; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 120px; border-radius: var(--radius-md) !important; }
  .section-pad { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .why-grid  { grid-template-columns: 1fr; }
  .process-flow { flex-direction: column; position: relative; gap: 24px; padding: 24px 0; }
  .process-flow::before {
    content: '';
    position: absolute;
    top: 40px; bottom: 80px; left: 50%;
    width: 2px;
    background: linear-gradient(180deg, rgba(212,176,79,0.1) 0%, var(--gold) 50%, rgba(212,176,79,0.1) 100%);
    transform: translateX(-50%);
    z-index: 0;
  }
  .process-step { min-width: 100%; padding: 0; }
  .process-step::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .img-banner .img-overlay { padding: 24px; }
  .img-banner .img-overlay h3 { font-size: 1.4rem; }
  .cta-btns { flex-direction: column; align-items: center; }
  
  .profile-badge { left: 16px; bottom: 16px; padding: 12px 16px; }
  .profile-image-wrap::after { right: 0; bottom: 0; display: none; }
  .profile-image-wrap::before { inset: -6px; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; }
  .container { padding: 0 16px; }
  .hero-content { padding: 100px 0 60px; }
  .values-grid { grid-template-columns: 1fr; }
  .hse-grid { grid-template-columns: 1fr; }
  .contact-info-card, .contact-form-wrap { padding: 32px 24px; }
  .profile-badge { position: relative; left: 0; bottom: 0; margin-top: 16px; width: 100%; border-radius: var(--radius-md); }
}