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

:root {
  --navy-900: #0A1628;
  --navy-800: #0F2140;
  --navy-700: #152D54;
  --navy-600: #1B3A68;
  --gold-500: #C5975B;
  --gold-400: #D4AA71;
  --gold-300: #E3C08E;
  --slate-600: #475569;
  --slate-400: #94A3B8;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

*,
*::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(--slate-600);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition)
}

ul,
ol {
  list-style: none
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  color: var(--navy-800);
  line-height: 1.2;
  font-weight: 600
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem)
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem)
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem)
}

h4 {
  font-size: 1.25rem
}

p {
  margin-bottom: 1rem
}

.gold-text {
  color: var(--gold-500)
}

.section-label {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
  display: block
}

.section-title {
  margin-bottom: 20px
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--slate-400);
  max-width: 640px;
  margin-bottom: 48px
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .5px;
  cursor: pointer;
  border: none;
  transition: var(--transition)
}

.btn-primary {
  background: var(--gold-500);
  color: var(--white)
}

.btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 151, 91, .3)
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white)
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy-800)
}

.btn-navy {
  background: var(--navy-700);
  color: var(--white)
}

.btn-navy:hover {
  background: var(--navy-600);
  transform: translateY(-2px)
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy-700);
  border: 2px solid var(--navy-700)
}

.btn-outline-navy:hover {
  background: var(--navy-700);
  color: var(--white)
}

.btn-sm {
  padding: 10px 24px;
  font-size: .85rem
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 40px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: var(--transition)
}

.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition)
}

.logo .logo-accent {
  color: var(--gold-500)
}

.logo img {
  transition: var(--transition);
}

.logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.site-footer .logo img {
  filter: brightness(0) invert(1);
}

.site-footer .logo:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
}

.scrolled .logo {
  color: var(--navy-800)
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px
}

.main-nav a {
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  padding: 8px 0;
  position: relative;
  transition: var(--transition)
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: var(--transition)
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white)
}

.scrolled .main-nav a {
  color: var(--slate-600)
}

.scrolled .main-nav a:hover,
.scrolled .main-nav a.active {
  color: var(--navy-800)
}

.nav-dropdown {
  position: relative
}

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 240px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition)
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  color: var(--slate-600) !important;
  font-size: .95rem;
  text-transform: none;
  letter-spacing: 0;
  transition: all .3s ease;
}

.dropdown-menu a:hover {
  background: var(--navy-800);
  color: var(--white) !important;
  padding-left: 32px;
}

.dropdown-menu a::after {
  display: none
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 24px;
}

.lang-switch a {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.lang-switch a.active,
.lang-switch a:hover {
  color: var(--gold-500);
}

.lang-switch span {
  color: rgba(255, 255, 255, 0.2);
  font-size: .8rem;
}

.scrolled .lang-switch a {
  color: var(--slate-400);
}

.scrolled .lang-switch a.active,
.scrolled .lang-switch a:hover {
  color: var(--gold-500);
}

.scrolled .lang-switch span {
  color: var(--slate-200);
}

.nav-cta {
  margin-left: 12px
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: .8rem
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition)
}

.scrolled .hamburger span {
  background: var(--navy-800)
}

/* MOBILE NAV */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--navy-900);
  padding: 100px 40px 40px;
  z-index: 999;
  transition: var(--transition);
  overflow-y: auto
}

.mobile-nav.open {
  right: 0
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: rgba(255, 255, 255, .8);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.mobile-nav a:hover {
  color: var(--gold-500)
}

.mobile-lang-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.mobile-lang-switch a {
  padding: 0;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .4);
}

.mobile-lang-switch a.active {
  color: var(--gold-500);
}

.mobile-lang-switch span {
  color: rgba(255, 255, 255, .2);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition)
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--header-height) 24px 80px;
  background-color: var(--navy-900);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0
}

.hero-bg::after,
.hero-bg-overlay {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, .25) 0%, rgba(15, 33, 64, .10) 50%, rgba(21, 45, 84, 0) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px
}

.hero h1 .gold-text {
  display: block;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px
}

.hero p {
  color: rgba(255, 255, 255, .75);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto
}

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

.hero-page {
  min-height: 50vh
}

.hero-page .hero-content {
  padding-top: 40px
}

/* TRUST BAR */
.trust-bar {
  background: var(--navy-800);
  padding: 48px 0
}

.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center
}

.trust-item .trust-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold-500);
  font-weight: 700;
  line-height: 1
}

.trust-item .trust-label {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px
}

/* SECTIONS */
.section {
  padding: 100px 0
}

.section-alt {
  background: var(--off-white)
}

.section-navy {
  background: var(--navy-800);
  color: var(--white)
}

.section-navy h2,
.section-navy h3 {
  color: var(--white)
}

.section-navy p {
  color: rgba(255, 255, 255, .7)
}

.text-center {
  text-align: center
}

