@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --bg: #080808;
  --card: #0d0d0d;
  --border: #1d241d;
  --primary: #80ff00;
  --primary-dark: #66cc00;
  --primary-glow: rgba(128, 255, 0, 0.4);
  --text: #fafafa;
  --muted: #8a968a;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #000;
  box-shadow: 0 0 40px -10px var(--primary-glow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(128, 255, 0, 0.2);
}

.btn-outline:hover {
  background: rgba(128, 255, 0, 0.08);
  border-color: rgba(128, 255, 0, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: none;
  padding: 0.6rem 1rem;
}

.btn-ghost:hover {
  background: rgba(128, 255, 0, 0.08);
}

.btn-white {
  background: #fff;
  color: #000;
  font-weight: 700;
}

.btn-white:hover {
  background: #e5e5e5;
}

.btn-lg {
  padding: 0.9rem 2.5rem;
  font-size: 1.05rem;
}

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(128, 255, 0, 0.3);
  background: rgba(128, 255, 0, 0.08);
  font-size: 0.82rem;
  color: var(--primary);
  backdrop-filter: blur(4px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1200px;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0.8rem 0;
  background: rgba(12, 12, 12, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
  top: 0.5rem;
  background: rgba(8, 8, 8, 0.75);
  border-color: rgba(128, 255, 0, 0.25);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(128, 255, 0, 0.1);
  padding: 0.6rem 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  width: 150px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  transition: all 0.3s ease;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navbar-links a:not(.btn) {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.navbar-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease, box-shadow 0.3s ease;
  border-radius: 2px;
}

.navbar-links a:not(.btn):hover,
.navbar-links a:not(.btn).active {
  color: #fff;
}

.navbar-links a:not(.btn):hover::after,
.navbar-links a:not(.btn).active::after {
  width: 100%;
  box-shadow: 0 0 8px var(--primary);
}

.navbar-mobile-toggle {
  display: none;
  background: none;
  color: var(--text);
  padding: 0.4rem;
}

.navbar-mobile-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.5rem 1.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a {
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.6rem 0;
  color: var(--text);
  transition: color 0.2s;
  border: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--primary);
}

.mobile-menu .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.75rem;
}

.mobile-menu.open {
  display: flex;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  background: var(--card);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  width: 160px;
  height: 45px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-social a:hover {
  color: var(--primary);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-offices ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-offices li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-offices li svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--text);
}

/* ===== PAGE WRAPPER ===== */
.page {
  padding-top: 80px;
}

/* ===== SECTION HELPERS ===== */
.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-lg {
  padding: 7rem 0;
}

.section-border {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-card-bg {
  background: rgba(13, 13, 13, 0.5);
}

.text-center {
  text-align: center;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-subtitle.wide {
  max-width: 700px;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-header.centered .section-subtitle {
  text-align: center;
}

/* ===== CARDS ===== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}

.card:hover {
  border-color: rgba(128, 255, 0, 0.4);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(128, 255, 0, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: rgba(128, 255, 0, 0.06);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.hero-content .badge {
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title .gradient-text {
  background: linear-gradient(90deg, var(--primary), #c8ff70, #ffe066);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== SERVICE CARDS GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.3s;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(128, 255, 0, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(128, 255, 0, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: transform 0.3s;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== OFFICE CARDS ===== */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.office-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.3s;
}

.office-card:hover {
  border-color: rgba(128, 255, 0, 0.35);
}

.office-flag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.office-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.office-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.office-address {
  font-size: 0.82rem;
  color: rgba(128, 255, 0, 0.75);
  font-weight: 500;
}

/* ===== MARQUEE ===== */
.marquee-wrapper {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 5rem;
  width: max-content;
  animation: marquee 35s linear infinite;
  opacity: 0.35;
  transition: opacity 0.3s;
}

.marquee-track:hover {
  opacity: 0.6;
  animation-play-state: paused;
}

.marquee-track svg {
  width: 52px;
  height: 52px;
  fill: currentColor;
  color: var(--text);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-set {
  display: flex;
  align-items: center;
  gap: 5rem;
}

/* ===== CTA SECTION ===== */
.cta-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 3.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(128, 255, 0, 0.2);
  background: rgba(8, 8, 8, 0.6);
  backdrop-filter: blur(20px);
  text-align: center;
}

.cta-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--primary);
  color: #000;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

/* ===== ABOUT PAGE ===== */
.about-header {
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.about-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(128, 255, 0, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.about-header-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.about-header h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 1rem 0 1.5rem;
}

.about-header h1 .accent {
  color: var(--primary);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.two-col-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.stats-card {
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(128, 255, 0, 0.2);
  background: var(--card);
  position: relative;
  overflow: hidden;
}

.stats-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(128, 255, 0, 0.06), transparent);
  pointer-events: none;
}

.stats-card-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.stats-card-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.stats-card-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Space Grotesk', sans-serif;
  min-width: 100px;
}

.stats-card-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.3s;
}

