/* ============================================
   REACH THE GLOBE – Main Stylesheet
   Color Palette from Logo:
   Blue  : #0D3B8C  (primary)
   Red   : #CC1515  (accent)
   Gold  : #F5A623  (highlight)
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --blue:        #0D3B8C;
  --blue-dark:   #082970;
  --blue-light:  #1a52b8;
  --red:         #CC1515;
  --red-light:   #e82525;
  --gold:        #F5A623;
  --gold-light:  #ffc04d;
  --white:       #ffffff;
  --off-white:   #f5f7fc;
  --gray-light:  #eef1f8;
  --gray:        #8a94a6;
  --gray-dark:   #4a5568;
  --text:        #1a202c;
  --text-light:  #4a5568;
  --shadow-sm:   0 2px 8px rgba(13,59,140,.10);
  --shadow-md:   0 8px 32px rgba(13,59,140,.15);
  --shadow-lg:   0 16px 48px rgba(13,59,140,.20);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.3s ease;
  --font-body:   'Inter', sans-serif;
  --font-head:   'Poppins', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,166,35,.12);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-header p { color: var(--text-light); margin-top: 14px; font-size: 1.05rem; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}
.section-title span { color: var(--blue); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(13,59,140,.35);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(13,59,140,.45); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--blue); font-weight: 700; }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo img {
  height: 85px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
.navbar.scrolled .nav-logo img {
  filter: none;
  height: 72px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.navbar.scrolled .nav-links a:hover { color: var(--blue); }
.nav-cta { padding: 10px 24px; font-size: .9rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--text); }
.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); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 170px 0 100px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
  background: var(--white);
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.shape-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; background: var(--gold); }
.shape-3 { width: 200px; height: 200px; top: 50%; left: 40%; }

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text { color: var(--white); }
.hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-text h1 .highlight {
  color: var(--gold);
  position: relative;
}
.hero-text p { font-size: 1.05rem; opacity: .9; margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-actions .btn-outline { color: var(--white); border-color: rgba(255,255,255,.6); }
.hero-actions .btn-outline:hover { background: rgba(255,255,255,.15); }

.hero-stats { display: flex; gap: 0; align-items: center; }
.stat { text-align: center; padding: 0 24px; }
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  display: inline;
}
.stat span { font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.stat-label { display: block; font-size: .8rem; opacity: .75; margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.25); }

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; height: 420px; }
.hero-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-lg);
  color: var(--white);
  transition: var(--transition);
}
.hero-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.18); }
.main-card {
  padding: 32px;
  width: 240px;
  text-align: center;
  position: relative;
}
.main-card .card-icon {
  width: 72px; height: 72px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
  color: var(--blue-dark);
}
.main-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.main-card p { font-size: .85rem; opacity: .8; }
.globe-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.dot-1 { background: var(--gold); animation-delay: 0s; }
.dot-2 { background: #4fc3f7; animation-delay: .3s; }
.dot-3 { background: #ef5350; animation-delay: .6s; }
.dot-4 { background: #66bb6a; animation-delay: .9s; }
.dot-5 { background: var(--white); animation-delay: 1.2s; }
@keyframes pulse-dot { 0%,100%{opacity:.4;transform:scale(.8)} 50%{opacity:1;transform:scale(1.2)} }

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-size: .85rem;
  font-weight: 600;
  border-radius: 50px;
  animation: float 3s ease-in-out infinite;
}
.float-card i { font-size: 1rem; color: var(--gold); }
.card-left { left: 0; top: 30%; animation-delay: 0s; }
.card-right { right: 0; top: 20%; animation-delay: .8s; }
.card-bottom { bottom: 8%; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.card-bottom { animation: float-center 3s ease-in-out infinite 1.5s; }
@keyframes float-center { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-10px)} }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.6); font-size: .75rem; font-weight: 500;
  z-index: 2;
}
.scroll-arrow {
  width: 36px; height: 36px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ============================================
   TRUSTED BAR
   ============================================ */
