/* ============================================================
   GLOBDESTIN — Premium B2B Tourism Landing Page
   Design System & Styles
   ============================================================ */

/* ----- CSS Custom Properties ----- */
:root {
  /* Brand Colors */
  --color-primary: #0F6CBD;
  --color-primary-dark: #0B2F61;
  --color-accent: #FF7A00;
  --color-teal: #00A3A6;
  --color-charcoal: #1E293B;
  --color-base: #F8FAFC;
  --color-white: #FFFFFF;
  --color-border: #E2E8F0;
  --color-text: #1E293B;
  --color-heading: #0B2F61;
  --color-body: #1E293B;
  --color-primary-blue: #0F6CBD;
  --color-bright-orange: #FF7A00;
  --color-tech-teal: #00A3A6;
  --color-deep-charcoal: #1E293B;
  --color-pristine-base: #F8FAFC;
  --color-navy-deep: #0A192F;
  --font-headers: 'Plus Jakarta Sans', 'Inter', sans-serif;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding-desktop: 70px;
  --section-padding-mobile: 50px;
  --container-max: 1200px;
  --container-padding: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 108, 189, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 108, 189, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 108, 189, 0.08);
  --shadow-xl: 0 30px 60px rgba(15, 108, 189, 0.12);

  /* Transitions */
  --transition: all 0.3s ease-in-out;
  --transition-slow: all 0.5s ease-in-out;
  --transition-premium: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-body);
  background: var(--color-white);
  overflow-x: hidden;
}

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



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

ul {
  list-style: none;
}

/* ----- Container ----- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ----- Section Base ----- */
.section {
  padding: var(--section-padding-desktop) 0;
  position: relative;
}

.section-alt {
  background: var(--color-base);
}

.section-gradient {
  background: linear-gradient(180deg, #F0F7FF 0%, #FFFFFF 100%);
}

.section-gradient-alt {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5FCF5 100%);
}

.section-decor::before,
.section-decor::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.section-decor::before {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(15, 108, 189, 0.04) 0%, transparent 70%);
  top: -80px;
  left: -120px;
}

.section-decor::after {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 163, 166, 0.04) 0%, transparent 70%);
  bottom: -60px;
  right: -80px;
}

.section-decor-right::before {
  top: -60px;
  right: -100px;
  left: auto;
}

.section-decor-right::after {
  bottom: -80px;
  left: -100px;
  right: auto;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 20px;
  position: relative;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--color-teal);
  vertical-align: middle;
  margin: 0 16px;
  opacity: 0.3;
  animation: star-twinkle 3s ease-in-out infinite;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.section-desc {
  font-size: 18px;
  color: var(--color-body);
  opacity: 0.7;
  line-height: 1.8;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(255, 122, 0, 0.3);
}

.btn-primary:hover {
  background: var(--color-teal);
  box-shadow: 0 6px 24px rgba(0, 163, 166, 0.35);
  transform: translateY(-2px);
}

.btn-glow {
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(255, 122, 0, 0.3); }
  50% { box-shadow: 0 4px 32px rgba(255, 122, 0, 0.5); }
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  animation: arrow-slide 1s ease-in-out infinite;
}

/* ----- Header / Navigation ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: var(--transition);
  will-change: transform;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  max-height: 56px;
}

.logo img {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-charcoal);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ----- Hamburger ----- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----- Mobile Overlay ----- */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: #FFFFFF;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto;
}

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

.mobile-overlay-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 88px 24px 24px;
  transform: translateY(24px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-overlay.open .mobile-overlay-inner {
  transform: translateY(0);
}

.mobile-overlay-close {
  position: absolute;
  top: 84px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-charcoal);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-overlay-close:hover {
  background: rgba(0,0,0,0.04);
}

.mobile-overlay-brand {
  text-align: center;
  padding: 24px 0 20px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
}

.mobile-brand-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-charcoal);
  opacity: 0.65;
  line-height: 1.5;
  max-width: 260px;
  margin: 0 auto;
}

.mobile-overlay-nav {
  flex: 1;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--color-heading);
  padding: 12px 16px;
  transition: var(--transition-premium);
  text-decoration: none;
  letter-spacing: -0.015em;
  line-height: 1.2;
  border-radius: 8px;
  position: relative;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--color-primary);
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transition: var(--transition-premium);
}

.mobile-nav-link:hover {
  color: var(--color-primary);
  background: rgba(15, 108, 189, 0.04);
  padding-left: 24px;
}

.mobile-nav-link:hover::before {
  opacity: 1;
}

.mobile-overlay-cta {
  padding: 32px 0 24px;
}

.btn-overlay-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  background: var(--color-bright-orange);
  color: #FFFFFF;
  font-family: var(--font-headers);
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(255, 122, 0, 0.2);
  transition: var(--transition-premium);
}

.btn-overlay-cta:hover {
  background: var(--color-primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 108, 189, 0.3);
}

.mobile-overlay-footer {
  text-align: center;
  padding: 20px 0 12px;
  border-top: 1px solid var(--color-border);
}

.representing-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-charcoal);
  opacity: 0.35;
  margin-bottom: 16px;
}