.mx-auto {
  margin-left: auto;
  margin-right: auto
}

/* CARDS */
.cards-grid {
  display: grid;
  gap: 32px
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr)
}

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

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--slate-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
  border-color: var(--gold-500)
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold-500);
  font-size: 1.5rem
}

.card h3 {
  margin-bottom: 12px
}

.card p {
  color: var(--slate-400);
  font-size: .95rem;
  margin-bottom: 20px
}

.card-link {
  color: var(--gold-500);
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.card-link:hover {
  gap: 10px;
  color: var(--gold-400)
}

.card-link::after {
  content: '→'
}

/* FEATURE CARDS (visa detail) */
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--slate-200);
  transition: var(--transition)
}

.feature-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .06)
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  font-size: 1.25rem
}

/* TWO COL LAYOUT */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.two-col-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .1)
}

.two-col-image img {
  width: 100%;
  height: 400px;
  object-fit: cover
}

.two-col-content .section-label {
  margin-bottom: 8px
}

.two-col-content h2 {
  margin-bottom: 16px
}

.two-col-content p {
  margin-bottom: 24px
}

/* TEAM GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px
}

.team-member {
  text-align: center
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid var(--slate-200);
  transition: var(--transition)
}

.team-photo:hover {
  border-color: var(--gold-500)
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.team-member h4 {
  margin-bottom: 4px
}

.team-member .team-role {
  color: var(--gold-500);
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 8px
}

.team-member p {
  font-size: .9rem;
  color: var(--slate-400)
}

/* TIMELINE / PROCESS */
.process-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px
}

.process-tab {
  padding: 12px 28px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--slate-200);
  color: var(--slate-600);
  background: var(--white);
  transition: var(--transition)
}

.process-tab.active,
.process-tab:hover {
  background: var(--navy-700);
  color: var(--white);
  border-color: var(--navy-700)
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--slate-200)
}

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s ease
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0)
}

.timeline-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-700);
  color: var(--gold-500);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

.timeline-content h4 {
  margin-bottom: 8px;
  color: var(--navy-800)
}

.timeline-content p {
  color: var(--slate-400);
  font-size: .95rem;
  margin-bottom: 0
}

.process-panel {
  display: none
}

.process-panel.active {
  display: block
}

/* TESTIMONIALS */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px;
  border: 1px solid var(--slate-200);
  transition: var(--transition)
}

.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .06)
}

.testimonial-stars {
  color: var(--gold-500);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px
}

.testimonial-quote {
  font-style: italic;
  color: var(--slate-600);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--gold-300)
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-700);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem
}

.testimonial-name {
  font-weight: 600;
  color: var(--navy-800);
  font-size: .9rem
}

.testimonial-title {
  font-size: .8rem;
  color: var(--slate-400)
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  transition: var(--transition);
  position: relative;
}

.blog-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  border: 3px solid var(--gold-500);
  opacity: 0;
  transform: scale(1.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 10;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .08);
  border-color: transparent;
}

.blog-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.blog-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative
}

.blog-card-image .blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold-500);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px
}

.blog-card-body {
  padding: 28px
}

.blog-card-date {
  font-size: .8rem;
  color: var(--slate-400);
  margin-bottom: 8px
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.4
}

.blog-card p {
  font-size: .9rem;
  color: var(--slate-400);
  margin-bottom: 16px
}

/* BLOG ARTICLE */
.blog-article h2 {
  font-size: 1.6rem;
  color: var(--navy-800)
}

.blog-article p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--slate-600)
}

/* FAQ ACCORDION */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition)
}

.faq-item.open {
  border-color: var(--gold-500);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .05)
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy-800);
  font-size: .95rem;
  background: var(--white);
  transition: var(--transition)
}

.faq-question:hover {
  color: var(--gold-500)
}

.faq-question i {
  font-size: .8rem;
  color: var(--gold-500);
  transition: transform .3s ease
}

.faq-item.open .faq-question i {
  transform: rotate(45deg)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 24px;
  background: var(--off-white)
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 16px 24px 20px
}

.faq-answer p {
  font-size: .9rem;
  color: var(--slate-600);
  margin: 0;
  line-height: 1.7
}

/* APPROVAL SLIDER */
.approval-slider-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 0 0 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%)
}

.approval-slider {
  display: flex;
  gap: 28px;
  animation: scrollApprovals 35s linear infinite;
  width: max-content;
  padding: 10px 0
}

.approval-slider:hover {
  animation-play-state: paused
}

@keyframes scrollApprovals {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(calc(-320px * 5 - 140px))
  }
}

.approval-slide {
  flex-shrink: 0;
  width: 300px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  overflow: hidden;
  transition: all .4s ease;
  cursor: pointer;
  backdrop-filter: blur(4px)
}

.approval-slide:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold-500);
  box-shadow: 0 20px 50px rgba(197, 151, 91, .15)
}

