:root {
  --navy: #0A1628;
  --blue: #1040A0;
  --blue-mid: #1a56c4;
  --blue-light: #2D7DD2;
  --red: #C8102E;
  --red-dark: #9B0C23;
  --red-light: #E63950;
  --gold: #D4AF37;
  --white: #FFFFFF;
  --off-white: #F5F6F8;
  --gray: #8A94A6;
  --light-gray: #E8EBF0;
  --dark: #0D1B2A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--dark); overflow-x: hidden; background: var(--white); }

/* NAVBAR */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--red);
  transition: all 0.3s;
}
.nav-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.logo-mark {
  width: 46px; height: 46px; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 75% 100%, 0 100%);
}
.logo-mark span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 18px; color: white; letter-spacing: 1px;
}
.logo-text { display: flex; flex-direction: column; }
.logo-text .brand { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 22px; color: white; letter-spacing: 3px; line-height: 1; }
.logo-text .tagline { font-size: 9px; color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block; padding: 8px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.85); text-decoration: none;
  border-radius: 4px; transition: all 0.2s;
  position: relative;
}
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 2px; background: var(--red); transform: scaleX(0); transition: transform 0.25s;
}
.nav-links > li > a:hover { color: white; }
.nav-links > li > a:hover::after { transform: scaleX(1); }
.nav-links .cta > a { background: var(--red); color: white; padding: 8px 20px; }
.nav-links .cta > a:hover { background: var(--red-dark); }
.nav-links .cta > a::after { display: none; }

/* DROPDOWN */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--navy); min-width: 260px;
  border: 1px solid rgba(200,16,46,0.4);
  border-top: 3px solid var(--red);
  border-radius: 0 0 8px 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.2s;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 18px; color: rgba(255,255,255,0.8);
  text-decoration: none; font-size: 13px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s; letter-spacing: 0.5px;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: rgba(200,16,46,0.15); color: white; padding-left: 24px; }
.dropdown li a .d-icon { font-size: 16px; width: 20px; }

/* HERO SLIDER */
.hero { position: relative; height: 100vh; min-height: 620px; overflow: hidden; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
  background-size: cover; background-position: center;
}
.slide.active { opacity: 1; z-index: 2; }
.slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,22,40,0.85) 40%, rgba(10,22,40,0.4) 100%);
}

.slide-1 { background-image: url('https://images.pexels.com/photos/3862131/pexels-photo-3862131.jpeg?auto=compress&cs=tinysrgb&w=1600'); }
.slide-2 { background-image: url('https://images.pexels.com/photos/1267338/pexels-photo-1267338.jpeg?auto=compress&cs=tinysrgb&w=1600'); }
.slide-3 { background-image: url('https://images.pexels.com/photos/2760243/pexels-photo-2760243.jpeg?auto=compress&cs=tinysrgb&w=1600'); }
.slide-4 { background-image: url('https://images.pexels.com/photos/3183150/pexels-photo-3183150.jpeg?auto=compress&cs=tinysrgb&w=1600'); }

.hero-content {
  position: absolute; inset: 0; z-index: 10;
  display: flex; align-items: center;
  max-width: 1300px; margin: 0 auto; padding: 0 2rem;
  left: 0; right: 0;
}
.hero-text { max-width: 660px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,16,46,0.2); border: 1px solid rgba(200,16,46,0.5);
  padding: 6px 16px; border-radius: 2px; margin-bottom: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: #ff8fa0; font-weight: 600;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--red-light); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.slide-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900; color: white; line-height: 1.08;
  margin-bottom: 1.2rem;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.8s 0.2s forwards;
}
.slide-headline span { color: var(--red-light); font-style: italic; }

.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 2rem; font-weight: 300;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s 0.4s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: white;
  padding: 14px 28px; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  transition: all 0.25s; border: 2px solid var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: white;
  padding: 14px 28px; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  transition: all 0.25s; border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* Slider controls */
