/* =====================================================
   AL-ETIMAD MANPOWER — Modern Website Stylesheet
   Author: Powered by Experts Infotech (Pvt) Ltd.
   ===================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand colors */
  --color-navy: #0a1f3d;
  --color-navy-dark: #061229;
  --color-navy-light: #1a3464;
  --color-gold: #c9a961;
  --color-gold-light: #e3c887;
  --color-gold-dark: #a48a45;
  --color-accent: #d4af37;
  --color-whatsapp: #25d366;

  /* Neutral */
  --color-white: #ffffff;
  --color-cream: #faf8f4;
  --color-gray-50: #f7f8fa;
  --color-gray-100: #eef0f4;
  --color-gray-200: #dde1e8;
  --color-gray-300: #c4c9d3;
  --color-gray-500: #6b7280;
  --color-gray-700: #374151;
  --color-gray-900: #111827;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --container-max: 1280px;
  --section-padding: 100px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(10, 31, 61, 0.08);
  --shadow: 0 10px 30px rgba(10, 31, 61, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 31, 61, 0.12);
  --shadow-xl: 0 30px 80px rgba(10, 31, 61, 0.18);

  /* Transitions */
  --t-fast: 0.2s ease;
  --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray-700);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.2px;
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  color: var(--color-navy);
  box-shadow: 0 10px 25px rgba(201, 169, 97, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(201, 169, 97, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  transform: translateY(-3px);
}

/* ===================================================
   TOP BAR
   =================================================== */
.topbar {
  background: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar a {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--t-fast);
}
.topbar a:hover { color: var(--color-gold-light); }
.topbar-right { gap: 16px; }
.topbar-right a {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.topbar-right a:hover { background: var(--color-gold); color: var(--color-navy); }
.topbar-tag {
  padding: 4px 12px;
  background: rgba(201, 169, 97, 0.15);
  color: var(--color-gold-light);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===================================================
   HEADER
   =================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  transition: all var(--t);
  border-bottom: 1px solid var(--color-gray-100);
}
.header.scrolled {
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.logo img {
  height: 44px;
  width: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  position: relative;
  display: inline-block;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-gray-700);
  border-radius: 8px;
  transition: all var(--t-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--t);
}
.nav-link:hover, .nav-link.active {
  color: var(--color-navy);
}
.nav-link:hover::after, .nav-link.active::after { width: 24px; }
.nav-link--accent {
  color: var(--color-gold-dark);
  font-weight: 600;
}
.nav-link--accent i { font-size: 10px; margin-left: 4px; }
.nav-cta { padding: 12px 22px; font-size: 14px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: all var(--t);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.5s ease, transform 8s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 31, 61, 0.85) 0%, rgba(6, 18, 41, 0.7) 50%, rgba(10, 31, 61, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}
.hero-eyebrow {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(201, 169, 97, 0.15);
  border: 1px solid rgba(201, 169, 97, 0.3);
  color: var(--color-gold-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-title .typed-text {
  color: var(--color-gold);
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  min-width: 280px;
}
.cursor {
  display: inline-block;
  color: var(--color-gold);
  font-weight: 400;
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-subtitle {
  font-size: clamp(16px, 1.5vw, 20px);
  max-width: 700px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}
.hero-subtitle strong { color: var(--color-gold-light); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 800px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}
.hero-stat {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 8px;
}
.hero-stat:last-child { border-right: 0; }
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  font-size: 24px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===================================================
   SECTIONS — shared
   =================================================== */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}
.section:nth-of-type(even) { background: var(--color-gray-50); }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(201, 169, 97, 0.1);
  color: var(--color-gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-desc {
  font-size: 17px;
  color: var(--color-gray-500);
  line-height: 1.7;
}

/* Light variants for dark sections */
.section-head--light .section-title { color: var(--color-white); }
.section-head--light .section-desc { color: rgba(255, 255, 255, 0.8); }
.section-eyebrow--light {
  background: rgba(201, 169, 97, 0.2);
  color: var(--color-gold-light);
}

/* ===================================================
   ABOUT
   =================================================== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.about-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--t);
  border: 1px solid var(--color-gray-100);
}
.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.about-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.about-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.about-card:hover .about-card-media img { transform: scale(1.05); }
.about-card-body {
  padding: 36px;
  position: relative;
}
.about-icon {
  position: absolute;
  top: -32px;
  right: 36px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-navy);
  box-shadow: var(--shadow);
}
.about-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--color-navy);
  margin-bottom: 16px;
  font-weight: 700;
}
.about-card p {
  color: var(--color-gray-700);
  line-height: 1.8;
}

/* ===================================================
   STRENGTH
   =================================================== */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.strength-card {
  background: var(--color-white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-100);
  position: relative;
  overflow: hidden;
  transition: all var(--t);
}
.strength-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.strength-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.strength-card:hover::before { transform: scaleX(1); }
.strength-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--color-gold);
  margin-bottom: 24px;
  transition: all var(--t);
}
.strength-card:hover .strength-icon {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  color: var(--color-navy);
  transform: rotate(-5deg) scale(1.05);
}
.strength-card h3 {
  font-size: 20px;
  color: var(--color-navy);
  margin-bottom: 12px;
  font-weight: 700;
}
.strength-card p {
  color: var(--color-gray-500);
  font-size: 14.5px;
  line-height: 1.7;
}
.strength-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--color-gray-100);
  line-height: 1;
  z-index: -1;
  transition: color var(--t);
}
.strength-card:hover .strength-num { color: var(--color-cream); }

/* ===================================================
   INDUSTRIES
   =================================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.industry-card {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-100);
  position: relative;
  overflow: hidden;
  transition: all var(--t);
}
.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(40%, 40%);
  transition: all var(--t-slow);
}
.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-gold-light);
}
.industry-card:hover::after {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.2) 0%, transparent 70%);
}
.industry-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(10, 31, 61, 0.05) 0%, rgba(201, 169, 97, 0.1) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--color-navy);
  margin-bottom: 24px;
  transition: all var(--t);
}
.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  color: var(--color-navy);
  transform: scale(1.05) rotate(-3deg);
}
.industry-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--color-navy);
  margin-bottom: 16px;
  font-weight: 700;
}
.industry-card p {
  color: var(--color-gray-700);
  line-height: 1.8;
  margin-bottom: 24px;
}
.industry-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.industry-tags li {
  padding: 6px 14px;
  background: var(--color-gray-50);
  color: var(--color-gray-700);
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--color-gray-200);
  transition: all var(--t-fast);
}
.industry-card:hover .industry-tags li {
  background: var(--color-navy);
  color: var(--color-gold-light);
  border-color: var(--color-navy);
}

/* ===================================================
   STATS
   =================================================== */
.stats {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 60%);
  border-radius: 50%;
}
.stats::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 60%);
  border-radius: 50%;
}
.stats .container { position: relative; z-index: 1; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item {
  text-align: center;
  padding: 32px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--t);
}
.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 169, 97, 0.3);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===================================================
   TEAM
   =================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-gray-100);
  transition: all var(--t);
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}
.team-photo {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
}
.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 31, 61, 0.2) 100%);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.team-card:hover .team-photo img { transform: scale(1.08); }
.team-info {
  padding: 24px;
  text-align: center;
}
.team-info h3 {
  font-size: 18px;
  color: var(--color-navy);
  font-weight: 700;
  margin-bottom: 4px;
}
.team-info p {
  color: var(--color-gold-dark);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.team-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.team-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-gray-50);
  color: var(--color-gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--t-fast);
}
.team-socials a:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-3px);
}