.approval-slide img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top;
  transition: transform .5s ease
}

.approval-slide:hover img {
  transform: scale(1.03)
}

.approval-label {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .8)
}

.approval-badge {
  background: var(--gold-500);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0
}

.approval-nav {
  display: flex;
  justify-content: center;
  gap: 12px
}

.approval-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .2);
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center
}

.approval-btn:hover {
  border-color: var(--gold-500);
  background: var(--gold-500);
  color: var(--white)
}

/* CONTACT FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 64px
}

.form-group {
  margin-bottom: 20px
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 6px
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--navy-800);
  background: var(--white);
  transition: var(--transition)
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(197, 151, 91, .15)
}

textarea.form-control {
  min-height: 140px;
  resize: vertical
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center
}

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

.contact-info-card {
  background: var(--navy-800);
  border-radius: 16px;
  padding: 40px;
  color: var(--white)
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 24px
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start
}

.contact-info-item .ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(197, 151, 91, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  flex-shrink: 0
}

.contact-info-item h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  margin-bottom: 2px
}

.contact-info-item p {
  color: rgba(255, 255, 255, .6);
  font-size: .85rem;
  margin-bottom: 0
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  padding: 80px 0;
  text-align: center
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px
}

.cta-banner p {
  color: rgba(255, 255, 255, .7);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto
}

/* GLOBAL PRESENCE */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.office-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  transition: var(--transition)
}

.office-card:hover {
  border-color: var(--gold-500);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .06)
}

.office-card .office-flag {
  font-size: 2rem;
  margin-bottom: 12px
}

.office-card h4 {
  margin-bottom: 4px
}

.office-card p {
  font-size: .85rem;
  color: var(--slate-400);
  margin: 0
}

/* COMPARISON TABLE */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06)
}

.comparison-table thead {
  background: var(--navy-800);
  text-align: center;
}

.comparison-table th {
  padding: 18px 24px;
  color: var(--white);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.comparison-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--slate-200);
  font-size: .9rem;
  color: var(--slate-600)
}

.comparison-table tbody tr:hover {
  background: var(--off-white)
}

.comparison-table tbody tr:last-child td {
  border-bottom: none
}

/* KEY DETAILS */
.key-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.key-detail {
  text-align: center;
  padding: 32px;
  border-radius: 12px;
  background: var(--off-white);
  border: 1px solid var(--slate-200)
}

.key-detail .detail-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--navy-800);
  font-weight: 700;
  margin-bottom: 4px
}

.key-detail .detail-label {
  font-size: .85rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 1px
}

/* FOOTER */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .6);
  padding: 80px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px
}

.footer-brand .logo {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 16px
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .5)
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px
}

.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: .9rem;
  color: rgba(255, 255, 255, .5);
  transition: var(--transition)
}

.footer-col a:hover {
  color: var(--gold-500);
  padding-left: 4px
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
  transition: var(--transition)
}

.footer-social a:hover {
  background: var(--gold-500);
  color: var(--white)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 24px 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .35)
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all .7s cubic-bezier(.4, 0, .2, 1)
}

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

.fade-in {
  opacity: 0;
  transition: opacity .7s ease
}

.fade-in.visible {
  opacity: 1
}

.stagger-1 {
  transition-delay: .1s
}

.stagger-2 {
  transition-delay: .2s
}

.stagger-3 {
  transition-delay: .3s
}

.stagger-4 {
  transition-delay: .4s
}

/* RESPONSIVE */
@media(max-width:1024px) {

  .cards-3,
  .testimonial-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cards-grid[style*="repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important
  }

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

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

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

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .key-details {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {

  .main-nav,
  .nav-cta {
    display: none
  }

  .hamburger {
    display: flex
  }

  .hero {
    min-height: 80vh
  }

  .hero-page {
    min-height: 40vh
  }

  .section {
    padding: 64px 0
  }

  .trust-bar .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
  }

  .cards-3,
  .testimonial-grid,
  .blog-grid,
  .team-grid,
  .key-details {
    grid-template-columns: 1fr
  }

  .cards-grid[style*="repeat(4"] {
    grid-template-columns: 1fr !important
  }

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

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

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

  .comparison-table {
    font-size: .8rem
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px
  }
}

/* Navy Blue Hover Effect on Service Subsections */
.key-detail {
  background: var(--off-white);
  border-radius: 8px;
  transition: var(--transition);
}

.card:hover .key-detail {
  background: #1B365D;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(27, 54, 93, 0.2);
}

.card:hover .key-detail .detail-value {
  color: #FFFFFF !important;
}

.card:hover .key-detail .detail-label {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Blog Article Typography Updates */
.blog-article p,
.blog-article div,
.blog-article span,
.blog-article h1,
.blog-article h2,
.blog-article h3,
.blog-article h4,
.blog-article h5,
.blog-article h6,
.blog-article li {
  line-height: 1 !important;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}