.trusted-bar {
  background: var(--gray-light);
  padding: 24px 0;
  border-bottom: 1px solid rgba(13,59,140,.08);
}
.trusted-bar .container { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
.trusted-label { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--gray); white-space: nowrap; }
.country-flags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.flag-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 500; color: var(--text-light);
  padding: 7px 14px;
  background: var(--white);
  border-radius: 50px;
  border: 1px solid rgba(13,59,140,.1);
  transition: var(--transition);
  white-space: nowrap;
}
.flag-item:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.flag-svg {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
}

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrapper { position: relative; }
.about-img-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  background: var(--off-white);
}
.img-rect {
  position: absolute;
  border-radius: var(--radius);
}
.rect-blue {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  opacity: .07;
}
.rect-red {
  width: 60%; height: 8px;
  bottom: 0; left: 0;
  background: var(--red);
  opacity: .5;
  border-radius: 0;
}
.about-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  height: 100%;
  padding: 16px;
}
.icon-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.icon-cell:hover { transform: scale(1.04); box-shadow: var(--shadow-md); }
.icon-cell i { font-size: 1.8rem; color: var(--blue); }
.icon-cell.gold i { color: var(--gold); }
.icon-cell.red i { color: var(--red); }

.about-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  z-index: 5;
}
.about-badge i { font-size: 1.4rem; color: var(--gold); }
.about-badge strong { display: block; font-size: .95rem; color: var(--text); font-weight: 700; }
.about-badge span { display: block; font-size: .75rem; color: var(--gray); }
.badge-top { top: -20px; right: -20px; }
.badge-bottom { bottom: -20px; left: -20px; }

.about-content .section-tag { margin-bottom: 10px; }
.about-content .section-title { margin-bottom: 20px; }
.about-lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-content > p { color: var(--text-light); margin-bottom: 28px; }
.about-highlights { margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
}
.highlight-item i { color: var(--blue); font-size: 1.1rem; flex-shrink: 0; }

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(13,59,140,.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--blue);
  transition: height .4s ease;
  border-radius: 0 0 4px 0;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { height: 100%; }
.service-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-icon.blue { background: rgba(13,59,140,.1); color: var(--blue); }
.service-icon.red { background: rgba(204,21,21,.1); color: var(--red); }
.service-icon.gold { background: rgba(245,166,35,.15); color: var(--gold); }
.service-card:hover .service-icon.blue { background: var(--blue); color: var(--white); }
.service-card:hover .service-icon.red { background: var(--red); color: var(--white); }
.service-card:hover .service-icon.gold { background: var(--gold); color: var(--white); }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; font-family: var(--font-head); }
.service-card p { color: var(--text-light); font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 600; color: var(--blue);
}
.service-link i { font-size: .75rem; transition: var(--transition); }
.service-link:hover i { transform: translateX(4px); }
.service-card:hover .service-link { color: var(--blue-dark); }

/* ============================================
   PROCESS
   ============================================ */
.process { background: var(--white); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 36px 20px;
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.process-step:hover { box-shadow: var(--shadow-md); border-color: transparent; transform: translateY(-4px); }
.step-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(13,59,140,.08);
  line-height: 1;
  margin-bottom: -8px;
}
.step-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(13,59,140,.3);
  transition: var(--transition);
}
.process-step:hover .step-icon { background: linear-gradient(135deg, var(--gold), var(--gold-light)); box-shadow: 0 6px 20px rgba(245,166,35,.4); }
.process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: .85rem; color: var(--text-light); line-height: 1.6; }
.process-connector {
  color: var(--blue);
  font-size: .9rem;
  opacity: .4;
  padding: 36px 4px 0;
  flex-shrink: 0;
  align-self: center;
}

/* ============================================
   WHY US
   ============================================ */
.why-us { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-content .section-title { margin-bottom: 16px; }
.why-content > p { color: var(--text-light); margin-bottom: 36px; font-size: 1.02rem; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13,59,140,.1);
  transition: var(--transition);
}
.why-item:hover .why-icon { background: var(--blue); color: var(--white); border-color: var(--blue); }
.why-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.why-item p { font-size: .88rem; color: var(--text-light); line-height: 1.6; }

/* Stats Cards */
.stats-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stats-card {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: var(--transition);
}
.stats-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-lg); }
.stats-card i { font-size: 1.5rem; margin-bottom: 6px; }
.stats-card .stats-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  display: inline;
}
.stats-card .stats-plus { display: inline; font-size: 1.6rem; font-weight: 900; }
.stats-card .stats-label { font-size: .8rem; font-weight: 500; opacity: .8; margin-top: 4px; }

.blue-card { background: var(--blue); color: var(--white); grid-column: 1 / -1; }
.blue-card i { color: var(--gold); }
.blue-card .stats-num, .blue-card .stats-plus { color: var(--gold); }
.red-card { background: var(--red); color: var(--white); }
.red-card i { color: rgba(255,255,255,.8); }
.gold-card { background: var(--gold); color: var(--blue-dark); }
.gold-card i { color: var(--blue-dark); }
.dark-card { background: var(--blue-dark); color: var(--white); }
.dark-card i { color: var(--gold); }
.dark-card .stats-num, .dark-card .stats-plus { color: var(--gold); }

