/* ========================================
   JABR Publication Consultancy
   Premium Corporate Design System v2.0
   ======================================== */

:root {
  --primary: #1a3fa8;
  --primary-light: #2952c4;
  --primary-dark: #0f2a78;
  --accent: #c9a227;
  --accent-light: #e0b840;
  --accent-dark: #a8851e;
  --gold: #c9a227;
  --gold-light: #e0b840;
  --accent-gradient: linear-gradient(135deg, #1a3fa8 0%, #2952c4 50%, #c9a227 100%);
  --accent-gradient-btn: linear-gradient(135deg, #1a3fa8 0%, #2952c4 60%, #c9a227 100%);
  --navy: #0f2350;
  --white: #ffffff;
  --off-white: #f8fafc;
  --light-gray: #f1f5f9;
  --gray: #94a3b8;
  --gray-dark: #475569;
  --text: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06);
  --shadow: 0 4px 20px rgba(26, 63, 168, .08);
  --shadow-lg: 0 12px 40px rgba(26, 63, 168, .12);
  --shadow-xl: 0 24px 60px rgba(26, 63, 168, .15);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all .35s cubic-bezier(.4, 0, .2, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

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

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.preloader-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 16px;
  animation: pulse 1.5s ease infinite;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, .1);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto 12px;
}

.preloader-bar-fill {
  height: 100%;
  background: var(--accent-gradient);
  border-radius: 3px;
  animation: loadBar 2s ease-in-out forwards;
}

@keyframes loadBar {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes pulse {

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

  50% {
    transform: scale(1.05);
  }
}

.preloader p {
  color: rgba(255, 255, 255, .5);
  font-size: .8rem;
  letter-spacing: .5px;
}

/* ---- Cursor Glow (disabled for performance) ---- */
.cursor-glow {
  display: none;
}

/* ---- Scroll Progress ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent-gradient);
  z-index: 10001;
  width: 0%;
}

/* ---- Announcement Bar ---- */
.announcement-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, .85);
  font-size: .78rem;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}

.announcement-scroll {
  display: inline-flex;
  gap: 24px;
  animation: scrollMarquee 30s linear infinite;
  will-change: transform;
}

.announcement-scroll span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.announcement-scroll i {
  color: var(--gold-light);
}

.announcement-scroll strong {
  color: var(--white);
}

.ann-sep {
  color: var(--gold);
  font-size: .6rem;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

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

/* ---- Navbar ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, .6);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(26, 63, 168, .08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
  letter-spacing: -.5px;
}

.logo-sub {
  font-size: .62rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}

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

.nav-links a {
  padding: 8px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
  transition: all .3s ease;
  transform: translateX(-50%);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, #1a3fa8 0%, #2952c4 60%, #c9a227 100%);
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(26, 63, 168, .3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 63, 168, .4);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f2350 0%, #1a3fa8 40%, #2952c4 70%, #0f2350 100%);
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 162, 39, .08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(26, 63, 168, .15) 0%, transparent 50%);
}

/* Morphing blobs removed for performance */

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-size: .8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(201, 162, 39, .3);
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: fadeInUp .8s ease;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
}

.hero-badge i {
  color: var(--gold);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  animation: fadeInUp .8s ease .1s both;
}

.typing-text {
  background: linear-gradient(135deg, #e0b840 0%, #c9a227 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-right: 3px solid rgba(201, 162, 39, .7);
}

.typing-text.done {
  border-right-color: transparent;
}

.typing-text.cursor-visible {
  border-right-color: rgba(201, 162, 39, .85);
}

.gradient-text {
  background: linear-gradient(135deg, #c9a227 0%, #e0b840 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-light {
  background: linear-gradient(135deg, #e0b840 0%, #c9a227 50%, #f0d080 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, .7);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeInUp .8s ease .2s both;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp .8s ease .3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, #1a3fa8 0%, #2952c4 60%, #c9a227 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26, 63, 168, .3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 63, 168, .45);
}

.btn-glow {
  box-shadow: 0 4px 20px rgba(26, 63, 168, .3);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, .25);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .4);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border: 2px solid var(--border);
  color: var(--text);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  margin-top: 16px;
}

.btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}

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

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp .8s ease .4s both;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .75);
}

.trust-badge i {
  color: var(--gold);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .4);
  font-size: .75rem;
  animation: fadeInUp .8s ease .6s both;
}

.scroll-arrow {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: 14px;
  position: relative;
}