.slider-dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 20; display: flex; gap: 10px;
}
.dot {
  width: 28px; height: 4px; background: rgba(255,255,255,0.3);
  border-radius: 2px; cursor: pointer; transition: all 0.3s;
}
.dot.active { background: var(--red); width: 48px; }

.slider-arrows { position: absolute; bottom: 1.5rem; right: 2rem; z-index: 20; display: flex; gap: 8px; }
.arrow-btn {
  width: 44px; height: 44px; border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08); color: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: all 0.2s; border-radius: 3px;
}
.arrow-btn:hover { background: var(--red); border-color: var(--red); }

/* STATS BAR */
.stats-bar {
  background: var(--navy);
  border-bottom: 3px solid var(--red);
}
.stats-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 1.8rem 2rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}
.stat-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--red); transform: scaleX(0); transition: transform 0.4s;
}
.stat-item:hover::before { transform: scaleX(1); }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem; font-weight: 800; color: white;
  line-height: 1;
}
.stat-num span { color: var(--red-light); }
.stat-label { font-size: 12px; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; font-weight: 500; }

/* SECTION STYLES */
section { padding: 90px 0; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.section-tag::before { content: ''; width: 24px; height: 2px; background: var(--red); display: block; }
h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: var(--navy); line-height: 1.15; margin-bottom: 1rem;
}
h2.section-title span { color: var(--red); font-style: italic; }
.section-lead { font-size: 1.05rem; color: #555; line-height: 1.8; max-width: 560px; font-weight: 300; }

/* ABOUT */
.about-section { background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-main {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: 4px;
  box-shadow: 20px 20px 0 var(--red);
}
.about-image-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--navy); color: white;
  padding: 24px 28px; border-radius: 4px;
  border-left: 4px solid var(--red);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.about-image-badge .big { font-family: 'Barlow Condensed', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--red-light); line-height: 1; }
.about-image-badge .small { font-size: 11px; letter-spacing: 2px; color: var(--gray); text-transform: uppercase; margin-top: 4px; }
.about-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 14px; }
.feature-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; background: var(--off-white); border-radius: 4px;
  border-left: 3px solid var(--blue-light); transition: all 0.2s;
}
.feature-row:hover { background: #EEF3FB; border-left-color: var(--red); }
.feature-icon { font-size: 22px; margin-top: 1px; flex-shrink: 0; }
.feature-row h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; letter-spacing: 0.3px; }
.feature-row p { font-size: 13px; color: #666; line-height: 1.5; }

/* SERVICES */
.services-section { background: var(--off-white); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; flex-wrap: wrap; gap: 20px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: white; border-radius: 6px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.35s; position: relative;
  border-bottom: 3px solid transparent;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,0.14); border-bottom-color: var(--red); }
.service-card-img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform 0.6s;
  display: block;
}
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-img-wrap { overflow: hidden; }
.service-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--red); color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 2px;
}
.service-card-body { padding: 24px 24px 28px; }
.service-icon {
  width: 48px; height: 48px; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
}
.service-card-body h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem;
  font-weight: 700; color: var(--navy); letter-spacing: 0.5px; margin-bottom: 10px;
  text-transform: uppercase;
}
.service-card-body p { font-size: 14px; color: #666; line-height: 1.7; font-weight: 300; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-size: 13px; font-weight: 700; color: var(--red); text-decoration: none;
  letter-spacing: 1px; text-transform: uppercase; font-family: 'Barlow Condensed', sans-serif;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* GULF LOCATIONS */
.locations-section { background: var(--navy); position: relative; overflow: hidden; }
.locations-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 40px);
}
.locations-section .section-title { color: white; }
.locations-section .section-lead { color: rgba(255,255,255,0.6); max-width: 540px; }
.locations-section .section-tag { color: var(--gold); }
.locations-section .section-tag::before { background: var(--gold); }