/* ===================================================
   GALLERY
   =================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--color-gray-100);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 61, 0.7);
  color: var(--color-white);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover::after { opacity: 1; }

/* ===================================================
   LIGHTBOX
   =================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 18, 41, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(10px);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  animation: zoomIn 0.3s ease;
}
@keyframes zoomIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
  backdrop-filter: blur(10px);
}
.lightbox-close { top: 30px; right: 30px; }
.lightbox-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 30px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--color-gold);
  color: var(--color-navy);
}

/* ===================================================
   CTA
   =================================================== */
.cta {
  padding: 100px 0;
  background:
    linear-gradient(135deg, rgba(10, 31, 61, 0.92) 0%, rgba(6, 18, 41, 0.85) 100%),
    url('../assets/images/hero4.webp') center/cover;
  color: var(--color-white);
  text-align: center;
  position: relative;
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ===================================================
   CONTACT
   =================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-gray-100);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.form-row .form-group { margin-bottom: 0; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.req { color: #dc2626; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--color-gray-900);
  background: var(--color-gray-50);
  border: 2px solid var(--color-gray-100);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--color-white);
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--color-gray-500);
}
.form-note i { color: var(--color-gold-dark); margin-right: 6px; }

.contact-info { padding: 16px 0; }
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-navy);
  margin-bottom: 12px;
  font-weight: 700;
}
.contact-blurb {
  color: var(--color-gray-500);
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item h4 {
  font-size: 15px;
  color: var(--color-navy);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-item p { color: var(--color-gray-700); line-height: 1.6; font-size: 14.5px; }
.contact-item a { color: var(--color-gray-700); }
.contact-item a:hover { color: var(--color-gold-dark); }

.contact-socials {
  display: flex;
  gap: 12px;
}
.contact-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-gray-50);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--t-fast);
  border: 1px solid var(--color-gray-200);
}
.contact-socials a:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-3px);
  border-color: var(--color-gold);
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--t-fast);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-socials a:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-3px);
  border-color: var(--color-gold);
}
.footer-col h4 {
  font-size: 16px;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  transition: all var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col a:hover {
  color: var(--color-gold-light);
  transform: translateX(4px);
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.footer-contact i {
  color: var(--color-gold);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
}
.footer-copy { color: rgba(255, 255, 255, 0.6); }
.footer-credit {
  color: rgba(255, 255, 255, 0.6);
}
.footer-credit a {
  color: var(--color-gold-light);
  font-weight: 600;
  transition: color var(--t-fast);
}
.footer-credit a:hover { color: var(--color-gold); text-decoration: underline; }

/* ===================================================
   FLOATING ELEMENTS
   =================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--color-whatsapp);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--t);
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}
@keyframes pulse-wa {
  0% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-white);
  color: var(--color-gray-900);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 105px;
  width: 46px;
  height: 46px;
  background: var(--color-navy);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--t);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-3px);
}

/* ===================================================
   RESPONSIVE — Tablet (≤ 1024px)
   =================================================== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }
  .strength-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: 0; }
}

/* ===================================================
   RESPONSIVE — Mobile (≤ 768px)
   =================================================== */
@media (max-width: 768px) {
  :root {
    --section-padding: 70px;
  }
  .container { padding: 0 20px; }

  /* Top bar */
  .topbar { display: none; }

  /* Header */
  .nav-toggle { display: flex; }
  .header-inner { padding: 12px 0; }
  .logo img { height: 38px; }

  .nav {
    position: fixed;
    top: 0; right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 32px 32px;
    gap: 16px;
    transform: translateX(100%);
    transition: transform var(--t);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }
  .nav-list li { width: 100%; }
  .nav-link {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-gray-100);
    font-size: 16px;
  }
  .nav-link::after { display: none; }
  .nav-cta { width: 100%; margin-top: 16px; }

  /* Hero */
  .hero { min-height: 90vh; }
  .hero-content { padding: 100px 0 60px; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 16px;
  }
  .hero-stat { padding: 8px; }
  .hero-stat:nth-child(2) { border-right: 0; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-label { font-size: 10.5px; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { flex: 1; min-width: 0; }

  /* Sections */
  .section-head { margin-bottom: 40px; }
  .section-title { font-size: 30px; }

  /* Strength */
  .strength-grid { grid-template-columns: 1fr; gap: 20px; }
  .strength-card { padding: 32px 24px; }

  /* Team */
  .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .team-info { padding: 16px; }
  .team-info h3 { font-size: 15px; }
  .team-info p { font-size: 11.5px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Contact form */
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }

  /* Floating buttons */
  .whatsapp-float { width: 54px; height: 54px; font-size: 28px; bottom: 20px; right: 20px; }
  .whatsapp-tooltip { display: none; }
  .back-to-top { right: 88px; bottom: 24px; width: 42px; height: 42px; }

  /* Lightbox */
  .lightbox-close, .lightbox-prev, .lightbox-next {
    width: 40px; height: 40px; font-size: 14px;
  }
  .lightbox-close { top: 16px; right: 16px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

/* ===================================================
   RESPONSIVE — Small Mobile (≤ 480px)
   =================================================== */
@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-eyebrow { font-size: 11px; padding: 6px 14px; }
  .section-title { font-size: 26px; }
  .stat-num { font-size: 36px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .industry-card, .about-card-body, .contact-form { padding: 24px; }
  .btn { padding: 12px 22px; font-size: 14px; }
  .btn-lg { padding: 14px 28px; }
  .faq-q { padding: 18px 20px; font-size: 15px; }
  .faq-a { padding: 0 20px 20px; font-size: 14.5px; }
}

/* ===================================================
   FAQ
   =================================================== */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--t);
}
.faq-item[open] {
  box-shadow: var(--shadow);
  border-color: var(--color-gold-light);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  list-style: none;
  transition: color var(--t-fast);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; content: ''; }
.faq-q:hover { color: var(--color-gold-dark); }
.faq-icon {
  font-size: 14px;
  color: var(--color-gold-dark);
  flex-shrink: 0;
  transition: transform var(--t);
}
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-a {
  padding: 0 28px 24px;
  color: var(--color-gray-700);
  line-height: 1.8;
  font-size: 15.5px;
}
.faq-a p { margin-bottom: 10px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a ul {
  list-style: disc;
  padding-left: 20px;
  margin: 8px 0 12px;
}
.faq-a li { margin-bottom: 6px; }
.faq-a a {
  color: var(--color-gold-dark);
  font-weight: 600;
  border-bottom: 1px dashed var(--color-gold-light);
}
.faq-a a:hover { color: var(--color-navy); border-color: var(--color-navy); }

.faq-cta {
  text-align: center;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.faq-cta p {
  font-size: 16px;
  color: var(--color-gray-700);
  font-weight: 500;
  margin: 0;
}

/* ===================================================
   ACCESSIBILITY
   =================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

::selection { background: var(--color-gold); color: var(--color-navy); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--color-gray-100); }
::-webkit-scrollbar-thumb { background: var(--color-gold); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-gold-dark); }