.representing-flags {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.flag-icon-sm {
  width: 18px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  border-radius: 2px;
  object-fit: cover;
}

.flag-item {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-charcoal);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
}

/* ----- HERO SECTION — World-Class B2B Enterprise ----- */

.globdestin-hero {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFD 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}

/* Background Layer */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-world-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
}

.hero-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 45% 55%;
  column-gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ----- Left Column ----- */
.hero-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 10;
  grid-column: 1;
  grid-row: 1;
}

.badge-container {
  margin-bottom: 24px;
}

.premium-badge {
  background: rgba(0, 163, 166, 0.08);
  color: var(--color-tech-teal);
  font-family: var(--font-headers);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  padding: 8px 20px;
  border-radius: 100px;
  display: inline-block;
}

.hero-primary-heading {
  font-family: var(--font-headers);
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--color-navy-deep);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 600px;
}

.heading-line {
  display: block;
}

.highlight-text {
  background: linear-gradient(135deg, var(--color-primary-blue) 0%, var(--color-tech-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead-paragraph {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-deep-charcoal);
  max-width: 520px;
  margin-bottom: 28px;
  opacity: 0.7;
}

/* CTA Row */
.hero-cta-block {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
}

.btn-cta-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  background-color: var(--color-bright-orange);
  color: #FFFFFF;
  font-family: var(--font-headers);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(255, 122, 0, 0.2);
  transition: var(--transition-premium);
  border: none;
  cursor: pointer;
}

.btn-cta-primary:hover {
  background-color: var(--color-primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 108, 189, 0.3);
}

.btn-cta-primary .arrow-icon {
  transition: var(--transition-premium);
}

.btn-cta-primary:hover .arrow-icon {
  transform: translateX(5px);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--color-primary-blue);
  font-family: var(--font-headers);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid var(--color-primary-blue);
  transition: var(--transition-premium);
  cursor: pointer;
}

.btn-cta-secondary:hover {
  background: var(--color-primary-blue);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 108, 189, 0.2);
}

/* Hero Stats Bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-stat {
  text-align: center;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.5);
  border-radius: 10px;
  transition: var(--transition-premium);
}

.hero-stat:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 108, 189, 0.15);
  box-shadow: 0 6px 20px rgba(15, 108, 189, 0.06);
}

.hero-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 2px;
}

.hero-stat-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--color-navy-deep);
  opacity: 0.65;
  line-height: 1.3;
}

/* Trust Glass Cards */
.hero-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 480px;
}

.trust-glass {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 10px;
  transition: var(--transition-premium);
}

.trust-glass:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 108, 189, 0.15);
  box-shadow: 0 6px 20px rgba(15, 108, 189, 0.06);
}

.trust-glass-icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.trust-glass-text {
  font-family: var(--font-headers);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-navy-deep);
  line-height: 1.2;
}

/* Hero Mobile/Desktop Toggle */
.hero-mobile { display: block; }
.hero-desktop { display: none; }

/* ----- Desktop Hero (1024px+) — Pixel-Match Reference ----- */
@media (min-width: 1024px) {
  .hero-mobile { display: none; }
  .hero-desktop { display: block; }
  .globdestin-hero { padding: 0; min-height: 0; }

  .site-header { height: 84px; background: #fff; }
  .nav-container { height: 84px; }

  .hero-desktop {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .hero-desktop-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    animation: fade-in 0.8s ease-out forwards;
  }

  .hero-desktop-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15));
    pointer-events: none;
    z-index: 1;
  }

  .hero-desktop-top {
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 3;
  }

  .hero-desktop-top .premium-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #0B2A5B;
    color: #fff;
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 999px;
    margin-bottom: 4px;
    opacity: 0;
    animation: fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.15s;
  }

  .gold-star { flex-shrink: 0; }

  .hero-desktop-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    color: #0B2A5B;
    letter-spacing: -1px;
    max-width: 700px;
    margin: 0;
    opacity: 0;
    animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.35s;
  }

  .hd-blue { color: #0F6CBD; }
  .hd-green { color: #00A3A6; }

  .hero-accent-line {
    width: 100px;
    height: 3px;
    background: #FF8A00;
    border-radius: 999px;
    margin: 8px auto;
    opacity: 0;
    animation: scale-x 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
    transform-origin: center;
  }

  .hero-desktop-desc {
    font-size: 15px;
    line-height: 1.55;
    font-weight: 400;
    color: rgba(40,50,65,.75);
    max-width: 480px;
    margin: 0;
    text-align: center;
    margin-top: 8px;
    opacity: 0;
    animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.8s;
  }

  .hero-desktop-bottom {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 3;
  }

  .hero-service-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 860px;
    height: 62px;
    padding: 0 40px;
    background: rgba(11, 37, 89, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    gap: 0;
    opacity: 0;
    animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.1s;
  }

  .hss-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: center;
    padding: 0 6px;
  }

  .hss-icon {
    width: 36px;
    height: 36px;
    background: rgba(37, 99, 235, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 2px;
  }

  .hss-icon svg {
    width: 18px;
    height: 18px;
    display: block;
  }

  .hss-label {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
    white-space: nowrap;
    padding: 0 4px;
  }

  .hss-sep {
    width: 1px;
    height: 26px;
    background: rgba(255,255,255,0.18);
    flex-shrink: 0;
  }

  .hero-cta-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    opacity: 0;
    animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.4s;
  }

  .hero-cta-row .btn-cta-primary,
  .hero-cta-row .btn-cta-secondary {
    width: 220px;
    height: 46px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    font-family: var(--font-headers);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
  }

  .hero-cta-row .btn-cta-primary {
    background: #ff8a00;
    color: #fff;
    box-shadow: 0 8px 28px rgba(255, 138, 0, 0.25);
  }

  .hero-cta-row .btn-cta-primary:hover {
    background: #e67a00;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(255, 138, 0, 0.35);
  }

  .hero-cta-row .btn-cta-secondary {
    background: rgba(255,255,255,0.96);
    color: #1d4ed8;
    border: 2px solid #1d4ed8;
  }

  .hero-cta-row .btn-cta-secondary:hover {
    background: #1d4ed8;
    color: #fff;
    transform: translateY(-2px);
  }
}