.scroll-arrow::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, .5);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateX(-50%) translateY(10px);
    opacity: .3;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Section Commons ---- */
.section {
  padding: 100px 0;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark, #a8851e);
  background: rgba(201, 162, 39, .1);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  letter-spacing: -.5px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---- About ---- */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-feature {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.about-feature:hover {
  background: rgba(201, 162, 39, .04);
  transform: translateX(4px);
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(201, 162, 39, .1);
  color: var(--gold);
  border-radius: 12px;
  font-size: 1.1rem;
  transition: var(--transition);
}

.about-feature:hover .about-feature-icon {
  background: var(--gold);
  color: var(--white);
}

.about-feature h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
}

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

.stat-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59, 130, 246, .2);
}

.stat-icon {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
  display: inline;
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  display: inline;
}

.stat-label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.stat-bar {
  height: 3px;
  background: var(--border);
  border-radius: 3px;
  margin-top: 12px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--accent-gradient);
  border-radius: 3px;
  transition: width 1.5s ease;
}

/* ---- Services ---- */
.services {
  background: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(13, 148, 136, .04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(13, 148, 136, .2);
}

.service-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(13, 148, 136, .06);
  line-height: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, .1);
  color: var(--gold);
  border-radius: 14px;
  font-size: 1.3rem;
  margin-bottom: 18px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #1a3fa8 0%, #c9a227 100%);
  color: var(--white);
  transform: scale(1.05) rotate(-3deg);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
  position: relative;
}

.service-card p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
  position: relative;
}

.service-link:hover {
  gap: 10px;
  color: var(--primary);
}

/* ---- Process / Timeline Horizontal ---- */
.process {
  background: var(--white);
}

.timeline-horizontal {
  position: relative;
  padding: 40px 0;
}

.timeline-h-line {
  position: absolute;
  top: 60px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: var(--border);
  border-radius: 3px;
  z-index: 0;
}

.timeline-h-fill {
  height: 100%;
  width: 0%;
  background: var(--accent-gradient);
  border-radius: 3px;
  transition: width 1.5s ease;
}

.timeline-h-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}

.timeline-h-item {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s ease;
}

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

.timeline-h-dot {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 3px solid var(--border);
  border-radius: 50%;
  z-index: 1;
  transition: var(--transition);
  position: relative;
}

.timeline-h-dot span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .85rem;
  color: var(--gray);
  transition: var(--transition);
}

.timeline-h-item.visible .timeline-h-dot {
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(201, 162, 39, .1);
}

.timeline-h-item.visible .timeline-h-dot span {
  color: var(--gold);
}

.timeline-h-card {
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  transition: var(--transition);
}

.timeline-h-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.timeline-h-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, .1);
  color: var(--gold);
  border-radius: 10px;
  font-size: 1rem;
  margin: 0 auto 10px;
}

.timeline-h-card h3 {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.timeline-h-card p {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ---- Why Us ---- */
.why-us {
  background: linear-gradient(135deg, #0f2350 0%, #1a3fa8 40%, #2952c4 70%, #0f2350 100%);
}

.why-us .section-tag {
  background: rgba(255, 255, 255, .08);
  color: var(--gold-light);
}

.why-us .section-header h2 {
  color: var(--white);
}

.why-us .section-desc {
  color: rgba(255, 255, 255, .6);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.feature-box {
  position: relative;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.feature-box:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .15);
  transform: translateY(-4px);
}

.feature-glow {
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 162, 39, .12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}

.feature-box:hover .feature-glow {
  opacity: 1;
}

.feature-icon-wrap {
  margin-bottom: 18px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, .15);
  color: var(--gold-light);
  border-radius: 14px;
  font-size: 1.3rem;
  transition: var(--transition);
}

.feature-box:hover .feature-icon {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.05);
}

.feature-box h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
}

.feature-box p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
  position: relative;
}