/* ============================================
   INDUSTRIES
   ============================================ */
.industries { background: var(--white); }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid rgba(13,59,140,.08);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.industry-item i { font-size: 1.8rem; color: var(--blue); transition: var(--transition); }
.industry-item:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.industry-item:hover i { color: var(--gold); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--red) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-shape.s1 { width: 400px; height: 400px; top: -150px; right: -100px; }
.cta-shape.s2 { width: 250px; height: 250px; bottom: -80px; left: 20%; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-text p { color: rgba(255,255,255,.8); font-size: .95rem; max-width: 480px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================
   CONTACT
   ============================================ */
.contact { 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: 20px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13,59,140,.08);
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); border-color: rgba(13,59,140,.15); transform: translateX(4px); }
.contact-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.contact-card p, .contact-card a { font-size: .88rem; color: var(--text-light); line-height: 1.5; }
.contact-card a:hover { color: var(--blue); }
.social-links { display: flex; gap: 12px; margin-top: 4px; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(13,59,140,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: .9rem;
  line-height: 1;
  transition: var(--transition);
  text-decoration: none;
}
.social-links a i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: .9rem;
  line-height: 40px;
  text-align: center;
  pointer-events: none;
}
.social-links a:hover { background: var(--blue); color: var(--white); border-color: var(--blue); transform: translateY(-3px); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13,59,140,.08);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(13,59,140,.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(13,59,140,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238a94a6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(13,59,140,.08);
  border: 1px solid rgba(13,59,140,.2);
  border-radius: var(--radius);
  color: var(--blue);
  font-size: .9rem;
  font-weight: 500;
}
.form-success.show { display: flex; }
.form-success i { color: #22c55e; font-size: 1.1rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--blue-dark); color: rgba(255,255,255,.8); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand { padding-right: 20px; }
.footer-logo { height: 85px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 24px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(245,166,35,.4);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.contact-list { gap: 14px !important; }
.contact-list li { display: flex !important; align-items: flex-start !important; gap: 12px !important; font-size: .85rem; color: rgba(255,255,255,.65); }
.contact-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.contact-list li a { color: rgba(255,255,255,.65); }
.contact-list li a:hover { color: var(--gold); }
.contact-list li a::before { display: none !important; }

.footer .social-links a {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.25);
  color: var(--white);
}
.footer .social-links a i { color: var(--white); line-height: 40px; }
.footer .social-links a:hover { background: var(--gold); color: var(--blue-dark); border-color: var(--gold); }
.footer .social-links a:hover i { color: var(--blue-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-credit-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.footer-credit-link:hover { color: var(--white); text-decoration: underline; }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 900;
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(245,166,35,.4); }

/* ============================================
   ANIMATIONS (simple fade-up via JS)
   ============================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-left"]  { transform: translateX(28px); }
[data-aos="zoom-in"]    { transform: scale(.92); }
[data-aos].aos-animate  { opacity: 1 !important; transform: none !important; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet – 1024px */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(4, 1fr); }
  .about-grid, .why-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* Tablet – 900px */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text p, .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .process-connector { transform: rotate(90deg); padding: 0; }
  .process-step { width: 100%; max-width: 480px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

/* Mobile – 680px */
@media (max-width: 680px) {
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-cards { grid-template-columns: 1fr 1fr; }
  .blue-card { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 48px; height: 1px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
}

/* Mobile – 480px */
@media (max-width: 480px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--blue-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 32px;
    gap: 4px;
    transform: translateX(-100%);
    transition: transform .35s ease;
    z-index: 998;
    height: 100vh;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--white) !important; font-size: 1.1rem; padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-cta { display: none; }
}
@media (min-width: 481px) {
  .nav-links { display: flex !important; transform: none !important; position: static !important; background: none !important; flex-direction: row !important; height: auto !important; padding: 0 !important; }
}

/* Larger Tablets that still need hamburger */
@media (max-width: 820px) and (min-width: 481px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--blue-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 32px;
    gap: 4px;
    transform: translateX(-100%);
    transition: transform .35s ease;
    z-index: 998;
    height: 100vh;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--white) !important; font-size: 1.1rem; padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-cta { display: none; }
}
@media (min-width: 821px) {
  .nav-links { display: flex !important; transform: none !important; position: static !important; background: none !important; flex-direction: row !important; height: auto !important; padding: 0 !important; }
  .hamburger { display: none !important; }
}