/* Desktop Hero — medium screens */
@media (min-width: 1024px) and (max-width: 1365px) {
  .hero-desktop { min-height: 520px; max-height: 640px; }
  .hero-desktop-top { max-width: 620px; }
  .hero-desktop-title { font-size: 32px; max-width: 480px; letter-spacing: 0; }
  .hero-desktop-desc { font-size: 14px; max-width: 400px; }
  .hero-desktop-bottom { gap: 14px; }
  .hero-service-strip { height: 54px; padding: 0 22px; max-width: 700px; }
  .hss-item { gap: 8px; padding: 0 4px; }
  .hss-icon { width: 30px; height: 30px; padding: 2px; }
  .hss-icon svg { width: 16px; height: 16px; }
  .hss-label { font-size: 12px; }
  .hss-sep { height: 20px; }
  .hero-cta-row { gap: 12px; margin-top: 12px; }
  .hero-cta-row .btn-cta-primary,
  .hero-cta-row .btn-cta-secondary { width: 170px; height: 40px; font-size: 13px; padding: 0 14px; }
}

/* ----- Right Column — Hero Image ----- */
.hero-visual-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  overflow: visible;
  grid-column: 2;
  grid-row: 1;
}

.hero-image {
  position: relative;
  z-index: 2;
  width: 115%;
  max-width: none;
  max-height: 750px;
  height: auto;
  object-fit: contain;
  transform: translateX(40px);
  animation: image-float 8s ease-in-out infinite;
  will-change: transform;
}

.hero-image-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(30,144,255,0.10) 0%, rgba(30,144,255,0.05) 35%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

@keyframes image-float {
  0%, 100% { transform: translateX(40px) translateY(0px); }
  50% { transform: translateX(40px) translateY(-12px); }
}

/* Destination Badges */
.destination-badges {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.dest-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-headers);
  font-size: 11px;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(15, 108, 189, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: badge-float 4s ease-in-out infinite;
  white-space: nowrap;
}

.dest-badge:nth-child(1) { animation-delay: 0s; }
.dest-badge:nth-child(2) { animation-delay: 0.8s; }
.dest-badge:nth-child(3) { animation-delay: 1.6s; }
.dest-badge:nth-child(4) { animation-delay: 2.4s; }

.flag-icon {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
  display: inline-block;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

/* Route Lines SVG */
.route-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.08;
}

.route-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: route-draw 4s ease-in-out forwards;
}

.route-path:nth-child(1) { animation-delay: 0.2s; }
.route-path:nth-child(2) { animation-delay: 0.6s; }
.route-path:nth-child(3) { animation-delay: 1s; }

@keyframes route-draw {
  to { stroke-dashoffset: 0; }
}

.glow-marker {
  animation: marker-pulse 3s ease-in-out infinite;
  transform-origin: center;
}

.glow-marker:nth-child(4) { animation-delay: 0s; }
.glow-marker:nth-child(5) { animation-delay: 0.8s; }
.glow-marker:nth-child(6) { animation-delay: 1.6s; }

@keyframes marker-pulse {
  0%, 100% { r: 3; opacity: 0.5; }
  50% { r: 5; opacity: 1; }
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-tech-teal);
  opacity: 0;
  animation: particle-drift 8s ease-in-out infinite;
}

@keyframes particle-drift {
  0% { opacity: 0; transform: translateY(0) translateX(0); }
  20% { opacity: 0.2; }
  80% { opacity: 0.1; }
  100% { opacity: 0; transform: translateY(-120px) translateX(40px); }
}