.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
@media (min-width: 769px) {
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
  .location-card:nth-child(4) { grid-column: 1; }
  .location-card:nth-child(n+4) { }
}
.location-card {
  position: relative; height: 360px; border-radius: 6px; overflow: hidden; cursor: pointer;
  transition: transform 0.3s;
}
.location-card:hover { transform: scale(1.02); }
.location-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; display: block; }
.location-card:hover img { transform: scale(1.08); }
.location-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.3) 55%, rgba(10,22,40,0.1) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
}
.location-flag { font-size: 32px; margin-bottom: 8px; }
.location-name {
  font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: white;
  line-height: 1; margin-bottom: 6px;
}
.location-desc { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; font-weight: 300; }
.location-pill {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  background: rgba(200,16,46,0.25); border: 1px solid rgba(200,16,46,0.5);
  padding: 4px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 600; color: #ff8fa0; letter-spacing: 1px; text-transform: uppercase;
}

/* WHY US */
.whyus-section { background: white; }
.whyus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.whyus-image { position: relative; }
.whyus-image img { width: 100%; height: 500px; object-fit: cover; border-radius: 4px; }
.whyus-image-accent {
  position: absolute; top: -20px; right: -20px;
  width: 180px; height: 180px;
  background: var(--red); opacity: 0.12; border-radius: 4px; z-index: -1;
}
.pillars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pillar-item {
  background: var(--off-white); border-radius: 6px; padding: 24px;
  border-top: 3px solid transparent; transition: all 0.25s;
}
.pillar-item:hover { border-top-color: var(--red); background: white; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.pillar-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 800;
  color: var(--light-gray); line-height: 1; margin-bottom: 8px;
}
.pillar-item h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.pillar-item p { font-size: 13px; color: #666; line-height: 1.6; font-weight: 300; }

/* CLIENTS LOGOS */
.clients-section { background: var(--off-white); padding: 60px 0; }
.clients-title { text-align: center; margin-bottom: 40px; }
.clients-title p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gray); font-weight: 600; margin-bottom: 0;
}
.clients-title h3 {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
  color: var(--navy); margin-top: 6px;
}
.logos-track-wrap { overflow: hidden; position: relative; }
.logos-track-wrap::before,
.logos-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
  background: linear-gradient(to right, var(--off-white), transparent);
}
.logos-track-wrap::after { right: 0; left: auto; background: linear-gradient(to left, var(--off-white), transparent); }
.logos-track { display: flex; gap: 0; animation: scroll 30s linear infinite; width: max-content; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-item {
  display: flex; align-items: center; justify-content: center;
  width: 200px; height: 80px; padding: 0 30px;
  border-right: 1px solid var(--light-gray);
}
.logo-item span {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 800;
  letter-spacing: 2px; color: #bbb; text-transform: uppercase; white-space: nowrap;
  transition: color 0.2s;
}
.logo-item:hover span { color: var(--navy); }

/* TEAM */
.team-section { background: white; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 50px; }
.team-card { text-align: center; }
.team-photo-wrap { position: relative; width: 150px; height: 150px; margin: 0 auto 16px; }
.team-photo {
  width: 150px; height: 150px; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--light-gray); transition: border-color 0.25s;
}
.team-card:hover .team-photo { border-color: var(--red); }
.team-badge {
  position: absolute; bottom: 4px; right: 4px;
  width: 28px; height: 28px; background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; border: 2px solid white;
}
.team-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; }
.team-role { font-size: 12px; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 3px; }
.team-bio { font-size: 13px; color: #777; line-height: 1.6; margin-top: 8px; font-weight: 300; }

/* TESTIMONIALS */
.testimonials-section {
  background: var(--navy); padding: 90px 0;
  position: relative; overflow: hidden;
}
.testimonials-section::before {
  content: '\201C'; position: absolute; top: -40px; left: 60px;
  font-family: 'Playfair Display', serif; font-size: 30rem; font-weight: 900;
  color: rgba(255,255,255,0.025); line-height: 1;
}
.testimonials-section .section-title { color: white; text-align: center; }
.testimonials-section .section-tag { color: var(--gold); }
.testimonials-section .section-tag::before { background: var(--gold); }
.section-header-center { text-align: center; margin-bottom: 50px; }
.section-header-center .section-tag { display: flex; justify-content: center; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--red);
  border-radius: 6px; padding: 32px;
  transition: all 0.25s;
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.8; font-style: italic; font-weight: 300; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; color: white; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 14px; color: white; }
.author-co { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* CTA BANNER */
.cta-banner {
  background: var(--red);
  padding: 70px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(0,0,0,0.1);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-inner h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: white; max-width: 480px; line-height: 1.2; }
.cta-inner p { color: rgba(255,255,255,0.8); margin-top: 10px; font-size: 1rem; font-weight: 300; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--red);
  padding: 16px 32px; border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  transition: all 0.25s; border: 2px solid white;
  flex-shrink: 0;
}
.btn-white:hover { background: transparent; color: white; }