/* ---- Testimonials ---- */
.testimonials {
  background: linear-gradient(135deg, #0a1628 0%, #0f2350 40%, #162d6b 100%);
  position: relative;
  overflow: hidden;
}

.testimonials .section-header .section-tag {
  background: rgba(201, 162, 39, 0.15);
  color: #e0b840;
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.testimonials .section-header h2 {
  color: #ffffff;
}

.testimonials .section-header .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(26, 63, 168, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonial-hero-quote {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-hero-quote i {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #c9a227 0%, #e0b840 50%, #c9a227 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  filter: drop-shadow(0 4px 12px rgba(201, 162, 39, 0.3));
}

.testimonial-slider {
  max-width: 950px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.testimonial-track {
  display: flex;
  transition: transform .6s cubic-bezier(.34, 1.56, .64, 1);
}

.testimonial-card {
  min-width: 100%;
  flex-shrink: 0;
  padding: 0 8px;
}

.testimonial-card-inner {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 48px 42px;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}

.testimonial-card-inner:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 162, 39, 0.25);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.testimonial-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c9a227, #e0b840, #c9a227);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.testimonial-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.testimonial-verified {
  font-size: 0.78rem;
  font-weight: 600;
  color: #34d399;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(52, 211, 153, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.testimonial-quote {
  position: absolute;
  top: 28px;
  right: 36px;
  font-size: 2.5rem;
  color: rgba(201, 162, 39, 0.12);
  line-height: 1;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  display: flex;
  gap: 4px;
  letter-spacing: 2px;
}

.testimonial-card-inner > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 22px;
  font-weight: 400;
}

.testimonial-pub-detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #e0b840;
  background: rgba(201, 162, 39, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201, 162, 39, 0.15);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c9a227 0%, #e0b840 100%);
  color: #0f2350;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.35);
  transition: transform 0.3s ease;
}

.testimonial-card-inner:hover .testimonial-avatar {
  transform: scale(1.08);
}

.testimonial-author strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #ffffff;
  display: block;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.testimonial-author span img {
  width: 18px;
  height: auto;
  border-radius: 2px;
  display: inline;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ---- Reviews Grid (Testimonials) ---- */

/* Stats Bar */
.testimonial-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  row-gap: 20px;
  position: relative;
  z-index: 1;
}

.ts-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 48px;
}

.ts-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #e0b840;
  line-height: 1;
}

.ts-stat-num sup {
  font-size: 0.95rem;
  font-weight: 700;
}

.ts-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.03em;
}

.ts-stat-stars {
  color: #fbbf24;
  font-size: 1.05rem;
  display: flex;
  gap: 3px;
}

.ts-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* Reviews Grid Layout */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.review-card--featured {
  grid-column: 1 / -1;
}

/* Review Card Base */
.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.review-card:hover {
  border-color: rgba(201, 162, 39, 0.3);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* Gold top accent bar */
.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.5), transparent);
  transition: opacity 0.4s;
  opacity: 0.6;
}

.review-card:hover::before {
  background: linear-gradient(90deg, transparent, #e0b840, transparent);
  opacity: 1;
}

/* Glow blob on hover */
.review-card-glow {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.4s ease;
  opacity: 0;
  border-radius: 50%;
}

.review-card:hover .review-card-glow {
  opacity: 1;
}

/* Featured card specifics */
.review-card--featured {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 162, 39, 0.2);
  padding: 40px 48px;
}

.review-card--featured::before {
  background: linear-gradient(90deg, transparent, #c9a227, transparent);
  opacity: 1;
}

/* Review Top Row (Avatar + Author) */
.review-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a227 0%, #e0b840 100%);
  color: #0f2350;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.3);
  transition: transform 0.3s ease;
  letter-spacing: 0.5px;
}

.review-card:hover .review-avatar {
  transform: scale(1.08) rotate(3deg);
}

.review-avatar--lg {
  width: 64px;
  height: 64px;
  font-size: 1.1rem;
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.review-author-info strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
}