.value-card:hover {
  border-color: rgba(128, 255, 0, 0.35);
}

.value-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: 10px;
  background: rgba(128, 255, 0, 0.08);
  border: 1px solid rgba(128, 255, 0, 0.2);
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.value-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.markets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.market-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.3s;
}

.market-card:hover {
  border-color: rgba(128, 255, 0, 0.35);
}

.market-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.market-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.market-points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.market-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.market-point::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ===== SERVICES PAGE ===== */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-row.reverse {
  direction: rtl;
}

.service-row.reverse>* {
  direction: ltr;
}

.service-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(128, 255, 0, 0.07) 0%, transparent 65%);
  z-index: 2;
  pointer-events: none;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-row:hover .service-image {
  transform: scale(1.05);
}

.service-body .section-label {
  margin-bottom: 0.6rem;
}

.service-body h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-body p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
}

.feature-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.2;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.contact-info h1 .accent {
  color: var(--primary);
}

.contact-info>p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 400px;
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
}

.contact-item h4 {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.contact-item a,
.contact-item p {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.2s;
  display: block;
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--primary);
}

.contact-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.contact-form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(128, 255, 0, 0.04), transparent);
  pointer-events: none;
  border-radius: var(--radius-xl);
}

.contact-form-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  position: relative;
  z-index: 1;
}

.contact-form-card .form-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(138, 150, 138, 0.5);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form .btn {
  width: 100%;
  justify-content: center;
  padding: 0.9rem;
  font-size: 1rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

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

  .navbar-mobile-toggle {
    display: block;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .offices-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .markets-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-row.reverse {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 2rem 1.5rem;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* ===== MAP SECTION ===== */
.map-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
}

.map-stats {
  position: absolute;
  top: -2rem;
  left: 0;
  display: flex;
  gap: 3rem;
  z-index: 10;
}

.map-stat {
  display: flex;
  flex-direction: column;
}

.map-stat h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.map-stat span {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.map-graphic {
  position: relative;
  width: 100%;
  margin-top: 4rem;
}

.map-img-bg {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.5;
  filter: invert(1) brightness(2);
}

.map-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.node-dot {
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 12px var(--primary);
}

.node-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background-color: rgba(128, 255, 0, 0.4);
  border-radius: 50%;
  z-index: 1;
  animation: map-pulse 2s infinite ease-out;
}

@keyframes map-pulse {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.node-label {
  margin-top: 0.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .map-stats {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .map-graphic {
    margin-top: 1rem;
    min-height: 250px;
  }
  .node-label {
    font-size: 0.6rem;
    padding: 0.15rem 0.4rem;
  }
}

/* ===== ADDED SECTIONS: TEAM, PARTNERS, TESTIMONIALS ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  text-align: left;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 420px;
  display: block;
}

.team-card:hover {
  border-color: rgba(128, 255, 0, 0.45);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -15px rgba(128, 255, 0, 0.2);
}

.team-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.team-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 1) 0%, rgba(8, 8, 8, 0.6) 50%, transparent 100%);
  pointer-events: none;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-image img {
  transform: scale(1.08);
}

.team-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem 1.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.team-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--text);
}

.team-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.team-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.team-socials {
  display: flex;
  justify-content: flex-start;
  gap: 0.75rem;
}

.team-socials a {
  color: var(--muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.team-socials a:hover {
  color: var(--primary);
}

.team-socials svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ===== PARTNERS SECTION ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem;
  align-items: center;
  justify-items: center;
  margin-top: 3rem;
}

.partner-logo-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
}

.partner-logo-box:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

.partner-logo-box svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  stroke-width: 1.8;
  fill: none;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(128, 255, 0, 0.3);
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 4rem;
  font-family: serif;
  color: rgba(128, 255, 0, 0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(128, 255, 0, 0.1);
  border: 1px solid rgba(128, 255, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.author-info p {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Responsive Overrides for Added Sections */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}