/* ----- Animations ----- */
.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes star-twinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes shimmer-slide {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes arrow-slide {
  0% { transform: translateX(0); }
  50% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

@keyframes pop-in {
  0% { transform: scale(0.6); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes scale-x {
  0% { transform: scaleX(0); opacity: 0; }
  100% { transform: scaleX(1); opacity: 1; }
}

@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Desktop / Mobile visibility */
.desktop-only { display: block; }
.mobile-only { display: none; }

/* ----- RESPONSIVE ----- */
@media (max-width: 1200px) {
  .hero-container {
    padding: 0 40px;
    grid-template-columns: 45% 55%;
    column-gap: 40px;
  }
  .hero-primary-heading { font-size: 42px; }
  .hero-image { max-width: 560px; max-height: 520px; }
  .hero-image-glow { width: 420px; height: 420px; }
}

@media (max-width: 1024px) {
  .globdestin-hero {
    padding: 0;
    background-image: linear-gradient(
      180deg,
      rgba(0,0,0,.05) 0%,
      rgba(0,0,0,.18) 100%
    ), url('../assets/mobile-hero-bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 100vh;
    align-items: center;
    padding-top: 8vh;
    padding-bottom: 32px;
  }
  .nav-container { height: 58px; }

  .hero-mobile {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 58px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
  }
  .hero-mobile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
    z-index: 1;
  }
  .hero-mobile-routes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }
  .hero-mobile-plane {
    position: absolute;
    top: 12%;
    right: 8%;
    width: 48px;
    height: 48px;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-10deg) scale(1.4);
    opacity: .7;
    animation: float-subtle 4s ease-in-out infinite;
  }
  .hero-mobile-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,255,255,.30), transparent 70%);
    pointer-events: none;
    z-index: 1;
  }
  .hero-mobile-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 24px 30px;
    width: 88%;
    max-width: 360px;
    opacity: 0;
    animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .hero-mobile-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0B2A5B;
    color: #fff;
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fade-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
  }
  .hero-mobile-badge .gold-star {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
  .hero-mobile-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 8.5vw, 42px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
    margin: 0 0 24px;
    max-width: 340px;
    opacity: 0;
    animation: fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.25s;
  }
  .hero-mobile-title .hd-blue { color: #7DC8FF; }
  .hero-mobile-title .hd-green { color: #5AD8DB; }
  .hero-mobile-accent {
    width: 110px;
    height: 4px;
    background: #FF8A00;
    border-radius: 999px;
    margin-bottom: 28px;
    opacity: 0;
    animation: scale-x 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
    transform-origin: center;
  }
  .hero-mobile-desc {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
    max-width: 320px;
    margin: 0 0 28px;
    opacity: 0;
    animation: fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.65s;
  }
  .hero-mobile-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin-bottom: 18px;
    opacity: 0;
    animation: fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.85s;
  }
  .btn-mobile-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 290px;
    height: 58px;
    background: #FF7A00;
    color: #fff;
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 18px;
    border-radius: 14px;
    text-decoration: none;
    border: none;
    box-shadow: 0 10px 32px rgba(255,122,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .btn-mobile-primary:hover {
    background: #e86e00;
    transform: translateY(-2px);
  }
  .btn-mobile-primary .arrow-icon {
    transition: transform 0.3s ease;
  }
  .btn-mobile-primary:hover .arrow-icon {
    transform: translateX(4px);
  }
  .btn-mobile-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 290px;
    height: 58px;
    background: #fff;
    color: #0B2A5B;
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 18px;
    border-radius: 14px;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .btn-mobile-secondary:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
  }
  .hero-mobile-trust {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 6px rgba(0,0,0,0.25);
    text-align: center;
    margin: 0;
    opacity: 0;
    animation: fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.05s;
  }
  .hero-visual-wrapper { display: none; }
  .hero-container,
  .hero-text-wrapper,
  .hero-cta-block,
  .hero-trust,
  .badge-container { display: none; }
  .desktop-only { display: none; }
  .mobile-only { display: block; }
}

@media (max-width: 767px) {
  .globdestin-hero {
    padding-top: 0;
    padding-bottom: 0;
  }
  .hero-mobile {
    padding-top: 20px;
  }
  .hero-mobile-content {
    gap: 0;
    padding: 36px 20px 24px;
    max-width: 340px;
  }
  .hero-mobile-badge {
    margin-bottom: 16px;
  }
  .hero-mobile-title {
    font-size: clamp(30px, 8vw, 38px);
    margin-bottom: 18px;
    max-width: 300px;
  }
  .hero-mobile-accent {
    margin-bottom: 22px;
  }
  .hero-mobile-desc {
    font-size: 14px;
    max-width: 280px;
    margin-bottom: 22px;
  }
  .btn-mobile-primary,
  .btn-mobile-secondary {
    height: 54px;
    font-size: 17px;
    max-width: 270px;
    border-radius: 12px;
  }
  .hero-mobile-actions {
    gap: 12px;
    margin-bottom: 14px;
  }
  .hero-mobile-trust {
    font-size: 13px;
  }
  .hero-mobile-plane {
    width: 36px;
    height: 36px;
    top: 10%;
    right: 6%;
  }
}