/* CONTACT */
.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: white; border-radius: 6px; padding: 24px;
  display: flex; gap: 18px; align-items: flex-start;
  border-left: 4px solid var(--blue); transition: border-color 0.2s;
}
.contact-card:hover { border-left-color: var(--red); }
.contact-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.contact-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 5px; }
.contact-card p, .contact-card a { font-size: 14px; color: #666; line-height: 1.6; text-decoration: none; }
.contact-card a:hover { color: var(--red); }
.contact-form-wrap { background: white; border-radius: 6px; padding: 40px; box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--navy); letter-spacing: 1.5px; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--light-gray);
  border-radius: 4px; font-family: 'Barlow', sans-serif; font-size: 14px;
  color: var(--dark); outline: none; transition: border-color 0.2s;
  background: var(--off-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); background: white; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* FOOTER */
footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-about .brand { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 800; color: white; letter-spacing: 3px; margin-bottom: 4px; }
.footer-about .tagline { font-size: 10px; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
.footer-about p { font-size: 13px; line-height: 1.8; max-width: 280px; font-weight: 300; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 14px; text-decoration: none;
  transition: all 0.2s; font-weight: 700; font-family: 'Barlow Condensed', sans-serif;
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: white; }
.footer-col h5 { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; color: white; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--red); display: inline-block; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; font-weight: 300; transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a::before { content: '›'; color: var(--red); font-size: 16px; font-weight: 700; }
.footer-col ul li a:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom .licenses { display: flex; gap: 16px; }
.footer-bottom .licenses span {
  font-size: 11px; font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1.5px; color: rgba(255,255,255,0.3);
  text-transform: uppercase; padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 2px;
}

/* PROCESS SECTION */
.process-section { background: var(--off-white); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 50px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(to right, var(--red), var(--blue-light));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: white; border: 3px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 26px;
  box-shadow: 0 4px 16px rgba(200,16,46,0.2);
  transition: all 0.3s;
}
.process-step:hover .step-circle { background: var(--red); transform: scale(1.1); }
.step-num {
  position: absolute; top: -8px; right: calc(50% - 44px);
  width: 22px; height: 22px; background: var(--navy);
  border-radius: 50%; color: white;
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.process-step h4 { font-size: 13px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.process-step p { font-size: 12px; color: #777; line-height: 1.5; font-weight: 300; }

/* INDUSTRIES */
.industries-section { background: white; }
.industries-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 50px; }
.industry-card {
  background: var(--off-white); border-radius: 8px; padding: 28px 20px;
  text-align: center; border-bottom: 3px solid transparent;
  transition: all 0.3s; cursor: default;
}
.industry-card:hover { border-bottom-color: var(--red); background: white; box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-4px); }
.industry-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.industry-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.industry-card p { font-size: 12px; color: #777; line-height: 1.5; font-weight: 300; }

/* REGIONS / CENTRAL ASIA */
.regions-section { background: var(--off-white); }
.regions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; }
.region-block {
  background: white; border-radius: 8px; padding: 36px;
  border-top: 4px solid var(--red); box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.region-block:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.region-block h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 800;
  color: var(--navy); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
}
.region-block p { font-size: 14px; color: #666; line-height: 1.8; font-weight: 300; margin-bottom: 20px; }
.region-flags { display: flex; gap: 12px; flex-wrap: wrap; }
.region-flag-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; background: var(--off-white); border-radius: 20px;
  font-size: 13px; font-weight: 600; color: var(--navy); border: 1px solid var(--light-gray);
}

/* BENEFITS */
.benefits-section { background: var(--navy); }
.benefits-section .section-title { color: white; }
.benefits-section .section-lead { color: rgba(255,255,255,0.6); }
.benefits-section .section-tag { color: var(--gold); }
.benefits-section .section-tag::before { background: var(--gold); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.05); border-radius: 6px; padding: 24px;
  border-left: 3px solid var(--red); transition: background 0.25s;
}
.benefit-item:hover { background: rgba(255,255,255,0.09); }
.benefit-check { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.benefit-item p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; font-weight: 300; }

/* INSIGHTS SECTION */
.insights-section { background: white; }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.insight-card {
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}
.insight-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,0.12); border-bottom-color: var(--red); }
.insight-card-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.insight-card-body { padding: 22px 24px 26px; background: white; }
.insight-tag {
  display: inline-block; background: rgba(200,16,46,0.1);
  color: var(--red); font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px; margin-bottom: 10px;
}
.insight-card-body h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 8px; line-height: 1.3;
}
.insight-card-body p { font-size: 13px; color: #777; line-height: 1.6; font-weight: 300; }
.insight-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  font-size: 12px; font-weight: 700; color: var(--red); text-decoration: none;
  letter-spacing: 1px; text-transform: uppercase; font-family: 'Barlow Condensed', sans-serif;
  transition: gap 0.2s;
}
.insight-link:hover { gap: 10px; }