.review-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.review-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.review-location img {
  width: 16px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.review-badge-wrap {
  margin-left: auto;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #34d399;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.2);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* Stars row */
.review-stars {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fbbf24;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.review-stars span {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 4px;
}

/* Review Quote Text */
.review-text {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  font-style: italic;
  margin: 0 0 20px 0;
  padding: 0;
  border: none;
  font-weight: 400;
  position: relative;
}

.review-card--featured .review-text {
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
}

/* Journal Pill */
.review-journal-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #e0b840;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}


/* ---- Global Reach ---- */
.global-reach {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.global-reach::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.global-reach::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.global-map-wrapper {
  position: relative;
  z-index: 1;
}

.global-map-container {
  background: url('assets/satellite_world_map.png') no-repeat center center;
  background-size: cover;
  border: 2px solid rgba(201, 162, 39, .3);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  margin-bottom: 50px;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 60px rgba(10, 30, 90, 0.25);
}

.global-map-container::before {
  display: none;
}

.global-map-container svg {
  width: 100%;
  max-width: 800px;
  height: auto;
  position: relative;
  z-index: 2;
  transform: translateZ(0);
  pointer-events: none;
}

.global-regions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.region-card {
  background: var(--white);
  border: 1.5px solid rgba(26, 63, 168, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(26, 63, 168, 0.05);
}

.region-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 63, 168, 0.04) 0%, rgba(201, 162, 39, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.region-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #1a3fa8, #c9a227, #1a3fa8);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.region-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(13, 148, 136, 0.15);
  border-color: rgba(13, 148, 136, 0.4);
}

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

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

.region-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 63, 168, 0.1) 0%, rgba(201, 162, 39, 0.1) 100%);
  color: var(--primary);
  border-radius: var(--radius-lg);
  font-size: 1.4rem;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(26, 63, 168, 0.1);
}

.region-card:hover .region-icon {
  transform: scale(1.12) rotate(5deg);
  background: linear-gradient(135deg, rgba(26, 63, 168, 0.15) 0%, rgba(201, 162, 39, 0.15) 100%);
  box-shadow: 0 8px 20px rgba(26, 63, 168, 0.2);
}

.region-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.region-card:hover h3 {
  color: var(--gold);
}

.region-card p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.6;
  position: relative;
  z-index: 2;
  font-weight: 500;
}

/* ---- Team & Partners ---- */
.team-partners {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.team-partners::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.team-partners::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.team-section, .partners-section {
  position: relative;
  z-index: 1;
}

.team-subtitle {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 36px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.team-subtitle i {
  font-size: 1.5rem;
  color: var(--gold);
}

.team-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 60px;
}

.team-grid-leaders {
  grid-template-columns: repeat(3, 1fr);
}

.team-grid-coordinators {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.team-subtitle-secondary {
  margin-top: 10px;
}

.team-card {
  background: var(--white);
  border: 1.5px solid rgba(26, 63, 168, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(26, 63, 168, 0.05);
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 63, 168, 0.04) 0%, rgba(201, 162, 39, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(26, 63, 168, 0.15);
  border-color: rgba(201, 162, 39, 0.4);
}

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

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

.team-card-image {
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 20px rgba(26, 63, 168, 0.2);
  transition: transform 0.3s ease;
}

.team-avatar-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 8px 20px rgba(26, 63, 168, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid rgba(201, 162, 39, 0.3);
  display: block;
  margin: 0 auto 16px;
}

.team-card:hover .team-avatar-img {
  transform: scale(1.06);
  box-shadow: 0 12px 30px rgba(26, 63, 168, 0.25);
  border-color: rgba(201, 162, 39, 0.6);
}

.team-card:hover .team-avatar {
  transform: scale(1.08) rotate(-5deg);
}

.team-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-socials {
  opacity: 1;
}

.team-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 63, 168, 0.1);
  color: var(--primary);
  border-radius: 50%;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.team-socials a:hover {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.15);
}

.team-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
}

.team-role {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.team-bio {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.partners-section {
  margin-top: 60px;
}

.partners-desc {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.partner-card {
  background: var(--white);
  border: 1.5px solid rgba(26, 63, 168, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(26, 63, 168, 0.05);
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 63, 168, 0.04) 0%, rgba(201, 162, 39, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(26, 63, 168, 0.15);
  border-color: rgba(201, 162, 39, 0.4);
}

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

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

.partner-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 63, 168, 0.12) 0%, rgba(201, 162, 39, 0.1) 100%);
  color: var(--gold);
  font-size: 1.8rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.partner-card:hover .partner-logo {
  transform: scale(1.12) rotate(5deg);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(26, 63, 168, 0.15) 100%);
}

.partner-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.partner-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

/* ---- FAQ ---- */
.faq {
  background: var(--light-gray);
}

.faq-container {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(201, 162, 39, .25);
}

.faq-item.active {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201, 162, 39, .08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-align: left;
  transition: var(--transition);
}

.faq-q-icon {
  color: var(--gold);
  margin-right: 8px;
  font-size: .85rem;
}

.faq-chevron {
  font-size: .75rem;
  color: var(--gold);
  transition: transform .3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---- Blog ---- */
.blog {
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a2463 0%, #0d9488 100%);
  color: rgba(255, 255, 255, .25);
  font-size: 3rem;
}

.blog-card:hover .blog-image-placeholder {
  transform: scale(1.05);
}

.blog-image-placeholder {
  transition: transform .6s ease;
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 14px;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--white);
  background: rgba(0, 0, 0, .3);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
}

.blog-body {
  padding: 24px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: .78rem;
  color: var(--gray);
  margin-bottom: 12px;
}

.blog-meta i {
  margin-right: 4px;
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.blog-link:hover {
  color: var(--primary);
  gap: 10px;
}

/* ---- Contact ---- */
.contact {
  background: var(--light-gray);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-wrapper {
  position: relative;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--text);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26, 63, 168, .08);
  background: var(--white);
}

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

.file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500 !important;
  color: var(--text-light) !important;
}