/* ----- Services Section ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.services-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
}

.services-extra.open {
  max-height: 1200px;
  opacity: 1;
}

.services-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 28px auto 0;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary-blue);
  background: none;
  border: 2px solid var(--color-primary-blue);
  padding: 12px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition-premium);
}

.services-toggle:hover {
  background: var(--color-primary-blue);
  color: #FFFFFF;
}

.services-toggle svg {
  transition: transform 0.3s ease;
}

.services-toggle.open svg {
  transform: rotate(180deg);
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  animation: float-subtle 3s ease-in-out infinite;
}

.service-card:hover .service-icon svg rect,
.service-card:hover .service-icon svg circle,
.service-card:hover .service-icon svg path {
  stroke: var(--color-primary);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-body);
  opacity: 0.7;
}

/* ----- Destination Showcase (Premium Edit) ----- */
.showcase {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFD 100%);
  overflow: hidden;
}

.showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 Q40 15 50 10 Q55 25 45 35 Q50 45 40 50 Q35 55 25 50 Q15 45 10 35 Q5 25 15 15 Z' fill='none' stroke='%230F6CBD' stroke-width='0.3' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  pointer-events: none;
}

.showcase .container {
  position: relative;
  z-index: 1;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.showcase-card {
  position: relative;
  height: clamp(500px, 55vw, 600px);
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  box-shadow: 0 20px 60px rgba(10, 25, 47, 0.06);
  transition: box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(15, 108, 189, 0.1);
}

.showcase-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

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

.showcase-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 25, 47, 0.45) 100%);
  transition: opacity 0.5s ease;
}

.showcase-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 36px 32px 32px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card:hover .showcase-content {
  transform: translateY(-4px);
}

.showcase-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}

.showcase-countries {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 2px;
}

.showcase-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.showcase-services span {
  font-size: 11px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  background: var(--color-bright-orange);
  padding: 11px 26px;
  border-radius: 100px;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  align-self: flex-start;
}

.showcase-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.showcase-card:hover .showcase-cta {
  opacity: 1;
  transform: translateY(0);
}

.showcase-cta:hover {
  background: var(--color-primary-blue);
}

.showcase-cta:hover svg {
  transform: translateX(5px);
}

/* Stagger reveal on scroll */
.showcase-card {
  opacity: 0;
  transform: translateY(40px);
  animation: showcase-reveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.showcase-card:nth-child(1) { animation-delay: 0.05s; }
.showcase-card:nth-child(2) { animation-delay: 0.12s; }

@keyframes showcase-reveal {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-card {
    opacity: 1;
    transform: none;
    animation: none;
  }
}



/* ----- Contact Section ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 108, 189, 0.06);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-detail h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-body);
  opacity: 0.75;
}

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

.contact-detail a:hover {
  color: var(--color-accent);
}

.contact-social {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.contact-social h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 16px;
}

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

.social-links .social-link {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-charcoal);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links .social-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.social-links .social-link svg {
  width: 20px;
  height: 20px;
}

/* ----- Form ----- */
.contact-form {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}

.form-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-deep-charcoal);
}

.form-trust-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-tech-teal);
}

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

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-heading);
  margin-bottom: 6px;
}

.required {
  color: var(--color-accent);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-body);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(15, 108, 189, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-body);
  opacity: 0.4;
}

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

.form-group input.error,
.form-group textarea.error {
  border-color: #EF4444;
}

.form-group .error-message {
  font-size: 12px;
  color: #EF4444;
  margin-top: 4px;
  display: none;
}

.form-group input.error + .error-message,
.form-group textarea.error + .error-message {
  display: block;
}



/* ----- Back to Top ----- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 42px;
  height: 42px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(15, 108, 189, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-accent);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.3);
}

/* ----- Why Choose Globdestin ----- */
.why-choose {
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-blue), var(--color-tech-teal));
  opacity: 0;
  transition: var(--transition-premium);
}

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

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 108, 189, 0.06);
  border-radius: var(--radius-sm);
  transition: var(--transition-premium);
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-card:hover .why-icon {
  background: rgba(15, 108, 189, 0.12);
  transform: scale(1.05) rotate(-4deg);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-body);
  opacity: 0.7;
}

/* ----- Global Coverage ----- */
/* ----- Global Reach / Markets We Serve ----- */
.coverage {
  position: relative;
  background:
    radial-gradient(ellipse 50% 35% at 30% 45%, rgba(15, 108, 189, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 70% 55%, rgba(0, 163, 166, 0.04) 0%, transparent 70%),
    linear-gradient(180deg, #f8fbff 0%, #f4f7fb 100%);
}

.coverage .container {
  position: relative;
  z-index: 1;
}

/* Stats Bar */
.market-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
}

.market-stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-heading);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 108, 189, 0.08);
  border-radius: 100px;
  padding: 10px 22px;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

/* Market Graphic */
.market-graphic-wrap {
  max-width: 1100px;
  margin: 0 auto 64px;
  padding: 0 24px;
}

.market-graphic {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 24px;
}

/* Market Cards */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.coverage-card {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coverage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.coverage-card-header {
  padding: 28px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.coverage-flag {
  width: 32px;
  height: 24px;
  border-radius: 4px;
  object-fit: cover;
  display: block;
}

.coverage-card-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0;
}

.coverage-role {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--card-accent, var(--color-primary-blue));
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--card-accent, var(--color-primary-blue)) 10%, transparent);
  padding: 4px 12px;
  border-radius: 6px;
  align-self: flex-start;
  margin-top: 2px;
}

.coverage-card-body {
  padding: 0 24px 28px;
}

