html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Sora', sans-serif;
  background: #fff;
  color: #1a1a2e;
  line-height: 1.7;
}

header {
  background: #1A2B6D;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 52px;
  width: auto;
}

.logo-text {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #F05E05;
  font-weight: 600;
}

.cta-btn {
  background: #F05E05;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: background .2s;
}

.cta-btn:hover {
  background: #d44d00 !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .logo-text {
    display: none;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #1A2B6D;
    padding: 16px 24px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
}

footer {
  background: linear-gradient(180deg, #0d1a4a 0%, #0a1235 100%);
  color: rgba(255, 255, 255, .8);
  padding: 56px 40px 28px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 70%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 40%, rgba(255,255,255,.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 80%, rgba(255,255,255,.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 30%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 85%, rgba(255,255,255,.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 55%, rgba(255,255,255,.25) 0%, transparent 100%);
  pointer-events: none;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.footer-logo-row img {
  height: 72px;
  width: auto;
}

.footer-brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.3;
}

.footer-tagline {
  font-size: .9rem;
  opacity: .7;
  font-style: italic;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  text-decoration: none;
  transition: background .2s;
}

.footer-social a:hover {
  background: #F05E05;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-col-locations h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 20px;
}

.footer-locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
}

.footer-location-item {
  margin-bottom: 0;
}

.footer-location-item strong {
  display: block;
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.footer-location-item span {
  font-size: .85rem;
  opacity: .7;
  line-height: 1.5;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.footer-copy {
  font-size: .8rem;
  opacity: .5;
}

/* Legacy classes kept for backward compat */
.footer-contact {
  display: none;
}

.footer-addresses {
  display: none;
}

@media (max-width: 768px) {
  footer {
    padding: 40px 24px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

/* ── SECTIONS ── */
.hero {
  background: linear-gradient(135deg, #1A2B6D 0%, #0a1540 100%);
  color: #fff;
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/894d3dba53985b8e85310f00122109b1.jpg') center/cover no-repeat;
  opacity: .12;
}

.hero-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero h1 span {
  color: #F05E05;
}

.hero p {
  font-size: 1.15rem;
  opacity: .88;
  max-width: 680px;
  margin: 0 auto 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #F05E05;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background .2s;
}

.btn-primary:hover {
  background: #d44d00;
}

.btn-secondary {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, .3);
  transition: background .2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .22);
}

.btn-text {
  color: #F05E05;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 14px 16px;
}

.btn-text:hover {
  text-decoration: underline;
}

.section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #F05E05;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #1A2B6D;
  margin-bottom: 20px;
  line-height: 1.25;
}

.section-body {
  font-size: 1.05rem;
  color: #444;
  max-width: 720px;
  line-height: 1.8;
}

.section-alt {
  background: #F7F8FC;
}

/* Expertise */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.expertise-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .12);
}

@media (max-width: 768px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }
}

/* Values */
.values-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.values-intro .section-title {
  margin: 0 auto 16px;
}

.values-intro p {
  font-size: 1.05rem;
  color: #444;
}

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

.value-card {
  flex: 1 1 300px;
  max-width: 340px;
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
  border-top: 4px solid #F05E05;
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A2B6D;
  margin-bottom: 10px;
}

.value-card p {
  font-size: .9rem;
  color: #555;
  line-height: 1.7;
}

/* Leaders */
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 36px;
  margin-top: 48px;
}

.leader-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
}

.leader-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.leader-body {
  padding: 24px;
}

.leader-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1A2B6D;
  margin-bottom: 4px;
}

.leader-role {
  font-size: .85rem;
  color: #F05E05;
  font-weight: 600;
  margin-bottom: 12px;
}

.leader-bio {
  font-size: .9rem;
  color: #555;
  line-height: 1.7;
}

/* Offices */
.offices-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  margin-top: 140px;
}

.office-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  text-align: center;
  min-width: 200px;
}

.office-flag {
  font-size: 3.5rem;
  margin-bottom: 8px;
}

.office-city {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1A2B6D;
  margin-bottom: 4px;
}

.office-country {
  font-size: 0.95rem;
  color: #555;
}

/* Contact */
.contact-box {
  background: linear-gradient(135deg, #1A2B6D, #0d1a4a);
  color: #fff;
  border-radius: 16px;
  padding: 56px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-box h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-box p {
  opacity: .85;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  text-align: left;
}

.contact-item h4 {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .65;
  margin-bottom: 6px;
}

.contact-item p,
.contact-item a {
  color: #fff;
  font-size: .95rem;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 21, 64, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #1A2B6D;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: 16px;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.modal-close:hover {
  opacity: 1;
}

body.modal-open {
  overflow: hidden;
}

/* ── CONTACT FORM (MODAL VERSION) ── */
.modal-form-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
}

.modal-form-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #F05E05;
}

.contact-form {
  background: #F7F8FC;
  padding: 32px;
  border-radius: 12px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1A2B6D;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #F05E05;
}

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

.submit-btn {
  grid-column: span 2;
  background: #F05E05;
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #d44d00;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .submit-btn {
    grid-column: span 1;
  }

  .modal-container {
    padding: 24px;
  }
}