.file-label:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
}

.file-label i {
  color: var(--gold);
  font-size: 1.2rem;
}

.file-label input[type="file"] {
  display: none;
}

.file-name {
  font-size: .82rem;
  color: var(--gray);
  margin-left: auto;
}

.form-success {
  position: absolute;
  inset: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

.form-success.active {
  opacity: 1;
  pointer-events: all;
}

.success-checkmark svg {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.success-checkmark circle {
  stroke: var(--gold);
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: checkStroke .6s ease forwards;
}

.success-checkmark path {
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: checkStroke .4s ease .5s forwards;
}

@keyframes checkStroke {
  to {
    stroke-dashoffset: 0;
  }
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.6;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  align-items: start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(26, 63, 168, .08);
  color: var(--primary);
  border-radius: 10px;
  font-size: 1rem;
}

.contact-detail strong {
  font-size: .85rem;
  color: var(--primary-dark);
  display: block;
  margin-bottom: 2px;
}

.contact-detail p {
  font-size: .85rem;
  color: var(--text-light);
}

.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.contact-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 63, 168, .08);
  color: var(--primary);
  border-radius: 10px;
  font-size: .95rem;
  transition: var(--transition);
}

.contact-socials a:hover {
  background: linear-gradient(135deg, #1a3fa8, #c9a227);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ---- Footer ---- */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .7);
  padding: 80px 0 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.footer-logo .logo-brand {
  color: var(--white);
}

.footer-logo .logo-sub {
  color: rgba(255, 255, 255, .5);
}

.footer-col>p {
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .6);
  border-radius: 10px;
  font-size: .9rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-col ul a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  transition: var(--transition);
}

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

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
}

.footer-contact i {
  color: var(--gold);
  width: 16px;
  text-align: center;
}

.newsletter {
  margin-top: 20px;
}

.newsletter h4 {
  font-size: .85rem;
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  font-size: .85rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px 0 0 8px;
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.newsletter-form button {
  padding: 10px 16px;
  background: var(--gold);
  color: var(--white);
  border-radius: 0 8px 8px 0;
  font-size: .85rem;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--gold-light);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: var(--white);
  font-size: 1.6rem;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
  z-index: 9999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--navy);
  color: var(--white);
  font-size: .78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ---- Back to Top ---- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 100px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: .85rem;
  box-shadow: var(--shadow);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--transition);
}

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

.back-to-top:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

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

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

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

  .timeline-h-items {
    grid-template-columns: repeat(3, 1fr);
  }

  .timeline-h-line {
    display: none;
  }

  .team-grid-leaders {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid-coordinators {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 16px 20px;
    gap: 0;
    animation: slideDown .3s ease;
    z-index: 100;
  }

  .nav-links.open a {
    padding: 14px 16px;
    border-radius: 8px;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-sub br {
    display: none;
  }

  .trust-badges {
    flex-direction: column;
    gap: 10px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .team-grid-leaders {
    grid-template-columns: 1fr;
  }

  .team-grid-coordinators {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .global-regions {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-h-items {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    right: 80px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

  .section-header h2 {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .contact-form {
    padding: 24px;
  }

  .global-regions {
    grid-template-columns: 1fr;
  }

  .timeline-h-items {
    grid-template-columns: 1fr;
  }

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

  .review-card--featured {
    grid-column: 1 / -1;
    padding: 28px 24px;
  }

  .review-card {
    padding: 24px 20px;
  }

  .testimonial-stats-bar {
    padding: 20px 16px;
    gap: 0;
  }

  .ts-stat {
    padding: 0 24px;
  }

  .ts-stat-divider {
    height: 36px;
  }

  .review-top {
    flex-wrap: wrap;
  }

  .review-badge-wrap {
    margin-left: 0;
    width: 100%;
  }
}