.coverage-card-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-body);
  margin: 0 0 12px;
}

.coverage-metric {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--card-accent, var(--color-primary-blue));
  background: color-mix(in srgb, var(--card-accent, var(--color-primary-blue)) 10%, transparent);
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.3px;
}

/* ----- Partner Ecosystem ----- */
.ecosystem-wrap {
  position: relative;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.eco-connector {
  display: none;
}

@media (min-width: 1024px) {
  .eco-connector {
    display: block;
    position: absolute;
    pointer-events: none;
    z-index: 0;
  }
  .eco-connector svg {
    width: 100%;
    height: 100%;
  }
  .eco-connector-line {
    stroke: var(--color-border);
    stroke-width: 1.5;
    stroke-dasharray: 6 4;
    fill: none;
  }
  .eco-connector-dot {
    fill: var(--color-primary);
    opacity: 0.2;
  }
  .ecosystem-grid {
    position: relative;
    z-index: 1;
  }
}

.eco-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.eco-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0F6CBD, #00A3A6);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.eco-card:hover::after {
  opacity: 1;
}

.eco-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.eco-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 108, 189, 0.06);
  border-radius: 50%;
  transition: var(--transition-premium);
}

.eco-icon svg {
  width: 28px;
  height: 28px;
}

.eco-card:hover .eco-icon {
  background: rgba(15, 108, 189, 0.12);
  transform: scale(1.1) rotate(5deg);
}

.eco-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 8px;
}

.eco-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-body);
  opacity: 0.7;
}

/* ----- Partnership Process ----- */
.process {
  background: var(--color-white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.process-step {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--color-base);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-primary-blue);
  line-height: 1;
  opacity: 0.3;
  flex-shrink: 0;
  min-width: 40px;
  transition: all 0.4s ease;
}

.process-step:hover .step-number {
  opacity: 0.6;
  transform: scale(1.05);
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-body);
  opacity: 0.7;
}

/* ----- Executive Leadership ----- */
.leadership {
  position: relative;
  background:
    radial-gradient(ellipse 55% 40% at 25% 50%, rgba(15, 108, 189, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 55% 40% at 75% 50%, rgba(0, 163, 166, 0.04) 0%, transparent 70%),
    linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%);
}

.leadership .section-header {
  margin-bottom: 48px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.leader-card {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
}

.leader-portrait {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #0F6CBD, #00A3A6);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(15, 108, 189, 0.1), 0 8px 20px rgba(15, 108, 189, 0.15);
  position: relative;
}

.leader-portrait::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(15, 108, 189, 0.1);
}

.leader-portrait img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.leader-card:hover .leader-portrait img {
  transform: scale(1.08);
}

.leader-portrait-letter {
  background: linear-gradient(135deg, #0F6CBD, #00A3A6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.leader-portrait-initials {
  font-family: var(--font-headers);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: 1px;
}

.leader-info {
  flex: 1;
  min-width: 0;
}

.leader-info h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0 0 2px;
}

.leader-role {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: 1.4;
}

.leader-info p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-body);
  margin: 0 0 12px;
}

.leader-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-primary);
  background: rgba(15, 108, 189, 0.06);
  padding: 4px 14px;
  border-radius: 100px;
}

/* Stats */
.leader-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.leader-stat {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.leader-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.leader-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.leader-stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-body);
  opacity: 0.7;
}

/* ----- About Merged ----- */
.about-merged {
  position: relative;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 60px;
}

.about-metric {
  text-align: center;
  padding: 28px 16px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 16px rgba(15,108,189,0.06);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}

.about-metric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0F6CBD, #00A3A6);
}

.about-metric:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15,108,189,0.12);
}

.about-metric-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 6px;
}

.about-metric-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-body);
  opacity: 0.65;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.about-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-body);
  margin-bottom: 16px;
  opacity: 0.8;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text strong {
  color: var(--color-primary);
  font-weight: 600;
}

.about-mv-cards {
  display: grid;
  gap: 24px;
}

.about-mv-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
  border: 1px solid var(--color-border);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}

.about-mv-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF7A00, #00A3A6);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-mv-card:hover::after {
  opacity: 1;
}

.about-mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.about-mv-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,108,189,0.06);
  border-radius: 50%;
  margin-bottom: 16px;
}

.about-mv-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

.about-mv-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 8px;
}

.about-mv-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-body);
  opacity: 0.75;
  margin: 0;
}

/* ----- Company Stats ----- */
.company-stats {
  background: var(--color-primary-dark);
  position: relative;
  overflow: hidden;
}

.company-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(0,163,166,0.1) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 70% 50%, rgba(255,122,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  color: var(--color-white);
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #FF7A00, #00A3A6);
  border-radius: 2px;
  opacity: 0.5;
}

.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--color-white);
}

.stat-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.65;
  line-height: 1.5;
}

/* ----- Partner Logos ----- */
.partner-logos {
  background: var(--color-white);
}

.partner-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  align-items: center;
}

.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: var(--color-base);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  min-height: 80px;
  transition: all 0.3s ease;
}