/* SCROLL TOP */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 44px; height: 44px; background: var(--red);
  color: white; border: none; border-radius: 4px; cursor: pointer;
  font-size: 20px; display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(200,16,46,0.4);
  transition: all 0.2s;
}
.scroll-top:hover { background: var(--red-dark); transform: translateY(-3px); }
.scroll-top.visible { display: flex; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
}
/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 4px; z-index: 1100;
}
.hamburger span {
  display: block; height: 2px; width: 100%;
  background: white; border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU OVERLAY */
.mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(10,22,40,0.99);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(200,16,46,0.4);
  z-index: 999;
  overflow-y: auto;
  max-height: calc(100vh - 72px);
  padding: 16px 0 32px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav > ul > li > a {
  display: block; padding: 14px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 16px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.85); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
}
.mobile-nav > ul > li > a:hover,
.mobile-nav > ul > li > a:active { color: white; background: rgba(200,16,46,0.15); padding-left: 32px; }
.mobile-nav .mobile-cta a {
  display: block; margin: 20px 24px 0;
  background: var(--red); color: white; text-align: center;
  padding: 14px 20px; border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 15px; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none;
}
.mobile-submenu { display: none; background: rgba(255,255,255,0.03); }
.mobile-submenu.open { display: block; }
.mobile-submenu li a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 24px 11px 40px;
  font-size: 13px; color: rgba(255,255,255,0.65); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.2s;
}
.mobile-submenu li a:hover { color: white; background: rgba(200,16,46,0.1); }
.mobile-dropdown-toggle { position: relative; }
.mobile-dropdown-toggle > a::after { content: ' ▾'; }
.mobile-dropdown-toggle.open > a::after { content: ' ▴'; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-grid, .whyus-grid, .contact-grid, .regions-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-badge { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .locations-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .team-grid { grid-template-columns: 1fr 1fr; }

  section { padding: 60px 0; }
  .hero { min-height: 520px; }
  .slide-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-subtitle { font-size: 1rem; }
  .stat-item { padding: 1.2rem 1rem; }
  .stat-num { font-size: 2.2rem; }
  .contact-form-wrap { padding: 24px; }
  .cta-inner h2 { font-size: 1.7rem; }
}