.partner-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.partner-logo-card img {
  max-width: 80%;
  max-height: 48px;
  filter: grayscale(1);
  opacity: 0.6;
  transition: var(--transition-premium);
  object-fit: contain;
}

.partner-logo-card:hover img {
  filter: grayscale(0);
  opacity: 1;
  animation: float-subtle 3s ease-in-out infinite;
}

.partner-logos-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--color-body);
  opacity: 0.6;
  margin-bottom: 40px;
  font-weight: 500;
}

/* ----- Testimonials ----- */
.testimonials {
  background: var(--color-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0F6CBD, #00A3A6, #FF7A00);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-card:hover::after {
  opacity: 1;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 24px;
  width: 32px;
  height: 24px;
  background: var(--color-primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M14.017 21v-7.391c0-5.704 3.731-9.57 8.983-10.609l.995 2.151c-2.432.917-3.995 3.638-3.995 5.849h4v10H14.017zM0 21v-7.391c0-5.704 3.731-9.57 8.983-10.609l.995 2.151C7.546 6.068 5.983 8.789 5.983 11H10v10H0z'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M14.017 21v-7.391c0-5.704 3.731-9.57 8.983-10.609l.995 2.151c-2.432.917-3.995 3.638-3.995 5.849h4v10H14.017zM0 21v-7.391c0-5.704 3.731-9.57 8.983-10.609l.995 2.151C7.546 6.068 5.983 8.789 5.983 11H10v10H0z'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  opacity: 0.06;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.testimonial-stars svg {
  width: 14px;
  height: 14px;
  color: #f59e0b;
}

.testimonial-stars svg:nth-child(1) { animation: star-twinkle 2s ease-in-out infinite; animation-delay: 0s; }
.testimonial-stars svg:nth-child(2) { animation: star-twinkle 2s ease-in-out infinite; animation-delay: 0.15s; }
.testimonial-stars svg:nth-child(3) { animation: star-twinkle 2s ease-in-out infinite; animation-delay: 0.3s; }
.testimonial-stars svg:nth-child(4) { animation: star-twinkle 2s ease-in-out infinite; animation-delay: 0.45s; }
.testimonial-stars svg:nth-child(5) { animation: star-twinkle 2s ease-in-out infinite; animation-delay: 0.6s; }

.testimonial-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-body);
  opacity: 0.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0F6CBD, #00A3A6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 108, 189, 0.2);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 1px;
}

.testimonial-role {
  font-size: 11px;
  color: var(--color-body);
  opacity: 0.6;
  line-height: 1.4;
}

.testimonial-location {
  font-size: 11px;
  color: var(--color-body);
  opacity: 0.45;
}

/* ----- Industry Events ----- */
.industry-events {
  background: var(--color-base);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.event-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px 20px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-image {
  width: 100%;
  height: 120px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(15, 108, 189, 0.04), rgba(0, 163, 166, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px dashed var(--color-border);
  color: var(--color-body);
  opacity: 0.25;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.event-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 108, 189, 0.06);
  border-radius: 50%;
  transition: var(--transition-premium);
}

.event-card:hover .event-icon {
  background: rgba(15, 108, 189, 0.12);
  transform: scale(1.1) rotate(5deg);
}

.event-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

.event-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 8px;
}

.event-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-body);
  opacity: 0.7;
}

/* ----- Industry Memberships ----- */
.industry-memberships {
  background: var(--color-base);
}

.memberships-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
}

.membership-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.membership-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.membership-logo {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 12px;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
  padding: 8px;
  overflow: hidden;
}

.membership-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.membership-info h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 4px;
}

.membership-info p {
  font-size: 13px;
  color: var(--color-body);
  opacity: 0.7;
  line-height: 1.5;
}

/* ----- Leader Social ----- */
.leader-social {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.leader-social a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: var(--color-body);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  transition: var(--transition);
  opacity: 0.5;
}

.leader-social a:hover {
  opacity: 1;
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: rgba(15, 108, 189, 0.06);
  transform: translateY(-2px);
}

.leader-social a svg {
  width: 14px;
  height: 14px;
}

/* ----- Destination Tags ----- */
.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.showcase-tags span {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .about-metrics { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 40px; }
  .about-metric { padding: 20px 12px; }
  .about-metric-value { font-size: 28px; }
  .about-metric-label { font-size: 12px; }
  .about-content { grid-template-columns: 1fr; gap: 32px; }
  .about-text p { font-size: 15px; }
  .about-mv-card { padding: 24px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-value { font-size: 28px; }
  .partner-logos-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .partner-logo-card { padding: 16px 12px; min-height: 60px; }
  .partner-logo-card img { max-height: 36px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); max-width: 320px; }
  .hero-stat { padding: 10px 6px; }
  .hero-stat-value { font-size: 17px; }
  .hero-stat-label { font-size: 9px; }
  .profile-grid { grid-template-columns: 1fr; gap: 28px; }
  .profile-highlight { padding: 12px 16px; }
  .profile-highlight span { font-size: 13px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-card { padding: 28px 20px; }
  .events-grid { grid-template-columns: 1fr; gap: 16px; }
  .event-image { height: 90px; }
  .memberships-grid { grid-template-columns: 1fr; gap: 20px; }
  .membership-logo { width: 60px; height: 60px; padding: 6px; }
  .membership-card { padding: 20px; gap: 16px; }
  .membership-card h3 { font-size: 15px; }
  .membership-card p { font-size: 13px; }
}

/* ----- Premium Footer ----- */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 70px;
  width: auto;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.6;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  opacity: 0.55;
  transition: var(--transition-premium);
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--color-tech-teal);
  padding-left: 4px;
}

.footer-col p {
  font-size: 14px;
  opacity: 0.55;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-col a[href^="tel"],
.footer-col a[href^="mailto"] {
  color: var(--color-tech-teal);
  opacity: 0.8;
}

.footer-col a[href^="tel"]:hover,
.footer-col a[href^="mailto"]:hover {
  opacity: 1;
  color: var(--color-accent);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social .social-link {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition-premium);
}

.footer-social .social-link:hover {
  background: var(--color-tech-teal);
  color: var(--color-white);
  border-color: var(--color-tech-teal);
  transform: translateY(-3px);
}

.footer-social .social-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.footer-social .social-link:hover svg {
  animation: float-subtle 1.5s ease-in-out infinite;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  transition: var(--transition-premium);
}

.footer-tag:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  transform: translateY(-1px);
}

.footer-representing {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.representing-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-flags {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-flags span {
  font-size: 14px;
  opacity: 0.55;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.footer-bottom-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.footer-social-heading {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.35;
  margin-bottom: 12px;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 0;
}

.footer-bottom p {
  font-size: 13px;
  opacity: 0.4;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ----- Tablet: 768px - 1023px ----- */
@media (max-width: 1023px) {
  .section {
    padding: var(--section-padding-mobile) 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-overlay {
    display: block;
  }

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

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

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

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
  }
  .showcase-card {
    height: 460px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----- Mobile: 767px and below ----- */
@media (max-width: 767px) {
  :root {
    --container-padding: 20px;
  }

  .logo img { height: 48px; max-width: 180px; }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .section-desc {
    font-size: 16px;
  }

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

  .services-extra {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  .services-toggle {
    font-size: 13px;
    padding: 10px 24px;
  }

  .showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }

  .showcase-card {
    height: 420px;
  }

  .showcase-content {
    padding: 32px 28px 28px;
  }

  .contact-form {
    padding: 28px 24px;
  }

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

  .form-trust {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 24px;
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
  }

  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 24px 20px; }
  .why-card h3 { font-size: 17px; }
  .why-card p { font-size: 14px; }

  .coverage-grid { grid-template-columns: 1fr; }
  .market-stats { gap: 8px; margin-bottom: 32px; }
  .market-stat-chip { font-size: 12px; padding: 8px 16px; }
  .market-graphic-wrap { margin-bottom: 36px; padding: 0 12px; }
  .eco-connector { display: none; }
  .ecosystem-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }

  .process-step { padding: 24px 20px; }
  .step-content h3 { font-size: 17px; }
  .step-content p { font-size: 14px; }
  .step-number { font-size: 24px; }

  .leadership .section-header { margin-bottom: 32px; }
  .leadership-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .leader-card { padding: 20px; gap: 16px; }
  .leader-portrait { width: 64px; height: 64px; }
  .leader-portrait img { width: 64px; height: 64px; }
  .leader-info h3 { font-size: 16px; }
  .leader-role { font-size: 11px; }
  .leader-info p { font-size: 12px; }
  .leader-stats { grid-template-columns: 1fr; gap: 12px; }
  .leader-stat { padding: 20px; }
  .leader-stat-value { font-size: 24px; }

  .footer-brand img { height: 90px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-col { text-align: center; }
  .footer-col:nth-child(2) { display: none; }
  .footer-col:nth-child(3) { display: none; }
  .footer-col h4 { display: none; }
  .footer-social-heading { display: none; }
  .footer-representing { border: none; margin: 0; padding: 0; }
  .footer-flags { flex-direction: row; gap: 12px; justify-content: center; flex-wrap: wrap; align-items: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; font-size: 13px; }
  .footer-social { justify-content: center; gap: 8px; }
  .footer-social .social-link { width: 32px; height: 32px; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 12px; text-align: center; padding: 20px 0; }
  .site-footer { padding: 48px 0 0; }
}

/* ----- Small Mobile: 480px and below ----- */
@media (max-width: 480px) {
  .section-title { font-size: 24px; }
  .section-desc { font-size: 15px; }

  .showcase-card {
    height: 360px;
  }
  .showcase-content {
    padding: 24px 20px 20px;
  }
  .showcase-title {
    font-size: 20px;
  }

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

  .market-stats { gap: 6px; margin-bottom: 24px; }
  .market-stat-chip { font-size: 11px; padding: 6px 12px; }
  .market-graphic-wrap { margin-bottom: 28px; padding: 0 8px; }

  .contact-form {
    padding: 24px 20px;
  }

  .footer-grid {
    gap: 24px;
  }
}

/* ============================================================
   ACCESSIBILITY & REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus visible for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Selection */
::selection {
  background: var(--color-primary);
  color: var(--color-white);
}
