/* ==========================================================================
   JOY TRADING - MAIN STYLESHEET
   Table of Contents:
   1. Root Variables & Theme System
   2. Base & Reset Styles
   3. Shared Utilities & Components (Containers, Badges, Buttons)
   4. Header & Navigation (Desktop & Mobile Menu)
   5. Hero Section & Carousel (Hero, Carousel, Floating Cards, Stats)
   6. About Us Page Banner (aboutus.html)
   7. About Section & Visual Collage (Mission/Vision, Image Arcs, Map)
   8. Services Section (Skewed Service Cards, Images, Overlays)
   9. Who We Are Section (Features, Experience Badge, Showcase Image)
   10. Journey & Milestones / Process & Trust Bar
   11. Success Stories & Testimonials (Slider, Client Avatar, Quotes)
   12. Frequently Asked Questions (FAQ Accordion & Illustration)
   13. Contact Section & Inquiry Form
   14. Global Call-to-Action & Interactive Route Network Map
   15. Footer (Brand, Navigation Columns, Copyright & Legal Links)
   16. Keyframe Animations
   17. Unified Responsive Breakpoints
       - Laptop / Desktops (1024px - 1279px)
       - Tablets (max-width: 1023px)
       - Mobile Devices (max-width: 767px)
       - Small Mobile Screens (max-width: 479px)
   ========================================================================== */

/* ==========================================================================
   1. ROOT VARIABLES & DESIGN SYSTEM TOKENS
   ========================================================================== */
:root {
  /* ========================================================================
     A. COLOR PALETTE
     ======================================================================== */
  /* --- Brand & Primary Color --- */

  --orange: var(--navy);
  --orange-hover: var(--navy-light);
  --orange-dark: var(--navy-dark);
  --orange-deep: var(--navy-deep);
  --orange-vibrant: var(--navy);
  --orange-light: #334155;
  --orange-accent: var(--navy-light);
  --orange-darker: var(--navy-darker);

  --orange-50: #f1f5f9;
  --orange-100: #e2e8f0;
  --orange-200: #cbd5e1;

  --orange-soft: #f8fafc;
  --orange-warm: #f8fafc;
  --orange-cream: #f1f5f9;
  --orange-light-tint: #f8fafc;
  --orange-subtle-tint: #f8fafc;
  --orange-card-tint: #f1f5f9;

  /* RGB Components */
  --orange-rgb: 15, 23, 42;
  --orange-hover-rgb: 30, 41, 59;
  --orange-dark-rgb: 11, 25, 44;
  --orange-deep-rgb: 8, 26, 47;

  /* Semantic Primary Aliases */
  --color-primary: var(--navy);
  --color-primary-hover: var(--navy-light);
  --color-primary-dark: var(--navy-dark);
  --color-primary-light: var(--navy-50);

  --color-primary-rgb: 15, 23, 42;
  --color-primary-dark-rgb: 8, 26, 47;

  /* --- Navy & Dark Background Palette --- */
  --navy: #0f172a;
  --navy-50: #f1f5f9;
  --navy-light: #1e293b;
  --navy-dark: #0b192c;
  --navy-darker: #081a2f;
  --navy-deep: #0d223b;
  --navy-card: #102640;
  --navy-accent: #0a2340;
  --navy-surface: #0c1e36;
  --navy-slate: #0b1f3a;
  --navy-black: #040f1e;
  --navy-overlay: #091322;
  --navy-floating: #0f2744;
  --navy-journey: #09213d;
  --navy-journey-light: #193653;
  --navy-gradient-start: #071d35;
  --navy-gradient-end: #0f2d50;
  --navy-text-dark: #142943;
  --navy-text-mid: #26384f;
  --navy-text-alt: #24384f;
  --navy-text-slate: #26384a;

  /* RGB Components for Transparent Overlays */
  --navy-rgb: 15, 23, 42;
  --navy-dark-rgb: 11, 25, 44;
  --navy-darker-rgb: 8, 26, 47;
  --navy-deep-rgb: 13, 34, 59;

  /* --- Neutrals, Surfaces & Backgrounds --- */
  --white: #ffffff;
  --white-rgb: 255, 255, 255;
  --black: #000000;
  --black-rgb: 0, 0, 0;
  --bg: #f8fafc;
  --bg-main: var(--bg);
  --bg-white: var(--white);
  --bg-slate-100: #f1f5f9;
  --bg-gray-100: #edf2f7;
  --bg-gray-200: #f5f5f5;
  --bg-card-subtle: #f5f8fc;
  --bg-neutral: #eef2f6;
  --bg-light-blue: #e4ebf1;
  --bg-soft: #f0f4f8;
  --bg-warm-white: #fdfbf8;
  --bg-blue-subtle: #e3e9ef;

  /* --- Text & Muted Typography Colors --- */
  --text: #334155;
  --text-main: var(--text);
  --text-heading: var(--navy-dark);
  --text-secondary: #475569;
  --muted: #64748b;
  --text-muted: var(--muted);
  --text-light: #94a3b8;
  --text-muted-alt: #68798c;
  --text-subtle: #65758a;
  --text-slate-500: #5c728a;
  --text-slate-600: #5d7188;
  --text-slate-700: #4e6177;
  --text-gray-cool: #718096;
  --text-gray-cool-alt: #718196;
  --text-gray-muted: #748499;
  --text-gray-subtle: #758496;
  --text-gray-light: #8997a5;

  /* --- Borders & Dividers --- */
  --border: #e2e8f0;
  --border-light: #edf2f7;
  --border-subtle: #edf1f5;
  --border-dark: #cbd5e1;
  --border-blue-gray: #d8e3ec;
  --border-blue-soft: #e4eaf0;
  --border-blue-light: #e4ebf2;
  --border-blue-subtle: #e6edf4;
  --border-blue-alt: #e8eef4;
  --border-blue-bottom: #e9eef3;
  --border-orange-subtle: var(--orange-200);

  /* --- Decorative & Accent Colors --- */
  --dot-pattern: #afcde4;
  --dot-pattern-light: #b8d4e8;
  --dot-pattern-dark: #9fb9cc;
  --accent-rust: #4b2623;

  /* --- Semantic & Feedback Colors --- */
  --success: #22c55e;
  --success-dark: #16a34a;
  --success-light: #4ade80;
  --success-bg: #dcfce7;
  --success-rgb: 34, 197, 94;
  --success-light-rgb: 74, 222, 128;
  --success-50: #ecfdf5;
  --success-100: #edfaf4;
  --success-200: #a7f3d0;
  --success-border: #b8efd4;
  --success-emerald-text: #1a7a4a;

  --danger: #dc2626;
  --danger-light: #ef4444;
  --danger-bg: #fee2e2;
  --danger-border: #fca5a5;

  --warning: #f59e0b;
  --warning-light: #fbbf24;

  /* --- WhatsApp Brand Colors --- */
  --whatsapp-green: #25d366;
  --whatsapp-dark: #128c7e;

  /* ========================================================================
     B. TYPOGRAPHY SYSTEM
     ======================================================================== */
  --font-primary:
    "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  --font-sans: var(--font-primary);
  --font-serif: "Lora", Georgia, serif;

  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;

  --line-height-none: 1;
  --line-height-tight: 1.2;
  --line-height-snug: 1.35;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.65;
  --line-height-loose: 1.8;

  /* ========================================================================
     C. SPACING SCALE
     ======================================================================== */
  --space-2xs: 2px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-base: 16px;
  --space-lg: 20px;
  --space-xl: 24px;
  --space-2xl: 32px;
  --space-3xl: 40px;
  --space-4xl: 48px;
  --space-5xl: 64px;
  --space-6xl: 80px;

  /* ========================================================================
     D. BORDER RADIUS SCALE
     ======================================================================== */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-base: 8px;
  --radius-lg: 10px;
  --radius-xl: 12px;
  --radius-2xl: 14px;
  --radius-3xl: 16px;
  --radius-4xl: 20px;
  --radius-5xl: 24px;
  --radius-pill: 50px;
  --radius-full: 50%;

  /* ========================================================================
     E. BOX SHADOWS SYSTEM
     ======================================================================== */
  --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-sm:
    0 2px 4px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-md:
    0 10px 15px -3px rgba(15, 23, 42, 0.08),
    0 4px 6px -4px rgba(15, 23, 42, 0.08);
  --shadow-lg:
    0 20px 25px -5px rgba(15, 23, 42, 0.06),
    0 8px 10px -6px rgba(15, 23, 42, 0.06);
  --shadow-xl:
    0 20px 45px -10px rgba(15, 23, 42, 0.1),
    0 0 1px 1px rgba(226, 232, 240, 0.8);
  --shadow-card: 0 4px 18px rgba(15, 23, 42, 0.04);
  --shadow-card-hover: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-orange: 0 6px 20px rgba(8, 26, 47, 0.35);

  --shadow-orange-sm: 0 4px 14px rgba(8, 26, 47, 0.25);

  --shadow-orange-lg: 0 8px 22px rgba(8, 26, 47, 0.35);
  --shadow-navy: 0 4px 14px rgba(8, 26, 47, 0.25);
  --shadow-navy-sm: 0 4px 14px rgba(8, 26, 47, 0.2);
  --shadow-navy-md: 0 6px 18px rgba(8, 26, 47, 0.18);
  --shadow-navy-lg: 0 14px 30px rgba(13, 34, 59, 0.12);

  /* ========================================================================
     F. TRANSITIONS & EASINGS
     ======================================================================== */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --transition-fast: all 0.15s ease;
  --transition-normal: all 0.2s ease;
  --transition-base: all 0.25s ease;
  --transition-smooth: all 0.3s ease;
  --transition-spring: all 0.35s var(--ease-smooth);
  --transition-transform: transform 0.25s ease;
  --transition-transform-spring: transform 0.35s var(--ease-smooth);
  --transition-transform-smooth: transform 0.3s ease;
  --transition-color: color 0.2s ease;
  --transition-opacity: opacity 0.3s ease;

  /* ========================================================================
     G. Z-INDEX LAYERING
     ======================================================================== */
  --z-negative: -1;
  --z-base: 1;
  --z-raised: 2;
  --z-elevated: 5;
  --z-dropdown: 10;
  --z-sticky: 100;
  --z-fixed: 999;
  --z-modal-backdrop: 9999;
  --z-modal: 100000;

  /* ========================================================================
     H. CONTAINER & LAYOUT
     ======================================================================== */
  --container-max-width: 1320px;
  --container-gutter: clamp(20px, 2.5vw + 8px, 32px);
}

/* ==========================================================================
   2. BASE & RESET STYLES
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

.text-orange,
span.text-orange {
  color: var(--orange) !important;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   3. SHARED UTILITIES & COMPONENTS (Containers, Badges, Buttons)
   ========================================================================== */
.container,
.who-layout,
.wcu-container,
.jt-journey-container,
.jt-faq-container,
.jt-contact-container,
.jt-global-container,
.jt-footer-container,
.jt-success-inner,
.jt-about-content,
.jt-presence-container,
.jt-offices-directory-inner,
.jt-clients-container,
.jt-about-banner-inner {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-gutter);
  padding-right: var(--container-gutter);
  box-sizing: border-box;
}

.eyebrow {
  color: var(--orange);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow svg {
  color: var(--orange);
}

.btn-pill {
  height: 52px;
  padding: 0 32px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  gap: 8px;
}

.btn-pill svg {
  transition: transform 0.2s ease;
}

.btn-pill:hover svg {
  transform: translateX(4px);
}

.btn-pill.primary {
  background: var(--navy-darker);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-navy);
}

.btn-pill.primary:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn-pill.secondary {
  border: 1.5px solid var(--border);
  color: var(--navy-light);
  background: var(--white);
  box-shadow: var(--shadow);
}

.btn-pill.secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.jt-section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
  color: var(--orange);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.jt-section-label span {
  width: 34px;
  height: 2px;
  border-radius: var(--radius-lg);
  background: var(--orange);
}

.hero-buttons .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 44px;
  padding: 0 24px;
  border-radius: var(--radius-base);
  background: var(--navy);
  color: white;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.25s;
}

.hero-buttons .btn-primary:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(243, 111, 10, 0.2);
}

.jt-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--success-light);
  box-shadow: 0 0 0 5px rgba(var(--success-light-rgb), 0.1);
}

/* ==========================================================================
   4. HEADER & NAVIGATION (Desktop & Mobile Menu)
   ========================================================================== */
.header {
  height: 94px;
  background: rgba(var(--white-rgb), 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(var(--navy-rgb), 0.04);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex: 1;
  justify-content: flex-start;
  flex-shrink: 0;
}

.logo {
  height: 72px;
  max-width: 250px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-shrink: 0;
}

.nav a {
  font-size: 13.5px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--navy-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition-color);
  position: relative;
  padding: 6px 0;
}



.nav a.active {
  color: var(--orange);
}

.nav a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  border-radius: var(--radius-xs);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex: 1;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 38px;
  height: 38px;
  padding: 9px 7px;
  background: var(--bg-slate-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-base);
  cursor: pointer;
  z-index: 110;
  transition: var(--transition-base);
}

.nav-toggle:hover {
  background: var(--border);
}

.nav-toggle .bar {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--navy);
  border-radius: var(--radius-xs);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.nav-toggle.active {
  background: var(--danger-bg);
  border-color: var(--danger-border);
}

.nav-toggle.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--danger);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background: var(--danger);
}

/* ==========================================================================
   5. HERO SECTION & CAROUSEL (Hero, Carousel, Floating Cards, Stats)
   ========================================================================== */
.hero {
  padding: 40px 0 0;
  position: relative;
  background: var(--bg);
  overflow: visible;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  width: 100%;
  min-height: 520px;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left {
  padding-right: 16px;
}

.hero-left p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 28px;
  color: var(--text-secondary);
}

.actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.floating-features-card {
  background: var(--white);
  border-radius: var(--radius-4xl);
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 22px 24px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  position: relative;
  margin: 48px 0 -46px 0;
  z-index: 25;
  width: 100%;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
}

.floating-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  gap: 16px;
  padding: 6px 18px;
  border-right: 1px solid rgba(226, 232, 240, 0.85);
  transition: var(--transition-transform);
}

.floating-feature:last-child {
  border-right: none;
}

.floating-feature:hover {
  transform: translateY(-2px);
}

.floating-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-xl);
  background: rgba(var(--color-primary-dark-rgb), 0.08);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  transition: var(--transition-smooth);
}

.floating-feature:hover .floating-feature-icon {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(var(--color-primary-dark-rgb), 0.3);
}

.floating-feature-text {
  display: flex;
  flex-direction: column;
}

.floating-feature h4 {
  font-size: 13.5px;
  line-height: 1.35;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.floating-feature p {
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
  margin: 0;
  white-space: nowrap;
}

.hero-right {
  position: relative;
  height: 520px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  z-index: 2;
}

.carousel-backdrop {
  position: absolute;
  inset: -12px 12px 12px -12px;
  background: linear-gradient(
    135deg,
    rgba(226, 232, 240, 0.7) 0%,
    rgba(203, 213, 225, 0.5) 100%
  );
  clip-path: url(#carousel-clip);
  z-index: 1;
}

.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  clip-path: url(#carousel-clip);
  z-index: 2;
}

.carousel-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--white) !important;
  border: none;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(var(--navy-rgb), 0.1);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-base);
  color: var(--muted) !important;
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  color: var(--muted) !important;
  stroke: currentColor !important;
}

.carousel-btn:hover {
  background: var(--orange) !important;
  color: var(--white) !important;
  box-shadow: var(--shadow-orange-sm);
}

.carousel-btn:hover svg {
  color: var(--white) !important;
  stroke: var(--white) !important;
}

.carousel-btn.prev {
  left: calc(18% - 22px);
}

.carousel-btn.next {
  right: 20px;
}

.carousel-pagination {
  position: absolute;
  bottom: 28px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-shape {
  position: absolute;
  background: var(--bg-slate-100);
  border-radius: 80px;
}

.hero-bg-shape.shape-1 {
  top: -100px;
  right: 15%;
  width: 320px;
  height: 580px;
  transform: rotate(-25deg);
  opacity: 0.8;
}

.hero-bg-shape.shape-2 {
  top: -80px;
  right: -5%;
  width: 280px;
  height: 380px;
  transform: rotate(-25deg);
  background: var(--border);
  opacity: 0.4;
}

.hero-bg-shape.shape-3 {
  bottom: -150px;
  right: 25%;
  width: 380px;
  height: 380px;
  transform: rotate(-25deg);
  background: var(--bg-slate-100);
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ==========================================================================
   6. ABOUT US PAGE BANNER (aboutus.html - Matches Contact Banner Layout)
   ========================================================================== */
.about-hero-banner {
  position: relative;
  width: 100%;
  min-height: 460px;
  background-color: var(--bg);
  background-image: url("../images/contact_bg.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.about-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(var(--white-rgb), 0.96) 0%,
    rgba(var(--white-rgb), 0.88) 36%,
    rgba(var(--white-rgb), 0.45) 60%,
    rgba(var(--white-rgb), 0.05) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.about-hero-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-gutter);
}

.about-hero-content {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 0;
}

/* Breadcrumb */
.about-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 18px;
  color: var(--muted);
}

.about-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-color);
}

.about-breadcrumb a:hover {
  color: var(--white);
}

.about-breadcrumb-sep {
  color: var(--text-light);
  font-size: 14px;
}

.about-breadcrumb-current {
  color: var(--orange);
  font-weight: 600;
}

/* Hero Title */
.about-hero-title {
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.about-hero-title .text-orange {
  color: var(--orange);
}

/* Orange Accent Line */
.about-title-accent {
  width: 48px;
  height: 3.5px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}

/* Subtitle */
.about-hero-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: 520px;
}

/* Responsive queries for about-hero-banner */
@media (max-width: 1023px) {
  .about-hero-banner {
    min-height: 380px;
  }
}

@media (max-width: 767px) {
  .about-hero-banner {
    min-height: 340px;
    background-position: center right;
  }

  .about-hero-banner::before {
    background: linear-gradient(
      90deg,
      rgba(var(--white-rgb), 0.95) 0%,
      rgba(var(--white-rgb), 0.9) 70%,
      rgba(var(--white-rgb), 0.65) 100%
    );
  }

  .about-hero-content {
    padding: 40px 0;
  }

  .about-hero-title {
    font-size: 32px;
  }
}

@media (max-width: 479px) {
  .about-hero-title {
    font-size: 28px;
  }

  .about-hero-desc {
    font-size: 14px;
  }
}

/* ==========================================================================
   7. ABOUT SECTION & VISUAL COLLAGE (Mission/Vision, Image Arcs, Map)
   ========================================================================== */
.about-hero {
  position: relative;
  padding: 95px 0 50px;
  background: var(--white);
  overflow: hidden;
}

.about-hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 500px;
  right: -50px;
  top: 10px;
  opacity: 0.25;
  background-image: radial-gradient(
    circle,
    var(--dot-pattern-light) 1.4px,
    transparent 1.5px
  );
  background-size: 9px 9px;
  border-radius: var(--radius-full);
  pointer-events: none;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-content {
  padding-right: 35px;
}

.about-content .title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(40px, 3.5vw + 8px, 46px);
  line-height: 1.12;
  letter-spacing: -1px;
  font-weight: 800;
}

.about-content .title span {
  color: var(--orange);
  font-style: normal;
}

.about-content .desc {
  margin: 20px 0 28px;
  max-width: 500px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.mv-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
}

.mv-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: white;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 20px rgba(15, 40, 65, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 18px;
}

.mv-item h3 {
  margin-top: 3px;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: clamp(20px, 1.5vw + 8px, 22px);
  line-height: 1.18;
  font-weight: 800;
}

.mv-item p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}


.about-visual {
  position: relative;
  height: 505px;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.visual-map {
  position: absolute;
  width: 500px;
  height: 480px;
  left: 100px;
  top: 10px;
  opacity: 0.3;
  background-image: radial-gradient(
    circle,
    var(--dot-pattern) 1.5px,
    transparent 1.6px
  );
  background-size: 9px 9px;
  border-radius: var(--radius-full);
  clip-path: ellipse(50% 48% at 50% 50%);
}

.image-frame {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-4xl);
  box-shadow: 0 18px 40px rgba(12, 40, 65, 0.14);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-left {
  width: 165px;
  height: 325px;
  left: 15px;
  top: 110px;
  transform: skewX(-12deg);
  z-index: 2;
}

.image-left img {
  transform: skewX(3deg) scale(1.1);
}

.image-center {
  width: 250px;
  height: 495px;
  left: 198px;
  /* gap = 18px */
  top: 5px;
  transform: skewX(-10deg);
  z-index: 4;
}

.image-center img {
  transform: skewX(3deg) scale(1.08);
}

.image-right {
  width: 165px;
  height: 325px;
  left: 466px;
  /* gap = 18px */
  top: 110px;
  transform: skewX(-10deg);
  z-index: 3;
}

.image-right img {
  transform: skewX(3deg) scale(1.1);
}

.collage-arcs-svg {
  position: absolute;
  width: 130px;
  height: 85px;
  left: 415px;
  top: 165px;
  z-index: 5;
  pointer-events: none;
}

.who-label,
.jt-service-eyebrow,
.wcu-badge,
.jt-success-label,
.jt-faq-label,
.jt-contact-label,
.jt-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.who-label span,
.jt-service-eyebrow span,
.wcu-badge span,
.wcu-badge-line,
.jt-success-label span,
.jt-success-label i,
.jt-faq-label span,
.jt-faq-label i,
.jt-contact-label span,
.jt-section-label span {
  width: 28px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
  border-radius: var(--radius-xs);
  flex-shrink: 0;
}

/* ==========================================================================
   6b. GLOBAL PRESENCE SECTION (Interactive Global Network & Routes Map)
   ========================================================================== */
.jt-presence-section {
  position: relative;
  width: 100%;
  padding: 100px 0 110px;
  background: var(--white);
  overflow: hidden;
}

.jt-presence-container {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 50px;
  align-items: center;
}

/* Left Content */
.jt-presence-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.jt-presence-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.presence-label-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--orange);
  border-radius: var(--radius-xs);
}

.jt-presence-title {
  margin: 0 0 20px;
  color: var(--navy-deep);
  font-size: clamp(34px, 3.8vw + 8px, 50px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.4px;
}

.jt-presence-title span {
  color: var(--orange);
}

.jt-presence-desc {
  margin: 0 0 32px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
}

/* Stats */
.jt-presence-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 38px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 480px;
  box-shadow: 0 4px 15px rgba(var(--navy-rgb), 0.03);
}

.presence-stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.presence-stat-number {
  color: var(--navy-deep);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.presence-stat-text {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.presence-stat-sep {
  width: 1px;
  height: 32px;
  background: var(--border-dark);
}

/* Button */
.jt-presence-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 52px;
  padding: 0 28px;
  background: var(--navy-darker);
  color: var(--white);
  border-radius: var(--radius-base);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-navy-md);
}

.jt-presence-btn svg {
  transition: var(--transition-transform);
}

.jt-presence-btn:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(var(--color-primary-rgb), 0.35);
}

.jt-presence-btn:hover svg {
  transform: translateX(4px);
}

/* Right Visual / Map */
.jt-presence-visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jt-presence-map-wrapper {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 1008 / 651;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jt-presence-map-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  display: block;
}

/* Route curves */
.jt-presence-routes-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.jt-presence-route {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-dasharray: 6, 6;
  stroke-linecap: round;
  opacity: 0.85;
  animation: jtPresenceDash 25s linear infinite;
}

@keyframes jtPresenceDash {
  to {
    stroke-dashoffset: -300;
  }
}

/* Location Pins */
.jt-map-marker {
  position: absolute;
  transform: translate(-50%, -100%);
  z-index: 10;
  cursor: pointer;
}

.marker-pin {
  width: 24px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 4px 10px rgba(var(--color-primary-rgb), 0.45));
}

.jt-map-marker:hover .marker-pin {
  transform: scale(1.25) translateY(-4px);
}

.marker-pulse {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background: rgba(var(--color-primary-rgb), 0.35);
  animation: jtMarkerPulse 2.2s infinite ease-out;
  pointer-events: none;
}

@keyframes jtMarkerPulse {
  0% {
    transform: translate(-50%, 50%) scale(0.4);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 50%) scale(2.2);
    opacity: 0;
  }
}

/* Marker Tooltip */
.marker-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(var(--navy-darker-rgb), 0.96);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius-lg);
  min-width: 220px;
  max-width: 270px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(var(--color-primary-rgb), 0.25);
  border: 1px solid rgba(var(--white-rgb), 0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  z-index: 30;
  text-align: left;
}

.tooltip-left .marker-tooltip {
  left: 0;
  transform: translateX(-15%) translateY(6px);
}

.tooltip-left .marker-tooltip::after {
  left: 25%;
}

.tooltip-right .marker-tooltip {
  left: auto;
  right: 0;
  transform: translateX(15%) translateY(6px);
}

.tooltip-right .marker-tooltip::after {
  left: 75%;
}

.marker-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(var(--navy-darker-rgb), 0.96) transparent transparent
    transparent;
}

.jt-map-marker:hover .marker-tooltip,
.jt-map-marker.active-marker .marker-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.jt-map-marker.tooltip-left:hover .marker-tooltip,
.jt-map-marker.tooltip-left.active-marker .marker-tooltip {
  transform: translateX(-15%) translateY(0);
}

.jt-map-marker.tooltip-right:hover .marker-tooltip,
.jt-map-marker.tooltip-right.active-marker .marker-tooltip {
  transform: translateX(15%) translateY(0);
}

.tooltip-header {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.tooltip-badge {
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 6px;
  background: rgba(var(--color-primary-rgb), 0.2);
  color: var(--white);
  border: 1px solid rgba(var(--color-primary-rgb), 0.35);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.tooltip-header strong {
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tooltip-office-title {
  font-size: 10.5px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.25;
}

.tooltip-addr {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  line-height: 1.35;
  color: var(--border-dark);
  margin-top: 2px;
  padding-top: 4px;
  border-top: 1px solid rgba(var(--white-rgb), 0.08);
  width: 100%;
}

.tooltip-addr span {
  white-space: normal;
}

/* ==========================================================================
   GLOBAL OFFICE ADDRESSES DIRECTORY
   ========================================================================== */
.jt-offices-directory-wrapper {
  width: 100%;
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid var(--border);
  scroll-margin-top: 90px;
}

.jt-offices-directory-inner {
  position: relative;
}

.jt-offices-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.jt-offices-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--orange);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.jt-offices-eyebrow span:empty,
.jt-offices-eyebrow .presence-label-line {
  width: 28px;
  height: 2px;
  border-radius: var(--radius-lg);
  background: var(--orange);
  display: block;
}

.jt-offices-heading {
  color: var(--navy-deep);
  font-size: clamp(26px, 2.5vw + 8px, 36px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin: 0 0 14px;
}

.jt-offices-heading span {
  color: var(--orange);
}

.jt-offices-sub {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.jt-offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.jt-office-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.jt-office-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  opacity: 0;
  transition: var(--transition-opacity);
}

@media (hover: hover) {
  .jt-office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(var(--navy-deep-rgb), 0.1);
    border-color: rgba(var(--color-primary-rgb), 0.45);
  }

  .jt-office-card:hover::before {
    opacity: 1;
  }
}

.jt-office-card.active-card {
  transform: translateY(-4px);
  box-shadow: var(--shadow-navy-lg);
  border-color: var(--orange);
}

.jt-office-card.active-card::before {
  opacity: 1;
}

.jt-office-card.featured-office-card {
  background: linear-gradient(
    180deg,
    var(--white) 0%,
    var(--bg-warm-white) 100%
  );
  border-color: rgba(var(--color-primary-rgb), 0.3);
}

.office-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.office-badge-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-slate-100);
  padding: 4px 10px;
  border-radius: var(--radius-4xl);
  border: 1px solid var(--border);
}

.flag-emoji {
  font-size: 16px;
  line-height: 1;
}

.country-text {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 0.2px;
}

.office-type-pill {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--bg);
  padding: 3px 8px;
  border-radius: var(--radius-md);
  white-space: nowrap;
}

.office-type-pill.highlight-pill {
  color: var(--orange);
  background: rgba(var(--color-primary-rgb), 0.1);
}

.office-title {
  color: var(--navy-deep);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 4px;
}

.office-subtag {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
  line-height: 1.35;
}

.office-divider {
  width: 100%;
  height: 1px;
  background: var(--bg-slate-100);
  margin-bottom: 14px;
}

.office-location-body {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: auto;
}

.office-map-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--orange);
  margin-top: 2px;
}

.office-address-lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.office-address-lines .addr-line {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
  font-weight: 500;
}

.office-address-lines .addr-country {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-top: 2px;
}

/* Tablet screens (max-width: 1024px) */
@media (max-width: 1024px) {
  .jt-offices-directory-wrapper {
    margin-top: 55px;
    padding-top: 40px;
  }

  .jt-offices-directory-inner {
    width: min(100%, calc(100% - 40px));
  }

  .jt-offices-header {
    margin-bottom: 32px;
  }

  .jt-offices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .jt-office-card {
    padding: 22px 18px;
  }
}

/* Small Tablet / Large Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .jt-offices-directory-wrapper {
    margin-top: 45px;
    padding-top: 35px;
  }

  .jt-offices-directory-inner {
    width: min(100%, calc(100% - 32px));
  }

  .jt-offices-header {
    margin-bottom: 26px;
  }

  .jt-offices-heading {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .jt-offices-sub {
    font-size: 14px;
  }

  .jt-offices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .jt-office-card {
    padding: 20px 16px;
    border-radius: var(--radius-xl);
  }

  .office-title {
    font-size: 16.5px;
  }

  .office-subtag {
    font-size: 11.5px;
    margin-bottom: 12px;
  }

  .office-location-body {
    gap: 8px;
  }

  .office-address-lines .addr-line {
    font-size: 12.5px;
  }

  .office-address-lines .addr-country {
    font-size: 12.5px;
  }
}

/* Mobile Screens (max-width: 640px) */
@media (max-width: 640px) {
  .jt-offices-directory-wrapper {
    margin-top: 40px;
    padding-top: 30px;
  }

  .jt-offices-directory-inner {
    width: 100%;
  }

  .jt-offices-header {
    margin-bottom: 22px;
    text-align: center;
  }

  .jt-offices-eyebrow {
    font-size: 11px;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
  }

  .jt-offices-heading {
    font-size: 23px;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
  }

  .jt-offices-sub {
    font-size: 13px;
    line-height: 1.5;
  }

  .jt-offices-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .jt-office-card {
    padding: 18px 16px;
    border-radius: var(--radius-xl);
  }

  .office-card-header {
    margin-bottom: 10px;
  }

  .office-badge-flag {
    padding: 3px 8px;
  }

  .flag-emoji {
    font-size: 15px;
  }

  .country-text {
    font-size: 11px;
  }

  .office-type-pill {
    font-size: 10px;
    padding: 2.5px 7px;
  }

  .office-title {
    font-size: 16px;
    margin-bottom: 3px;
  }

  .office-subtag {
    font-size: 11.5px;
    margin-bottom: 10px;
    line-height: 1.35;
  }

  .office-divider {
    margin-bottom: 10px;
  }

  .office-map-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
  }

  .office-address-lines .addr-line {
    font-size: 12.5px;
    line-height: 1.4;
  }

  .office-address-lines .addr-country {
    font-size: 12.5px;
  }
}

/* Extra Small Mobile (max-width: 400px) */
@media (max-width: 400px) {
  .jt-offices-directory-inner {
    width: 100%;
  }

  .jt-office-card {
    padding: 16px 14px;
  }

  .jt-offices-heading {
    font-size: 21px;
  }
}

/* Floating Status Card */
.jt-presence-floating-card {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(var(--white-rgb), 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 10px 16px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(var(--navy-rgb), 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 15;
}

.live-dot-glow {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(var(--success-rgb), 0.25);
  animation: jtLiveDotGlow 2s infinite;
}

@keyframes jtLiveDotGlow {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(var(--success-rgb), 0.25);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(var(--success-rgb), 0.1);
  }
}

.jt-presence-floating-card .card-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.jt-presence-floating-card strong {
  font-size: 12px;
  color: var(--navy-deep);
  font-weight: 700;
}

.jt-presence-floating-card small {
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
}

.feature-circle {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 4px 10px rgba(15, 35, 60, 0.08);
  font-size: 18px;
  border: 1px solid var(--bg-gray-100);
}

.who-features .feature-circle {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 4px 10px rgba(15, 35, 60, 0.08);
  font-size: 24px;
  border: 1px solid var(--bg-gray-100);
}

/* ==========================================================================
   8. SERVICES SECTION (4-Column Layout with Intro + 7 Service Cards)
   ========================================================================== */
.jt-services {
  position: relative;
  width: 100%;
  padding: 95px 0 100px;
  background: var(--bg-card-subtle);
}

#core-services.jt-services,
.services-page .jt-services {
  background: var(--white);
}

.jt-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: stretch;
}

/* Intro Card (Slot 1) */
.jt-service-intro-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 6px 12px 14px 0;
}

.jt-service-eyebrow {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.jt-service-main-title {
  margin: 0 0 16px 0;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.1vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.jt-service-main-desc {
  margin: 0 0 24px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.jt-service-btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 13px 24px;
  background: var(--navy-darker);
  color: var(--white);
  border-radius: var(--radius-base);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  box-shadow: var(--shadow-navy-md);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: auto;
}

.jt-service-btn-pill svg {
  transition: var(--transition-transform);
}

.jt-service-btn-pill:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(var(--color-primary-rgb), 0.32);
}

.jt-service-btn-pill:hover svg {
  transform: translateX(4px);
}

/* Service Card Items */
.jt-service-card-item {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--bg-gray-100);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(var(--navy-rgb), 0.04);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.jt-service-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(var(--navy-rgb), 0.09);
  border-color: rgba(var(--color-primary-dark-rgb), 0.25);
}

.jt-service-card-img-wrap {
  width: 100%;
  height: 190px;
  overflow: hidden;
  position: relative;
  background: var(--bg-slate-100);
}

.jt-service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.jt-service-card-item:hover .jt-service-card-img-wrap img {
  transform: scale(1.06);
}

.jt-service-card-body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex-grow: 1;
}

.jt-service-card-title {
  margin: 0 0 12px 0;
  color: var(--navy-slate);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.2px;
  transition: color 0.25s ease;
}

.jt-service-card-item:hover .jt-service-card-title {
  color: var(--orange-dark);
}

.jt-service-card-desc {
  margin: 0 0 20px 0;
  color: var(--text-slate-500);
  font-size: 14px;
  line-height: 1.6;
  flex-grow: 1;
}

.jt-service-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-slate);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  transition: var(--transition-base);
}

.jt-service-learn-more svg {
  transition:
    transform 0.25s ease,
    stroke 0.25s ease;
  stroke: var(--navy-slate);
}

.jt-service-learn-more:hover,
.jt-service-card-item:hover .jt-service-learn-more {
  color: var(--orange-dark);
}

.jt-service-card-item:hover .jt-service-learn-more svg {
  transform: translateX(4px);
  stroke: var(--orange-dark);
}

/* Responsive Grid Breakpoints */
@media (max-width: 1200px) {
  .jt-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 680px) {
  .jt-services {
    padding: 60px 0;
  }

  .jt-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .jt-service-intro-card {
    padding: 0 0 10px 0;
  }

  .jt-service-card-img-wrap {
    height: 190px;
  }
}

/* ==========================================================================
   9. WHY CHOOSE US / WHO WE ARE SECTION
   ========================================================================== */
.wcu-section {
  position: relative;
  width: 100%;
  padding: 85px 0 75px;
  background: var(--white);
  overflow: hidden;
}

.wcu-container {
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 46px;
  align-items: stretch;
}

/* Left Column */
.wcu-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wcu-header {
  margin-bottom: 24px;
}

.wcu-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orange-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.wcu-badge-line {
  display: inline-block;
  width: 22px;
  height: 2.5px;
  background-color: var(--orange-accent);
  border-radius: var(--radius-xs);
}

.wcu-title {
  margin: 0 0 16px 0;
  color: var(--navy-surface);
  font-size: clamp(34px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.wcu-title span {
  color: var(--orange-accent);
}

.wcu-description {
  margin: 0 0 24px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 320px;
}

.wcu-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-darker);
  color: var(--white);
  padding: 13px 26px;
  border-radius: var(--radius-base);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 18px rgba(var(--navy-darker-rgb), 0.2);
  width: fit-content;
}

.wcu-btn:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(var(--color-primary-rgb), 0.35);
  color: var(--white);
}

.wcu-btn svg {
  transition: var(--transition-transform);
}

.wcu-btn:hover svg {
  transform: translateX(4px);
}

/* Image with decorative dot matrix */
.wcu-image-wrapper {
  position: relative;
  width: 100%;
  margin-top: auto;
  padding-top: 20px;
}

.wcu-dots-pattern {
  position: absolute;
  top: -6px;
  left: -14px;
  display: grid;
  grid-template-columns: repeat(4, 7px);
  gap: 13px 18px;
  z-index: 1;
  pointer-events: none;
}

.wcu-dots-pattern span {
  width: 5px;
  height: 5px;
  border-radius: var(--radius-full);
  background-color: var(--border-dark);
  opacity: 0.75;
}

.wcu-image-card {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 275px;
  border-top-left-radius: 165px;
  border-top-right-radius: 28px;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 36px -8px rgba(var(--navy-rgb), 0.12);
  background: var(--border);
}

.wcu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.wcu-image-card:hover .wcu-img {
  transform: scale(1.05);
}

/* Right Column: 6 Cards Grid */
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.wcu-card {
  background: var(--white);
  border-radius: 18px;
  padding: 34px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--bg-slate-100);
  box-shadow: 0 8px 24px rgba(var(--navy-rgb), 0.035);
  transition: var(--transition-spring);
  position: relative;
}

.wcu-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange-200);
  box-shadow:
    0 18px 36px -6px rgba(234, 88, 12, 0.1),
    0 8px 16px -4px rgba(var(--navy-rgb), 0.04);
}

.wcu-icon-box {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-full);
  background: var(--orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-deep);
  margin-bottom: 18px;
  transition: var(--transition-smooth);
}

.wcu-card:hover .wcu-icon-box {
  background: var(--orange-deep);
  color: var(--white);
  transform: scale(1.08) rotate(4deg);
}

.wcu-card:hover .wcu-icon-box svg {
  stroke: var(--white);
}

.wcu-card:hover .wcu-icon-box svg text {
  fill: var(--white);
}

.wcu-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-surface);
  margin: 0;
  line-height: 1.3;
}

.wcu-divider {
  width: 26px;
  height: 2.5px;
  background: var(--orange-deep);
  border-radius: var(--radius-xs);
  margin: 12px auto 14px;
  transition: width 0.3s ease;
}

.wcu-card:hover .wcu-divider {
  width: 38px;
}

.wcu-card-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  max-width: 220px;
}

/* Responsive styles for Why Choose Us */
@media (min-width: 1440px) {
  .wcu-container {
    grid-template-columns: 380px 1fr;
    gap: 48px;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .wcu-container {
    grid-template-columns: 320px 1fr;
    gap: 28px;
  }

  .wcu-grid {
    gap: 16px;
  }

  .wcu-card {
    padding: 26px 14px 22px;
  }
}

/* Tablet Screens (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
  .wcu-section {
    padding: 70px 0 65px;
  }

  .wcu-container {
    display: flex;
    flex-direction: column;
    gap: 36px;
    width: 100%;
  }

  .wcu-left {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  .wcu-header {
    margin-bottom: 0;
  }

  .wcu-badge {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .wcu-title {
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 1.18;
  }

  .wcu-description {
    max-width: 100%;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .wcu-btn {
    padding: 12px 22px;
    font-size: 12.5px;
  }

  .wcu-image-wrapper {
    margin-top: 0;
    padding-top: 0;
    width: 100%;
  }

  .wcu-image-card {
    height: 230px;
    border-top-left-radius: 130px;
    border-top-right-radius: 24px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .wcu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
  }

  .wcu-card {
    padding: 24px 14px 20px;
    border-radius: var(--radius-3xl);
  }

  .wcu-icon-box {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
  }

  .wcu-icon-box svg {
    width: 28px;
    height: 28px;
  }

  .wcu-card-title {
    font-size: 15px;
  }

  .wcu-divider {
    margin: 10px auto 12px;
  }

  .wcu-card-desc {
    font-size: 12.5px;
    line-height: 1.5;
    max-width: 100%;
  }
}

/* Mobile Screens (max-width: 767px) */
@media (max-width: 767px) {
  .wcu-section {
    padding: 60px 0 50px;
  }

  .wcu-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
  }

  .wcu-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
  }

  .wcu-title {
    font-size: 30px;
  }

  .wcu-description {
    font-size: 14px;
    max-width: 100%;
  }

  .wcu-image-wrapper {
    margin-top: 0;
    padding-top: 0;
    width: 100%;
  }

  .wcu-image-card {
    height: 220px;
    border-top-left-radius: 120px;
  }

  .wcu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .wcu-card {
    padding: 22px 12px 18px;
  }
}

/* Small Mobile Screens (max-width: 479px) */
@media (max-width: 479px) {
  .wcu-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ==========================================================================
   10. JOURNEY & MILESTONES / PROCESS & TRUST BAR
   ========================================================================== */
.jt-journey {
  --jt-navy: var(--navy-journey);
  --jt-navy-light: var(--navy-journey-light);
  --jt-orange: var(--orange);
  --jt-orange-dark: var(--orange-dark);
  --jt-text: var(--navy-text-mid);
  --jt-muted: var(--text-subtle);
  --jt-border: var(--border-blue-subtle);
  position: relative;
  width: 100%;
  padding: 90px 0 75px;
  overflow: hidden;
  background: var(--bg-card-subtle);
  font-family: var(--font-sans);
}

.jt-journey-container {
  position: relative;
  z-index: 5;
}

.jt-journey-header {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}

.jt-journey-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.jt-journey-label span {
  width: 28px;
  height: 2px;
  border-radius: var(--radius-lg);
  background: var(--orange);
  display: block;
}

.jt-journey-header h2 {
  margin: 0;
  color: var(--navy-accent);
  font-size: 54px;
  line-height: 1.08;
  letter-spacing: -2px;
  font-weight: 800;
}

.jt-journey-header h2 em {
  color: var(--orange);
  font-style: normal;
}

.jt-journey-header p {
  margin: 20px auto 0;
  color: var(--text-subtle);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: -0.15px;
  max-width: 620px;
}

.jt-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

/* Two-tone continuous connecting line (Orange -> Dark Navy) */
.jt-process-line {
  position: absolute;
  top: 20px;
  left: calc((100% - 90px) / 12);
  width: calc((100% - 90px) * 5 / 6 + 90px);
  height: 2.5px;
  background: linear-gradient(
    90deg,
    var(--orange-vibrant) 0%,
    var(--orange-vibrant) 40%,
    var(--accent-rust) 50%,
    var(--navy-dark) 60%,
    var(--navy-dark) 100%
  );
  opacity: 0.95;
  z-index: 1;
  transform: translateY(-50%);
  clip-path: inset(-25px 0px -25px 0px);
}

/* Glowing logistics moving arrow traveling 01 -> 02 -> 03 -> 04 -> 05 -> 06 (Laptop/Desktop only) */
.jt-process-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 50%, 0 100%, 28% 50%);
  filter: drop-shadow(0 0 6px var(--orange))
    drop-shadow(0 0 12px rgba(255, 119, 20, 0.9));
  transform: translate(-50%, -50%);
  z-index: 4;
  pointer-events: none;
  animation: jtLogisticsPulse 9.5s linear infinite;
}

/* Soft glowing comet trail behind the moving arrow */
.jt-process-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 90px;
  height: 3px;
  border-radius: var(--radius-xs);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 119, 20, 0.15) 30%,
    rgba(255, 119, 20, 0.7) 85%,
    var(--orange) 100%
  );
  filter: drop-shadow(0 0 6px rgba(255, 119, 20, 0.6));
  transform: translate(-100%, -50%);
  z-index: 3;
  pointer-events: none;
  animation: jtLogisticsTrail 9.5s linear infinite;
}

@keyframes jtLogisticsPulse {
  0% {
    left: 0%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
  }

  3% {
    left: 0%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  94% {
    left: 100%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  96%,
  100% {
    left: 100%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
  }
}

@keyframes jtLogisticsTrail {
  0% {
    left: 0%;
    width: 0px;
    opacity: 0;
  }

  3% {
    left: 0%;
    width: 0px;
    opacity: 0;
  }

  12% {
    width: 90px;
    opacity: 0.9;
  }

  86% {
    width: 90px;
    opacity: 0.9;
  }

  94% {
    left: 100%;
    width: 0px;
    opacity: 0.9;
  }

  96%,
  100% {
    left: 100%;
    width: 0px;
    opacity: 0;
  }
}

.jt-process-item {
  position: relative;
  text-align: center;
  min-width: 0;
  z-index: 2;
}

/* Intermediate Dots / Beads on connecting line */
.jt-process-item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -9px;
  transform: translate(50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.jt-process-item:nth-of-type(1)::after,
.jt-process-item:nth-of-type(2)::after {
  background: var(--navy-dark);
  box-shadow: 0 0 4px rgba(var(--navy-dark-rgb), 0.5);
}

.jt-process-item:nth-of-type(3)::after {
  background: var(--navy-dark);
  box-shadow: 0 0 4px rgba(var(--navy-dark-rgb), 0.5);
}

.jt-process-item:nth-of-type(4)::after,
.jt-process-item:nth-of-type(5)::after {
  background: var(--navy-dark);
  box-shadow: 0 0 4px rgba(var(--navy-dark-rgb), 0.5);
}

/* Step Number Badges with Glow Rings and Down Pointers */
.jt-step-number {
  position: relative;
  z-index: 3;
  width: 40px;
  height: 40px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--white);
  border: 2px solid var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Downward Pointer Triangle Arrow */
.jt-step-number::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  transition: border-color 0.25s ease;
}

/* Steps 01, 02, 03 - Brand Orange Halo */
.jt-process-item:nth-of-type(1) .jt-step-number,
.jt-process-item:nth-of-type(2) .jt-step-number,
.jt-process-item:nth-of-type(3) .jt-step-number {
  background: var(--orange-vibrant);
  box-shadow:
    0 0 0 5px rgba(var(--navy-dark-rgb), 0.14),
    0 3px 10px rgba(var(--navy-dark-rgb), 0.25);
}

.jt-process-item:nth-of-type(1) .jt-step-number::after,
.jt-process-item:nth-of-type(2) .jt-step-number::after,
.jt-process-item:nth-of-type(3) .jt-step-number::after {
  border-top: 6px solid var(--orange-vibrant);
}

/* Steps 04, 05, 06 - Dark Navy Halo */
.jt-process-item:nth-of-type(4) .jt-step-number,
.jt-process-item:nth-of-type(5) .jt-step-number,
.jt-process-item:nth-of-type(6) .jt-step-number {
  background: var(--navy-dark);
  box-shadow:
    0 0 0 5px rgba(var(--navy-dark-rgb), 0.14),
    0 3px 10px rgba(var(--navy-dark-rgb), 0.25);
}

.jt-process-item:nth-of-type(4) .jt-step-number::after,
.jt-process-item:nth-of-type(5) .jt-step-number::after,
.jt-process-item:nth-of-type(6) .jt-step-number::after {
  border-top: 6px solid var(--navy-dark);
}

.jt-process-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--bg-light-blue);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 22px rgba(10, 35, 64, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.jt-process-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition-transform);
}

.jt-process-item:hover .jt-process-icon {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(10, 35, 64, 0.1);
}

.jt-process-item:hover .jt-process-icon svg {
  transform: scale(1.08);
}

.jt-process-card {
  margin-top: -1px;
  min-height: 215px;
  padding: 27px 18px 24px;
  background: var(--white);
  border: 1px solid var(--bg-light-blue);
  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 25px rgba(10, 35, 64, 0.045);
}

.jt-process-card h3 {
  margin: 0;
  color: var(--navy-accent);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 800;
}

.jt-orange-line {
  display: block;
  width: 28px;
  height: 2px;
  margin: 14px auto 15px;
  background: var(--orange);
  border-radius: 5px;
}

.jt-process-card p {
  margin: 0;
  color: var(--text-muted-alt);
  font-size: 12.5px;
  line-height: 1.65;
}

.jt-journey-trust {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 25px 28px;
  background: var(--white);
  border: 1px solid var(--bg-light-blue);
  border-radius: var(--radius-3xl);
  box-shadow: 0 10px 30px rgba(10, 35, 64, 0.05);
}

.jt-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
}

.jt-trust-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-2xl);
  background: var(--orange-light-tint);
  color: var(--orange);
}

.jt-trust-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.jt-trust-item h4 {
  margin: 0 0 4px;
  color: var(--navy-accent);
  font-size: 13px;
  font-weight: 800;
}

.jt-trust-item p {
  margin: 0;
  color: var(--text-gray-cool);
  font-size: 11px;
  line-height: 1.5;
}

.jt-trust-divider {
  width: 1px;
  height: 42px;
  background: var(--bg-blue-subtle);
}

/* ==========================================================================
   11. SUCCESS STORIES & TESTIMONIALS (Slider, Client Avatar, Quotes)
   ========================================================================== */
.jt-success-testimonial {
  width: 100%;
  padding: 80px 0;
  background: var(--white);
  overflow: hidden;
}

.about-page .jt-success-testimonial {
  background: var(--bg-card-subtle);
}

.jt-success-inner {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 25px 70px rgba(15, 35, 60, 0.1);
  padding: 0;
}

.jt-success-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.jt-success-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.92) contrast(0.96);
}

.jt-success-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(248, 251, 255, 0.98) 0%,
    rgba(248, 251, 255, 0.92) 25%,
    rgba(248, 251, 255, 0.35) 50%,
    rgba(var(--white-rgb), 0.05) 75%
  );
}

.jt-success-content {
  position: absolute;
  left: 48px;
  top: 75px;
  width: 250px;
  z-index: 10;
}

.jt-success-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}

.jt-success-label span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.jt-success-label i {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: var(--radius-4xl);
}

.jt-success-content h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(38px, 3.2vw + 6px, 44px);
  line-height: 1.12;
  letter-spacing: -1.5px;
  font-weight: 800;
}

.jt-success-content h2 span {
  display: block;
  color: var(--orange);
}

.jt-success-content p {
  margin: 18px 0 0;
  max-width: 190px;
  color: var(--text-slate-600);
  font-size: 14.5px;
  line-height: 1.6;
}

.jt-success-cards-wrapper {
  position: absolute;
  z-index: 20;
  right: 48px;
  top: 55px;
  width: calc(100% - 350px);
  max-width: 860px;
  overflow: hidden;
  padding: 8px 4px 20px 4px;
}

.jt-success-cards-track {
  display: flex;
  gap: 22px;
  will-change: transform;
}

.jt-success-card {
  position: relative;
  flex: 0 0 calc(50% - 11px);
  min-width: 0;
  box-sizing: border-box;
  min-height: 250px;
  padding: 30px 28px 24px;
  border-radius: 18px;
  background: rgba(var(--white-rgb), 0.96);
  border: 1px solid rgba(220, 229, 237, 0.9);
  box-shadow: 0 16px 45px rgba(15, 35, 60, 0.12);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.jt-success-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(15, 35, 60, 0.18);
}

.jt-success-quote {
  position: absolute;
  top: 18px;
  left: 27px;
  color: var(--orange);
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
}

.jt-success-text {
  position: relative;
  z-index: 2;
  margin: 22px 0 18px;
  color: var(--navy-text-alt);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.jt-success-rating {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  color: gold;
  font-size: 18px;
  letter-spacing: 2px;
}

.jt-success-client {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.jt-success-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  overflow: hidden;
  border-radius: var(--radius-full);
  border: 2.5px solid var(--white);
  box-shadow: 0 4px 12px rgba(15, 35, 60, 0.15);
}

.jt-success-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jt-success-client-info h3 {
  margin: 0 0 2px;
  color: var(--navy-card);
  font-size: 16.5px;
  line-height: 1.2;
  font-weight: 700;
}

.jt-success-client-info span {
  color: var(--text-gray-muted);
  font-size: 12.5px;
  line-height: 1.35;
  display: block;
}

.jt-success-pagination {
  position: absolute;
  z-index: 30;
  right: 48px;
  width: calc(100% - 350px);
  max-width: 860px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
}

.jt-success-pagination span {
  width: 8px;
  height: 8px;
  display: block;
  cursor: pointer;
  pointer-events: auto;
  border-radius: var(--radius-full);
  background: rgba(var(--white-rgb), 0.8);
  border: 1px solid rgba(var(--color-primary-rgb), 0.35);
  transition:
    width 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.jt-success-pagination span.active {
  width: 24px;
  border-radius: var(--radius-4xl);
  background: var(--orange);
  transform: none;
}

/* ==========================================================================
   11b. OUR CLIENTS / TRUSTED PARTNERS (Logos Row & Cards)
   ========================================================================== */
.jt-clients-section {
  width: 100%;
  padding: 65px 0 75px;
  background: var(--bg-card-subtle);
  position: relative;
  overflow: hidden;
}

/* About Page - Section 5 White Background Override */
.about-page .jt-clients-section {
  background: var(--bg-card-subtle);
}

.about-page .jt-clients-section .jt-client-card {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border);
}

.jt-clients-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.jt-clients-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.jt-clients-label span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: var(--radius-4xl);
}

.jt-clients-title {
  margin: 0 0 38px;
  color: var(--navy-deep);
  font-size: clamp(30px, 3.2vw + 6px, 44px);
  font-weight: 800;
  letter-spacing: -1.4px;
  text-align: center;
  line-height: 1.15;
}

.jt-clients-title span {
  color: var(--orange);
}

.jt-clients-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 20px;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    transparent 100%
  );
}

.jt-clients-track {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: jtClientsMarquee 26s linear infinite;
  will-change: transform;
}

.jt-clients-carousel:hover .jt-clients-track {
  animation-play-state: paused;
}

.jt-clients-group {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.jt-client-card {
  flex: 0 0 165px;
  width: 165px;
  height: 96px;
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  box-shadow: 0 10px 25px rgba(15, 35, 60, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.jt-client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(15, 35, 60, 0.1);
  border-color: rgba(var(--color-primary-rgb), 0.4);
}

.jt-client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.jt-client-logo svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition-transform-smooth);
}

.jt-client-card:hover .jt-client-logo svg {
  transform: scale(1.05);
}

@keyframes jtClientsMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 11px));
  }
}

/* ==========================================================================
   12. FREQUENTLY ASKED QUESTIONS (FAQ Accordion & Illustration)
   ========================================================================== */
.jt-faq-section {
  position: relative;
  width: 100%;
  padding: 95px 0 90px;
  background-color: var(--white);
  overflow: hidden;
  box-sizing: border-box;
}

.jt-faq-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  left: -200px;
  top: -150px;
  border-radius: var(--radius-full);
  background: radial-gradient(
    circle,
    rgba(207, 228, 246, 0.3),
    transparent 70%
  );
  pointer-events: none;
}

.jt-faq-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  right: -120px;
  bottom: -120px;
  border-radius: var(--radius-full);
  background: radial-gradient(
    circle,
    rgba(var(--color-primary-rgb), 0.05),
    transparent 70%
  );
  pointer-events: none;
}

.jt-faq-container {
  position: relative;
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 60px;
  align-items: start;
  z-index: 2;
}

.jt-faq-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

.jt-faq-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.jt-faq-label i,
.jt-faq-label span {
  display: block;
  width: 30px;
  height: 2px;
  border-radius: var(--radius-4xl);
  background: var(--orange);
}

.jt-faq-intro h2 {
  margin: 0 0 16px 0;
  padding: 0;
  color: var(--navy-card);
  font-family: var(--font-sans);
  font-size: clamp(38px, 3.5vw + 8px, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.4px;
}

.jt-faq-intro h2 strong {
  display: block;
  margin-top: 2px;
  color: var(--orange);
  font-weight: 800;
}

.jt-faq-description {
  width: 100%;
  max-width: 380px;
  margin: 0 0 28px 0;
  padding: 0;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.65;
}

.jt-faq-image-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.jt-faq-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(16, 38, 64, 0.09));
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.jt-faq-image:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 18px 36px rgba(16, 38, 64, 0.13));
}

.jt-faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 10;
}

.jt-faq-item {
  width: 100%;
  background: rgba(var(--white-rgb), 0.96);
  border: 1px solid var(--border-blue-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(15, 35, 60, 0.045);
  transition: var(--transition-base);
}

.jt-faq-item:hover {
  border-color: var(--border-blue-gray);
  box-shadow: 0 12px 30px rgba(15, 35, 60, 0.08);
  transform: translateY(-2px);
}

.jt-faq-item.active {
  box-shadow: 0 6px 17px rgba(15, 35, 60, 0.06);
}

.jt-faq-question {
  width: 100%;
  min-height: 68px;
  padding: 0 24px;
  margin: 0;
  border: 0;
  outline: none;
  background: transparent;
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) 20px;
  align-items: center;
  column-gap: 6px;
  cursor: pointer;
  text-align: left;
  box-sizing: border-box;
  gap: 15px;
}

.jt-faq-number-small {
  color: var(--orange);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.jt-faq-title {
  display: block;
  color: var(--navy-text-dark);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.jt-faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray-cool-alt);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transition: 0.25s ease;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
}

.jt-faq-item.active .jt-faq-toggle {
  color: var(--orange);
  background: var(--orange-warm);
}

.jt-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition:
    grid-template-rows 0.35s ease,
    opacity 0.25s ease;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

.jt-faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 65px 0 82px;
  color: var(--text-muted-alt);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  box-sizing: border-box;
  transition: padding 0.35s ease;
}

.jt-faq-item.active .jt-faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
}

.jt-faq-item.active .jt-faq-answer p {
  padding-bottom: 20px;
}

.jt-faq-question:focus-visible {
  outline: 2px solid rgba(var(--color-primary-rgb), 0.35);
  outline-offset: -2px;
}

/* ==========================================================================
   13. CONTACT SECTION & INQUIRY FORM
   ========================================================================== */
.jt-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  min-width: 0;
  padding: 6px 8px;
  border-radius: var(--radius-base);
  text-decoration: none;
  background: transparent;
  transition: var(--transition-base);
  overflow: hidden;
}

.jt-contact-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--orange-cream);
  border: 1px solid rgba(var(--color-primary-rgb), 0.18);
  color: var(--orange);
  font-size: 14px;
  transition: 0.25s ease;
}

.jt-contact-item small {
  display: block;
  margin-bottom: 2px;
  color: var(--text-gray-light);
  font-size: 10.5px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jt-contact-item strong,
.jt-contact-item a {
  display: block;
  color: rgba(var(--white-rgb), 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.jt-contact-item a:hover {
  color: var(--white);
}

.jt-contact-item:hover {
  background: var(--orange-subtle-tint);
  transform: translateY(-2px);
}

.jt-contact-item > span:last-child {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.jt-contact-item:hover .jt-contact-icon {
  background: var(--orange);
  color: var(--white);
}

.jt-contact-item strong {
  display: block;
  color: var(--navy);
  font-size: 12.5px;
  line-height: 1.3;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jt-contact-row {
  margin-bottom: 17px;
}

.jt-contact-label {
  display: flex;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  align-items: center;
  gap: 8px;
}

.jt-contact-row strong,
.jt-contact-row a {
  display: inline-block;
  color: rgba(var(--white-rgb), 0.78);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-color);
  line-height: 1.5;
}

.jt-contact-row strong {
  color: rgba(var(--white-rgb), 0.65);
  font-weight: 700;
}

.jt-contact-row a:hover {
  color: var(--white);
}

.jt-contact-section {
  position: relative;
  width: 100%;
  padding: 50px 0;
  background: var(--bg-card-subtle);
  overflow: hidden;
}

.jt-contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.jt-contact-info {
  padding-right: 8px;
}

.jt-contact-labelfooter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

.jt-contact-label span {
  width: 27px;
  height: 2px;
  background: var(--orange);
  border-radius: var(--radius-lg);
}

.jt-contact-heading {
  margin: 0;
  color: var(--navy-dark);
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -1.2px;
  font-weight: 800;
}

.jt-contact-intro {
  margin: 12px 0 24px;
  color: var(--text-muted-alt);
  font-size: 12px;
  line-height: 1.6;
}

.jt-contact-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 66px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-blue-bottom);
}

.jt-contact-detail:last-child {
  border-bottom: none;
}

.jt-detail-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 5px 15px rgba(15, 35, 60, 0.07);
  color: var(--orange);
}

.jt-detail-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.jt-detail-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.jt-detail-content small {
  color: var(--navy-text-slate);
  font-size: 14px;
  font-weight: 700;
}

.jt-detail-content strong {
  color: var(--navy-card);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.jt-detail-content span {
  color: var(--text-gray-subtle);
  font-size: 9.5px;
  line-height: 1.35;
}

.jt-contact-form-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--bg-neutral);
  border-radius: var(--radius-3xl);
  box-shadow: 0 16px 40px rgba(15, 35, 60, 0.07);
}

.jt-form-map {
  position: absolute;
  right: -10px;
  top: -12px;
  width: 390px;
  height: 220px;
  opacity: 0.2;
  background-image: radial-gradient(
    circle,
    var(--dot-pattern-dark) 1.2px,
    transparent 1.5px
  );
  background-size: 6px 6px;
  clip-path: ellipse(50% 46% at 50% 45%);
  pointer-events: none;
}

.jt-form-map::after {
  content: "";
  position: absolute;
  right: 45px;
  top: 100px;
  width: 180px;
  height: 70px;
  border-top: 1.5px solid rgba(var(--color-primary-rgb), 0.3);
  border-radius: var(--radius-full);
  transform: rotate(13deg);
}

.jt-form-content {
  position: relative;
  z-index: 3;
  padding: 34px 30px 30px;
}

.jt-form-content h3 {
  margin: 0;
  color: var(--navy-card);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.jt-form-subtitle {
  margin: 6px 0 24px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}

.jt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.jt-field {
  margin-bottom: 14px;
}

.jt-field input,
.jt-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  color: var(--navy-card);
  outline: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.jt-field input {
  height: 48px;
  padding: 0 16px;
}

.jt-field textarea {
  height: 105px;
  padding: 13px 16px;
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}

.jt-field input::placeholder,
.jt-field textarea::placeholder {
  color: var(--text-light);
  font-weight: 400;
  opacity: 1;
}

.jt-field input:hover,
.jt-field textarea:hover {
  border-color: var(--border-dark);
}

.jt-field input:focus,
.jt-field textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3.5px rgba(var(--color-primary-rgb), 0.12);
}

.jt-form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
}

.jt-send-button {
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 26px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--navy-darker);
  color: var(--white);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow-navy-sm);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.jt-send-button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    stroke 0.2s ease,
    transform 0.2s ease;
}

.jt-send-button:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange-lg);
}

.jt-send-button:hover svg {
  stroke: var(--white);
  transform: translateX(2px);
}

.jt-form-security {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
}

.jt-form-security svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--success);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================================
   14. GLOBAL CTA — UNIFIED SHOWCASE CARD (one card, seamless blend)
   ========================================================================== */
/* CTA section wrapper background styling */
.jt-global-cta {
  position: relative;
  width: 100%;
  padding: 80px 0 90px;
  background: var(--white);
}

/* Home (index.html) & About Us (aboutus.html) — var(--white) background for clean contrast */
.about-page .jt-global-cta {
  background: var(--white);
}

/* Services (services.html) & Reviews (reviews.html) — var(--bg) background for section alternation */
.services-page .jt-global-cta,
.reviews-page .jt-global-cta {
  background: var(--bg);
}

.jt-global-container {
  position: relative;
  z-index: 2;
}

/* ── The single unified card ── */
.jt-unified-showcase {
  position: relative;
  width: 100%;
  min-height: 440px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(10, 24, 46, 0.16),
    0 4px 16px rgba(10, 24, 46, 0.08);
  display: grid;
  grid-template-columns: 40% 60%;
  isolation: isolate;
}

/* Full-bleed cargo port photo — sits behind everything */
.jt-showcase-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/cargo_port_bg.jpg");
  background-size: cover;
  background-position: 25% 40%;
}

/* Gradient veil — opaque navy left → slow photo dissolve → seamless var(--bg) right */
.jt-showcase-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(4, 15, 30, 0.97) 0%,
    rgba(4, 15, 30, 0.97) 8%,
    rgba(5, 17, 34, 0.93) 14%,
    rgba(5, 19, 38, 0.87) 20%,
    rgba(6, 21, 42, 0.79) 26%,
    rgba(6, 22, 45, 0.7) 32%,
    rgba(7, 24, 48, 0.59) 37%,
    rgba(15, 35, 65, 0.46) 42%,
    rgba(40, 65, 100, 0.32) 47%,
    rgba(100, 130, 165, 0.2) 52%,
    rgba(180, 200, 220, 0.3) 56%,
    rgba(215, 228, 240, 0.5) 60%,
    rgba(235, 242, 248, 0.7) 64%,
    rgba(244, 247, 251, 0.87) 68%,
    rgba(248, 250, 252, 0.96) 72%,
    var(--bg) 76%,
    var(--bg) 100%
  );
  pointer-events: none;
}

/* ── LEFT CONTENT COLUMN ── */
.jt-showcase-left {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 48px 44px 52px;
  box-sizing: border-box;
}

/* Eyebrow */
.jt-showcase-left .jt-cta-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(var(--white-rgb), 0.72);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.jt-showcase-left .jt-cta-label span {
  width: 28px;
  height: 2.5px;
  background: var(--white);
  border-radius: var(--radius-xs);
}

/* Heading */
.jt-showcase-left h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: clamp(36px, 3.2vw + 6px, 48px);
  font-weight: 800;
  line-height: 1.11;
  letter-spacing: -1.6px;
}

.jt-showcase-left h2 em {
  color: var(--white);
  font-style: normal;
}

/* Description */
.jt-showcase-desc {
  color: rgba(var(--white-rgb), 0.72);
  font-size: 15px;
  line-height: 1.65;
  max-width: 420px;
  margin: 0 0 28px;
}

/* Action buttons row */
.jt-showcase-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.jt-showcase-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 52px;
  padding: 0 10px 0 22px;
  background: var(--white);
  color: var(--navy-deep);
  border-radius: var(--radius-base);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition-base);
}

.jt-showcase-arrow {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition-transform);
}

.jt-showcase-primary:hover {
  background: var(--bg-gray-200);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.jt-showcase-primary:hover .jt-showcase-arrow {
  transform: rotate(45deg) scale(1.1);
}

.jt-showcase-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  background: rgba(13, 31, 56, 0.55);
  border: 1.5px solid rgba(var(--white-rgb), 0.18);
  backdrop-filter: blur(10px);
  color: var(--white);
  border-radius: var(--radius-base);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-base);
}

.jt-showcase-secondary:hover {
  border-color: rgba(var(--white-rgb), 0.4);
  background: rgba(13, 31, 56, 0.75);
  transform: translateY(-2px);
}

/* Glassmorphic bottom badge */
.jt-showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px 12px 14px;
  background: rgba(var(--white-rgb), 0.1);
  border: 1px solid rgba(var(--white-rgb), 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  width: fit-content;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(var(--white-rgb), 0.08);
}

.jt-showcase-badge .jt-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: var(--radius-full);
  background: var(--success-light);
  box-shadow:
    0 0 0 3px rgba(var(--success-light-rgb), 0.25),
    0 0 10px rgba(var(--success-light-rgb), 0.5);
  flex-shrink: 0;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow:
      0 0 0 3px rgba(var(--success-light-rgb), 0.25),
      0 0 10px rgba(var(--success-light-rgb), 0.5);
  }

  50% {
    box-shadow:
      0 0 0 5px rgba(var(--success-light-rgb), 0.15),
      0 0 18px rgba(var(--success-light-rgb), 0.7);
  }
}

.jt-showcase-badge svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.jt-showcase-badge strong {
  display: block;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}

.jt-showcase-badge small {
  display: block;
  color: rgba(var(--white-rgb), 0.55);
  font-size: 11px;
  margin-top: 2px;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

/* ── RIGHT CONTENT COLUMN ── */
.jt-showcase-right {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding: 36px 36px 28px 28px;
  box-sizing: border-box;
  background: var(--bg);
  /* solid white so map is always visible */
}

/* Right header: GLOBAL NETWORK label + status pill */
.jt-showcase-right-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.jt-network-label {
  display: block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.jt-showcase-right-header h3 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(19px, 1.4vw + 8px, 23px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.jt-showcase-right-header h3 span {
  color: var(--orange);
}

.jt-live-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: var(--success-100);
  border: 1px solid var(--success-border);
  color: var(--success-emerald-text);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
}

.jt-live-status span {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(var(--success-rgb), 0.2);
}

/* Map area */
.jt-showcase-map {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 240px;
  margin: 6px 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: visible;
}

.jt-showcase-world-svg {
  width: 100%;
  height: auto;
  min-height: 220px;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 4px 16px rgba(var(--navy-rgb), 0.03));
}

.jt-showcase-map .jt-svg-route {
  stroke-dasharray: 6 5;
  fill: none;
  animation: routeDashFlow 22s linear infinite;
}

.jt-showcase-map .jt-route-particle {
  opacity: 0.95;
  filter: drop-shadow(0 0 5px rgba(var(--color-primary-rgb), 0.7));
}

.jt-showcase-map .pin-tag-bg {
  fill: var(--white);
  stroke: var(--border);
  stroke-width: 1;
  filter: drop-shadow(0 3px 8px rgba(var(--navy-rgb), 0.1));
  transition:
    stroke 0.25s ease,
    fill 0.25s ease;
}

.jt-showcase-map .pin-tag-title {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  fill: var(--navy);
  transition: fill 0.25s ease;
}

.jt-showcase-map .svg-map-pin:hover .pin-tag-bg {
  stroke: var(--orange);
  fill: var(--white);
}

.jt-showcase-map .svg-map-pin:hover .pin-tag-title {
  fill: var(--orange);
}

.jt-showcase-map .jt-map-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(var(--color-primary-dark-rgb), 0.07) 0%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
}

/* 2×2 contact info cards */
.jt-showcase-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.jt-showcase-info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--border-blue-alt);
  border-radius: var(--radius-xl);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(12, 30, 54, 0.04);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.jt-showcase-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(12, 30, 54, 0.08);
  border-color: rgba(var(--color-primary-rgb), 0.3);
}

.jt-showcase-icon-wrap {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background: var(--orange-card-tint);
  display: flex;
  align-items: center;
  justify-content: center;
}

.jt-showcase-info-card span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.jt-showcase-info-card small {
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

.jt-showcase-info-card strong {
  color: var(--navy-deep);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   15. FOOTER (Clean Professional Mid-Range UI)
   ========================================================================== */
.jt-footer {
  position: relative;
  background-color: var(--navy-darker);
  color: var(--white);
  border-top: 1px solid rgba(var(--white-rgb), 0.08);
}

.jt-footer-container {
  position: relative;
}

.jt-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.25fr;
  gap: 45px;
  padding: 70px 0 50px;
  align-items: start;
}

/* BRAND COLUMN */
.jt-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.jt-footer-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius-base);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  margin-bottom: 18px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.jt-footer-logo-card:hover {
  transform: translateY(-2px);
}

.jt-footer-logo-img {
  height: 44px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
}

.jt-footer-tagline {
  margin: 0 0 20px;
  color: var(--text-light);
  font-size: 13.5px;
  line-height: 1.65;
  font-weight: 400;
  max-width: 320px;
}

.jt-footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.jt-social-btn {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: var(--radius-base);
  background: #ffffff;
  border: 1px solid #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #081a2f;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.jt-social-btn svg {
  width: 15px;
  height: 15px;
  stroke: #081a2f;
  transition: stroke 0.25s ease;
}

.jt-social-btn:hover {
  background: #081a2f;
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.jt-social-btn:hover svg {
  stroke: #ffffff;
}

/* NAVIGATION COLUMNS */
.jt-footer-column {
  display: flex;
  flex-direction: column;
}

.jt-footer-col-title {
  position: relative;
  margin: 0 0 20px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.3;
}

.jt-footer-col-title::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: var(--radius-xs);
  margin-top: 8px;
}

.jt-footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.jt-footer-nav-list a {
  color: var(--text-light);
  font-size: 13.5px;
  line-height: 1.4;
  text-decoration: none;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
  font-weight: 400;
}

.jt-footer-nav-list a:hover {
  color: var(--white);
  padding-left: 3px;
}

/* CONTACT COLUMN */
.jt-footer-contact {
  display: flex;
  flex-direction: column;
}

.jt-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0;
}

.jt-contact-entry {
  display: flex;
  align-items: center;
  gap: 12px;
}

.jt-footer-contact-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: var(--radius-base);
  background: #ffffff;
  color: #081a2f;
  border: 1px solid #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.jt-footer-contact-icon svg {
  width: 15px;
  height: 15px;
  stroke: #081a2f;
  transition: stroke 0.25s ease;
}

.jt-contact-entry:hover .jt-footer-contact-icon {
  background: #081a2f;
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.jt-contact-entry:hover .jt-footer-contact-icon svg {
  stroke: #ffffff;
}

.jt-contact-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.entry-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.entry-val {
  font-size: 13.5px;
  color: var(--border);
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.entry-val.is-link {
  color: var(--white);
  transition: var(--transition-color);
}

.entry-val.is-link:hover {
  color: var(--white);
  text-decoration: underline;
}

/* FOOTER DIVIDER & BOTTOM BAR */
.jt-footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(var(--white-rgb), 0.08);
}

.jt-footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.jt-footer-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 400;
}

.jt-footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jt-footer-links a {
  color: var(--muted);
  font-size: 12.5px;
  text-decoration: none;
  transition: var(--transition-color);
  font-weight: 400;
}

.jt-footer-links a:hover {
  color: var(--white);
}

.footer-link-dot {
  color: rgba(var(--white-rgb), 0.15);
  font-size: 9px;
}

/* ==========================================================================
   16. ADDITIONAL UTILITIES
   ========================================================================== */
.quote {
  background: var(--navy-darker);
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition-base);
  box-shadow: var(--shadow-navy-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.quote:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(var(--color-primary-rgb), 0.35);
}

h1 {
  font-family: var(--font-sans);
  font-size: clamp(56px, 5vw + 16px, 64px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 20px;
}

h1 span {
  display: inline;
  color: var(--orange);
}

.actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.pagination-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.pagination-item.active {
  color: var(--orange);
}

.pagination-line {
  width: 40px;
  height: 2px;
  background: rgba(148, 163, 184, 0.3);
  transition: var(--transition-smooth);
}

.pagination-item.active .pagination-line {
  background: var(--orange);
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.orange-dots {
  position: absolute;
  right: 0;
  bottom: 50px;
  width: 45px;
  height: 55px;
  background-image: radial-gradient(
    circle,
    var(--orange) 2px,
    transparent 2.5px
  );
  background-size: 12px 12px;
  z-index: 5;
  opacity: 0.8;
}

.feature-text {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
}

.jt-about-content {
  position: relative;
  z-index: 5;
  width: 1325px;
  max-width: calc(100% - 48px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 2px;
}

.jt-about-content h1 {
  margin: 0;
  color: var(--navy-dark);
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -1.25px;
  font-weight: 800;
}

.jt-about-content h1 strong {
  color: var(--orange);
  font-weight: 800;
}

.jt-about-content p {
  max-width: 430px;
  margin: 13px 0 0;
  color: var(--text-slate-700);
  font-size: 12px;
  line-height: 1.55;
  font-weight: 400;
}

html,
body {
  overflow-x: clip;
  width: 100%;
}

/* ==========================================================================
   16. KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes routeDash {
  to {
    stroke-dashoffset: -200;
  }
}

@keyframes pinPulse {
  0% {
    transform: rotate(45deg) translate(-50%, -50%) scale(0.5);

    opacity: 0.7;
  }

  100% {
    transform: rotate(45deg) translate(-50%, -50%) scale(2);

    opacity: 0;
  }
}

/* ==========================================================================
   17. UNIFIED RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* --------------------------------------------------------------------------
   A. Extra-Large & 4K Ultrawide Desktops (min-width: 1800px)
   -------------------------------------------------------------------------- */
@media (min-width: 1800px) {
  :root {
    --container-max-width: 1540px;
    --container-gutter: 36px;
  }

  .container,
  .who-layout,
  .wcu-container,
  .jt-journey-container,
  .jt-faq-container,
  .jt-contact-container,
  .jt-global-container,
  .jt-footer-container,
  .jt-success-inner,
  .jt-about-content,
  .jt-presence-container,
  .jt-offices-directory-inner,
  .jt-clients-container {
    max-width: 1540px;
    padding-left: 36px;
    padding-right: 36px;
  }

  .header {
    height: 106px;
  }

  .logo-link {
    flex: 1;
  }

  .logo {
    height: 84px;
    max-width: 300px;
  }

  .nav {
    gap: 44px;
  }

  .nav a {
    font-size: 15px;
    letter-spacing: 0.6px;
    font-weight: 700;
  }

  .header-actions {
    flex: 1;
    gap: 20px;
  }

  .quote {
    padding: 13px 26px;
    font-size: 14px;
    height: 48px;
    border-radius: var(--radius-base);
  }

  .hero {
    padding: 55px 0 25px;
  }

  .hero-grid {
    min-height: 620px;
    gap: 55px;
  }

  .hero h1 {
    font-size: 58px;
    line-height: 1.12;
    letter-spacing: -1.8px;
  }

  .hero-left p {
    font-size: 17px;
    line-height: 1.75;
    max-width: 620px;
    margin-bottom: 34px;
  }

  .hero-right,
  .carousel-wrapper {
    height: 600px;
  }

  .floating-features-card {
    max-width: 100%;
    width: 100%;
    padding: 26px 36px;
    gap: 24px;
    margin: 54px 0 -52px 0;
  }

  .floating-feature h4 {
    font-size: 14.5px;
  }

  .floating-feature p {
    font-size: 13.5px;
  }

  .about-hero {
    padding: 115px 0 70px;
  }

  .about-content .title {
    font-size: 50px;
    line-height: 1.1;
  }

  .about-content .desc {
    font-size: 16.5px;
    line-height: 1.7;
    max-width: 560px;
  }

  .about-visual {
    height: 560px;
    max-width: 740px;
  }

  .visual-map {
    width: 580px;
    height: 550px;
    left: 120px;
  }

  .image-left {
    width: 185px;
    height: 365px;
    left: 20px;
    top: 120px;
  }

  .image-center {
    width: 280px;
    height: 555px;
    left: 227px;
    /* 20 + 185 + 22 = 227px */
    top: 5px;
  }

  .image-right {
    width: 185px;
    height: 365px;
    left: 529px;
    /* 227 + 280 + 22 = 529px */
    top: 120px;
  }

  .collage-arcs-svg {
    left: 470px;
    top: 180px;
    width: 140px;
    height: 90px;
  }

  .jt-about-banner {
    height: 280px;
  }

  .jt-about-content h1 {
    font-size: 52px;
  }

  .jt-services {
    padding: 115px 0 120px;
  }

  .jt-services-grid {
    gap: 32px;
  }

  .jt-service-card-img-wrap {
    height: 210px;
  }

  .jt-service-main-title {
    font-size: 34px;
  }

  .jt-presence-section {
    padding: 125px 0 135px;
  }

  .jt-presence-container {
    gap: 70px;
  }

  .jt-presence-title {
    font-size: 52px;
  }

  .jt-presence-desc {
    font-size: 17px;
    max-width: 540px;
  }

  .jt-presence-map-wrapper {
    max-width: 860px;
  }

  .jt-offices-grid {
    gap: 30px;
  }

  .jt-office-card {
    padding: 28px 26px;
    border-radius: var(--radius-3xl);
  }

  .office-title {
    font-size: 19px;
  }

  .jt-success-testimonial {
    padding: 105px 0;
  }

  .jt-success-inner {
    min-height: 500px;
    border-radius: 32px;
  }

  .jt-success-content {
    left: 70px;
    top: 90px;
    width: 320px;
  }

  .jt-success-content h2 {
    font-size: 48px;
  }

  .jt-success-cards-wrapper {
    right: 70px;
    top: 70px;
    max-width: 980px;
    width: calc(100% - 420px);
  }

  .jt-success-card {
    min-height: 280px;
    padding: 36px 32px 30px;
  }

  .jt-clients-section {
    padding: 85px 0 95px;
  }

  .jt-clients-title {
    font-size: 42px;
  }

  .jt-client-card {
    width: 180px;
    height: 100px;
  }

  .jt-journey {
    padding: 115px 0 100px;
  }

  .jt-journey-header h2 {
    font-size: 52px;
  }

  .jt-process-card {
    min-height: 240px;
    padding: 32px 24px 28px;
  }

  .jt-faq-section {
    padding: 105px 0 95px;
  }

  .jt-faq-container {
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 85px;
  }

  .jt-faq-intro h2 {
    font-size: 50px;
  }

  .jt-contact-section {
    padding: 75px 0;
  }

  .jt-contact-container {
    gap: 65px;
    grid-template-columns: 1fr 1.8fr;
  }

  .jt-contact-heading {
    font-size: 42px;
  }

  .jt-global-cta {
    padding: 110px 0;
  }

  .jt-unified-showcase {
    min-height: 480px;
  }

  .jt-showcase-left {
    padding: 64px 52px 52px 60px;
  }

  .jt-footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
    gap: 60px;
    padding: 85px 0 60px;
  }

  .jt-footer-tagline {
    font-size: 14.5px;
    max-width: 360px;
  }
}

/* --------------------------------------------------------------------------
   B. Large Desktops & Wide Screens (min-width: 1440px)
   -------------------------------------------------------------------------- */
@media (min-width: 1440px) {
  :root {
    --container-max-width: 1400px;
    --container-gutter: 30px;
  }

  .container,
  .who-layout,
  .wcu-container,
  .jt-journey-container,
  .jt-faq-container,
  .jt-contact-container,
  .jt-global-container,
  .jt-footer-container,
  .jt-success-inner,
  .jt-about-content,
  .jt-presence-container,
  .jt-offices-directory-inner,
  .jt-clients-container {
    max-width: 1400px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .header {
    height: 75px;
  }

  .logo-link {
    flex: 1;
  }

  .logo {
    height: 74px;
    max-width: 260px;
  }

  .nav {
    gap: 36px;
  }

  .nav a {
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 600;
  }

  .header-actions {
    flex: 1;
    gap: 16px;
  }

  .quote {
    padding: 12px 22px;
    font-size: 13.5px;
    height: 46px;
    border-radius: var(--radius-base);
  }

  .hero {
    padding: 45px 0 15px;
  }

  .hero-grid {
    min-height: 560px;
    gap: 45px;
  }

  .hero h1 {
    font-size: 52px;
    line-height: 1.14;
    letter-spacing: -1.5px;
  }

  .hero-left p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 540px;
  }

  .hero-right,
  .carousel-wrapper {
    height: 550px;
  }

  .floating-features-card {
    max-width: 100%;
    width: 100%;
    padding: 24px 30px;
    gap: 18px;
    margin: 48px 0 -46px 0;
  }

  .about-hero {
    padding: 105px 0 55px;
  }

  .about-content .title {
    font-size: 46px;
  }

  .about-visual {
    height: 530px;
    max-width: 690px;
  }

  .visual-map {
    width: 540px;
    height: 510px;
    left: 110px;
  }

  .image-left {
    width: 175px;
    height: 345px;
    left: 18px;
    top: 115px;
  }

  .image-center {
    width: 265px;
    height: 525px;
    left: 213px;
    /* 18 + 175 + 20 = 213px */
    top: 5px;
  }

  .image-right {
    width: 175px;
    height: 345px;
    left: 498px;
    /* 213 + 265 + 20 = 498px */
    top: 115px;
  }

  .collage-arcs-svg {
    left: 445px;
    top: 170px;
    width: 135px;
    height: 88px;
  }

  .jt-about-banner {
    height: 260px;
  }

  .jt-services {
    padding: 105px 0 110px;
  }

  .jt-services-grid {
    gap: 28px;
  }

  .jt-service-card-img-wrap {
    height: 195px;
  }

  .jt-service-main-title {
    font-size: 30px;
  }

  .jt-presence-section {
    padding: 110px 0 120px;
  }

  .jt-presence-container {
    gap: 55px;
  }

  .jt-presence-title {
    font-size: 46px;
  }

  .jt-presence-map-wrapper {
    max-width: 780px;
  }

  .jt-offices-grid {
    gap: 26px;
  }

  .jt-office-card {
    padding: 26px 24px;
  }

  .jt-success-testimonial {
    padding: 90px 0;
  }

  .jt-success-inner {
    min-height: 460px;
  }

  .jt-success-content {
    left: 55px;
    top: 80px;
    width: 280px;
  }

  .jt-success-cards-wrapper {
    right: 55px;
    top: 60px;
    max-width: 900px;
    width: calc(100% - 370px);
  }

  .jt-success-card {
    min-height: 265px;
    padding: 32px 30px 26px;
  }

  .jt-clients-section {
    padding: 75px 0 85px;
  }

  .jt-journey {
    padding: 100px 0 85px;
  }

  .jt-journey-header h2 {
    font-size: 48px;
  }

  .jt-process-card {
    min-height: 225px;
  }

  .jt-faq-section {
    padding: 95px 0 85px;
  }

  .jt-faq-container {
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 75px;
  }

  .jt-contact-section {
    padding: 60px 0;
  }

  .jt-contact-container {
    gap: 50px;
  }

  .jt-global-cta {
    padding: 95px 0;
  }

  .jt-footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding: 75px 0 55px;
  }
}

/* --------------------------------------------------------------------------
   C. Medium Laptops & Desktops (1280px - 1439px)
   -------------------------------------------------------------------------- */
@media (min-width: 1280px) and (max-width: 1439px) {
  :root {
    --container-max-width: 1260px;
    --container-gutter: 26px;
  }

  .container,
  .who-layout,
  .wcu-container,
  .jt-journey-container,
  .jt-faq-container,
  .jt-contact-container,
  .jt-global-container,
  .jt-footer-container,
  .jt-success-inner,
  .jt-about-content,
  .jt-presence-container,
  .jt-offices-directory-inner,
  .jt-clients-container {
    max-width: 1260px;
    padding-left: 26px;
    padding-right: 26px;
  }

  .header {
    height: 88px;
  }

  .logo-link {
    flex: 1;
  }

  .logo {
    height: 64px;
    max-width: 230px;
  }

  .nav {
    gap: 28px;
  }

  .nav a {
    font-size: 13.5px;
    letter-spacing: 0.4px;
    font-weight: 600;
  }

  .header-actions {
    flex: 1;
    gap: 14px;
  }

  .quote {
    padding: 10px 20px;
    font-size: 13px;
    height: 44px;
    border-radius: var(--radius-md);
  }

  .hero {
    padding: 35px 0 10px;
  }

  .hero-grid {
    min-height: 500px;
    gap: 36px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.15;
    letter-spacing: -1.2px;
  }

  .hero-left p {
    font-size: 15px;
    line-height: 1.65;
    max-width: 500px;
  }

  .hero-right,
  .carousel-wrapper {
    height: 500px;
  }

  .floating-features-card {
    max-width: 100%;
    width: 100%;
    padding: 20px 24px;
    gap: 16px;
    margin: 40px 0 -40px 0;
  }

  .floating-feature {
    padding: 4px 12px;
    gap: 12px;
  }

  .floating-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .floating-feature h4 {
    font-size: 13px;
  }

  .floating-feature p {
    font-size: 12.5px;
  }

  .about-hero {
    padding: 85px 0 50px;
  }

  .about-content .title {
    font-size: 42px;
  }

  .about-visual {
    height: 490px;
    max-width: 630px;
  }

  .visual-map {
    width: 480px;
    height: 460px;
    left: 95px;
  }

  .image-left {
    width: 160px;
    height: 315px;
    left: 15px;
    top: 110px;
  }

  .image-center {
    width: 245px;
    height: 485px;
    left: 192px;
    /* 15 + 160 + 17 = 192px */
    top: 5px;
  }

  .image-right {
    width: 160px;
    height: 315px;
    left: 454px;
    /* 192 + 245 + 17 = 454px */
    top: 110px;
  }

  .collage-arcs-svg {
    left: 405px;
    top: 160px;
    width: 125px;
    height: 82px;
  }

  .jt-services {
    padding: 90px 0 95px;
  }

  .jt-services-grid {
    gap: 22px;
  }

  .jt-service-card-img-wrap {
    height: 175px;
  }

  .jt-service-main-title {
    font-size: 26px;
  }

  .jt-presence-section {
    padding: 95px 0 105px;
  }

  .jt-presence-container {
    gap: 45px;
  }

  .jt-presence-map-wrapper {
    max-width: 680px;
  }

  .jt-presence-title {
    font-size: 42px;
  }

  .jt-offices-grid {
    gap: 20px;
  }

  .jt-office-card {
    padding: 22px 20px;
  }

  .jt-success-testimonial {
    padding: 75px 0;
  }

  .jt-success-inner {
    min-height: 420px;
  }

  .jt-success-content {
    left: 42px;
    top: 65px;
    width: 250px;
  }

  .jt-success-cards-wrapper {
    right: 42px;
    top: 48px;
    max-width: 820px;
    width: calc(100% - 320px);
  }

  .jt-success-card {
    min-height: 245px;
    padding: 26px 24px 22px;
  }

  .jt-journey {
    padding: 85px 0 75px;
  }

  .jt-journey-header h2 {
    font-size: 44px;
  }

  .jt-faq-section {
    padding: 85px 0 75px;
  }

  .jt-faq-container {
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 55px;
  }

  .jt-faq-intro h2 {
    font-size: 42px;
  }

  .jt-contact-section {
    padding: 50px 0;
  }

  .jt-contact-container {
    gap: 40px;
  }

  .jt-footer-grid {
    grid-template-columns: 1.55fr 1fr 1fr 1fr 1.25fr;
    gap: 32px;
    padding: 60px 0 45px;
  }
}

/* --------------------------------------------------------------------------
   D. Small Laptops (1024px - 1279px)
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) and (max-width: 1279px) {
  :root {
    --container-max-width: 1180px;
    --container-gutter: 22px;
  }

  .container,
  .who-layout,
  .wcu-container,
  .jt-journey-container,
  .jt-faq-container,
  .jt-contact-container,
  .jt-global-container,
  .jt-footer-container,
  .jt-success-inner,
  .jt-about-content,
  .jt-presence-container,
  .jt-offices-directory-inner,
  .jt-clients-container {
    max-width: 1180px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .header {
    height: 80px;
  }

  .logo-link {
    flex: 1;
  }

  .logo {
    height: 56px;
    max-width: 200px;
  }

  .nav {
    gap: 20px;
  }

  .nav a {
    font-size: 12.5px;
    letter-spacing: 0.3px;
    font-weight: 600;
  }

  .header-actions {
    flex: 1;
    gap: 12px;
  }

  .quote {
    padding: 8px 16px;
    font-size: 12px;
    height: 40px;
    border-radius: var(--radius-md);
  }

  .hero {
    padding: 28px 0 10px;
  }

  .hero-grid {
    min-height: 470px;
    gap: 28px;
    grid-template-columns: 1.1fr 0.9fr;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: -1px;
  }

  .hero-left p {
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 460px;
    margin-bottom: 22px;
  }

  .hero-right,
  .carousel-wrapper {
    height: 470px;
  }

  .floating-features-card {
    max-width: 100%;
    width: 100%;
    padding: 16px 18px;
    gap: 12px;
    margin: 36px 0 -36px 0;
  }

  .floating-feature {
    padding: 4px 8px;
    gap: 10px;
  }

  .floating-feature-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: var(--radius-lg);
  }

  .floating-feature h4 {
    font-size: 12.5px;
    margin-bottom: 2px;
  }

  .floating-feature p {
    font-size: 11.5px;
  }

  .about-hero {
    padding: 75px 0 45px;
  }

  .about-hero-grid {
    grid-template-columns: 48% 52%;
    gap: 20px;
  }

  .about-content {
    padding-right: 15px;
  }

  .about-content .title {
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -0.8px;
  }

  .about-content .desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 16px 0 22px;
    max-width: 450px;
  }

  .about-visual {
    height: 450px;
    max-width: 560px;
  }

  .visual-map {
    width: 440px;
    height: 420px;
    left: 80px;
  }

  .image-left {
    width: 145px;
    height: 285px;
    left: 10px;
    top: 95px;
  }

  .image-center {
    width: 215px;
    height: 435px;
    left: 169px;
    /* 10 + 145 + 14 = 169px */
    top: 5px;
  }

  .image-right {
    width: 145px;
    height: 285px;
    left: 398px;
    /* 169 + 215 + 14 = 398px */
    top: 95px;
  }

  .collage-arcs-svg {
    left: 355px;
    top: 135px;
    width: 110px;
    height: 75px;
  }

  .jt-about-banner {
    height: 220px;
  }

  .jt-about-content h1 {
    font-size: 38px;
  }

  .jt-services {
    padding: 80px 0 85px;
  }

  .jt-services-grid {
    gap: 18px;
    grid-template-columns: repeat(4, 1fr);
  }

  .jt-service-main-title {
    font-size: 24px;
    line-height: 1.25;
  }

  .jt-service-main-desc {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .jt-service-card-img-wrap {
    height: 180px;
  }

  .jt-service-card-body {
    padding: 20px 18px 22px;
  }

  .jt-service-card-title {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .jt-service-card-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .who-we-are {
    padding: 80px 0;
  }

  .who-layout {
    gap: 36px;
  }

  .who-content .title {
    font-size: 38px;
  }

  .who-features {
    gap: 16px;
  }

  .jt-presence-section {
    padding: 85px 0 95px;
  }

  .jt-presence-container {
    grid-template-columns: 1fr 1.25fr;
    gap: 36px;
  }

  .jt-presence-title {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .jt-presence-desc {
    font-size: 14.5px;
    margin-bottom: 24px;
    max-width: 440px;
  }

  .jt-presence-stats {
    padding: 12px 16px;
    gap: 16px;
    margin-bottom: 28px;
    max-width: 440px;
  }

  .presence-stat-number {
    font-size: 19px;
  }

  .presence-stat-text {
    font-size: 10px;
  }

  .jt-presence-map-wrapper {
    max-width: 620px;
  }

  .jt-offices-directory-wrapper {
    margin-top: 55px;
    padding-top: 40px;
  }

  .jt-offices-heading {
    font-size: 30px;
  }

  .jt-offices-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .jt-office-card {
    padding: 20px 18px;
  }

  .office-title {
    font-size: 16.5px;
  }

  .jt-success-testimonial {
    padding: 70px 0;
  }

  .jt-success-inner {
    min-height: 400px;
    border-radius: 22px;
  }

  .jt-success-content {
    left: 36px;
    top: 50px;
    width: 230px;
  }

  .jt-success-content h2 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .jt-success-content p {
    font-size: 13.5px;
    max-width: 180px;
  }

  .jt-success-cards-wrapper {
    right: 36px;
    top: 40px;
    width: calc(100% - 290px);
    max-width: 760px;
  }

  .jt-success-card {
    min-height: 230px;
    padding: 24px 22px 20px;
  }

  .jt-success-quote {
    font-size: 42px;
    top: 12px;
    left: 20px;
  }

  .jt-success-text {
    font-size: 13px;
    line-height: 1.55;
    margin: 14px 0 12px;
  }

  .jt-success-pagination {
    right: 36px;
    width: calc(100% - 290px);
    bottom: 16px;
  }

  .jt-clients-section {
    padding: 55px 0 65px;
  }

  .jt-clients-title {
    font-size: 32px;
  }

  .jt-client-card {
    width: 145px;
    height: 85px;
  }

  .jt-journey {
    padding: 75px 0 65px;
  }

  .jt-journey-header {
    margin-bottom: 45px;
  }

  .jt-journey-header h2 {
    font-size: 40px;
  }

  .jt-process {
    gap: 18px;
  }

  .jt-process-icon {
    width: 95px;
    height: 95px;
  }

  .jt-process-icon svg {
    width: 36px;
    height: 36px;
  }

  .jt-process-card {
    min-height: 205px;
    padding: 22px 16px 20px;
  }

  .jt-process-card h3 {
    font-size: 15.5px;
  }

  .jt-process-card p {
    font-size: 12px;
  }

  .jt-faq-section {
    padding: 75px 0 65px;
  }

  .jt-faq-container {
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 0px;
  }

  .jt-faq-intro h2 {
    font-size: 38px;
    letter-spacing: -1.2px;
  }

  .jt-faq-description {
    font-size: 13.5px;
    width: 220px;
  }

  .jt-faq-question {
    padding: 13px 18px;
    min-height: 52px;
  }

  .jt-faq-title {
    font-size: 14.5px;
  }

  .jt-contact-section {
    padding: 45px 0;
  }

  .jt-contact-container {
    grid-template-columns: 1fr 1.6fr;
    gap: 32px;
  }

  .jt-contact-heading {
    font-size: 28px;
  }

  .jt-detail-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .jt-form-content {
    padding: 28px 24px 22px;
  }

  .jt-global-cta {
    padding: 75px 0;
  }

  .jt-unified-showcase {
    grid-template-columns: 46% 54%;
    min-height: 400px;
  }

  .jt-showcase-left {
    padding: 42px 36px 36px 42px;
  }

  .jt-showcase-left h2 {
    font-size: 36px;
  }

  .jt-footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.25fr;
    gap: 24px;
    padding: 55px 0 40px;
  }

  .jt-footer-tagline {
    font-size: 13px;
    line-height: 1.55;
    max-width: 260px;
  }

  .jt-footer-col-title {
    font-size: 12.5px;
    margin-bottom: 16px;
  }

  .jt-footer-nav-list a {
    font-size: 13px;
  }

  .jt-contact-entry .entry-val {
    font-size: 12.5px;
  }
}

/* --------------------------------------------------------------------------
   E. Tablets & Medium Screens (max-width: 1023px)
   -------------------------------------------------------------------------- */
@media (max-width: 1023px) {
  :root {
    --container-max-width: 100%;
    --container-gutter: 24px;
  }

  .container,
  .who-layout,
  .wcu-container,
  .jt-journey-container,
  .jt-faq-container,
  .jt-contact-container,
  .jt-global-container,
  .jt-footer-container,
  .jt-success-inner,
  .jt-about-content,
  .jt-presence-container,
  .jt-offices-directory-inner,
  .jt-clients-container {
    width: 100%;
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }

  .jt-services {
    padding: 85px 0;
  }

  .jt-services-heading h2 {
    font-size: clamp(40px, 3.5vw + 8px, 46px);
    line-height: 1.12;
  }

  .jt-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jt-service-large {
    grid-column: span 2;
  }

  .jt-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 32px;
    padding: 55px 0 40px;
  }

  .jt-footer-brand {
    grid-column: span 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0;
    border-bottom: none;
  }

  .jt-footer-column,
  .jt-footer-contact {
    grid-column: span 1;
    min-width: 0;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .who-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-row {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .service-card {
    height: 280px;
    width: 100%;
    transform: none !important;
    border-radius: var(--radius-3xl);
    box-shadow: 0 10px 30px rgba(12, 38, 64, 0.12);
  }

  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    transform: none !important;
  }

  .service-card > * {
    transform: none !important;
  }

  .service-card img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    object-fit: cover;
    transform: none !important;
  }

  .service-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 36px rgba(12, 38, 64, 0.18);
  }

  .service-card:hover img {
    transform: scale(1.04) !important;
  }

  .about-visual {
    display: block;
    width: 100%;
    max-width: 530px;
    height: 440px;
    margin: 36px auto 0;
    position: relative;
  }

  .visual-map {
    width: 440px;
    height: 420px;
    left: 45px;
    top: 10px;
    opacity: 0.22;
  }

  .image-left {
    width: 140px;
    height: 290px;
    left: 15px;
    top: 75px;
    transform: skewX(-8deg);
    z-index: 2;
    border-radius: var(--radius-3xl);
  }

  .image-center {
    width: 210px;
    height: 420px;
    left: 170px;
    /* 15 + 140 + 15 = 170px */
    top: 10px;
    transform: skewX(-8deg);
    z-index: 4;
    border-radius: 18px;
  }

  .image-right {
    width: 140px;
    height: 290px;
    left: 395px;
    /* 170 + 210 + 15 = 395px */
    top: 75px;
    transform: skewX(-8deg);
    z-index: 3;
    border-radius: var(--radius-3xl);
  }

  .collage-arcs-svg {
    left: 350px;
    top: 120px;
    width: 110px;
    height: 75px;
  }

  .jt-faq-container {
    width: 90%;
    grid-template-columns: 300px minmax(0, 1fr);
    column-gap: 30px;
    gap: 15px;
  }

  .jt-faq-intro h2 {
    font-size: clamp(40px, 3.5vw + 8px, 46px);
    line-height: 1.12;
  }

  /* Stack unified card vertically on tablet */
  .jt-unified-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: var(--radius-4xl);
  }

  .jt-showcase-bg {
    display: none;
  }

  .jt-showcase-veil {
    display: none;
  }

  .jt-showcase-left {
    background: linear-gradient(
      135deg,
      var(--navy-gradient-start) 0%,
      var(--navy-gradient-end) 100%
    );
    padding: 44px 36px;
    border-radius: 0;
  }

  .jt-showcase-left h2 {
    font-size: clamp(28px, 4vw + 10px, 40px);
  }

  .jt-showcase-desc {
    max-width: 100%;
    font-size: 14.5px;
  }

  .jt-showcase-actions {
    gap: 12px;
  }

  .jt-showcase-badge {
    max-width: 100%;
  }

  .jt-showcase-right {
    background: var(--bg);
    padding: 36px 32px 32px;
    border-radius: 0;
  }

  .jt-showcase-right-header {
    flex-wrap: wrap;
    gap: 10px;
  }

  .jt-showcase-map {
    position: relative;
    flex: none;
    width: 100%;
    height: auto;
    min-height: 220px;
    margin: 14px 0 18px;
    overflow: visible;
    display: block;
    background: transparent;
    border-radius: var(--radius-xl);
  }

  .jt-showcase-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .jt-showcase-info-card strong {
    font-size: 12.5px;
    white-space: normal;
  }

  .jt-success-testimonial {
    padding: 65px 0;
  }

  .jt-success-inner {
    position: relative;
    width: 100%;
    max-width: 900px;
    min-height: auto;
    border-radius: var(--radius-5xl);
    padding: 42px 36px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .jt-success-visual {
    position: absolute;
    inset: 0;
    height: 100%;
    opacity: 0.16;
  }

  .jt-success-visual::after {
    background: linear-gradient(
      180deg,
      rgba(248, 251, 255, 0.88) 0%,
      rgba(var(--white-rgb), 0.98) 100%
    );
  }

  .jt-success-content {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 600px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
    z-index: 10;
  }

  .jt-success-label {
    justify-content: flex-start;
  }

  .jt-success-content h2 {
    font-size: clamp(32px, 3.8vw, 42px);
    line-height: 1.15;
    text-align: left;
  }

  .jt-success-content h2 span {
    display: inline;
    margin: 0 4px;
  }

  .jt-success-content p {
    max-width: 480px;
    margin: 12px 0 0;
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
  }

  .jt-success-cards-wrapper {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    padding: 10px 0 16px;
    box-sizing: border-box;
    z-index: 20;
  }

  .jt-success-cards-track {
    gap: 18px;
  }

  .jt-success-card {
    flex: 0 0 calc(50% - 9px);
    min-height: 230px;
    padding: 26px 22px 22px;
    border-radius: var(--radius-3xl);
    box-shadow: 0 12px 35px rgba(15, 35, 60, 0.08);
  }

  .jt-success-quote {
    font-size: 40px;
    top: 14px;
    left: 20px;
    line-height: 1;
  }

  .jt-success-text {
    font-size: 14px;
    line-height: 1.58;
    margin: 12px 0 16px;
  }

  .jt-success-pagination {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 20px auto 0;
    justify-content: center;
    z-index: 25;
  }

  .jt-journey-container {
    width: min(100% - 40px, 1000px);
  }

  .jt-process {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 28px;
  }

  .jt-process-line,
  .jt-process-item::after {
    display: none;
  }

  .jt-journey-trust {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .jt-trust-divider {
    display: none;
  }

  .jt-journey-header h2 {
    font-size: 46px;
  }

  .jt-footer-brand p {
    max-width: 540px;
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
  }

  .jt-footer-cta {
    margin-top: 0;
    flex-shrink: 0;
  }

  .jt-footer-column {
    min-width: 0;
  }

  .jt-footer-contact {
    grid-column: auto;
    display: block;
    padding-top: 0;
    border-top: none;
    min-width: 0;
  }

  .jt-footer-contact h4 {
    grid-column: auto;
    margin-bottom: 22px;
  }

  .jt-contact-row {
    margin-bottom: 14px;
  }

  .jt-contact-row a,
  .jt-contact-row strong {
    font-size: 13px;
    word-break: break-word;
  }

  .jt-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
  }

  .jt-about-banner {
    height: 245px;
  }

  .jt-about-content {
    width: 100%;
  }

  .jt-about-content h1 {
    font-size: 30px;
  }

  .jt-about-content p {
    max-width: 390px;
    font-size: 11.5px;
  }

  .header {
    height: 86px;
  }

  .logo {
    height: 68px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-right,
  .carousel-wrapper {
    height: 400px;
    width: 100%;
  }

  .floating-features-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 36px auto -36px;
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    padding: 20px;
  }

  .floating-feature {
    border-right: none;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 10px 8px;
  }

  .floating-feature:nth-child(3),
  .floating-feature:nth-child(4) {
    border-bottom: none;
  }

  .about-hero-grid,
  .who-layout,
  .jt-global-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .jt-presence-section {
    padding: 70px 0 80px;
  }

  .jt-presence-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .jt-presence-content {
    align-items: center;
    text-align: center;
  }

  .jt-presence-label::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--orange);
    border-radius: var(--radius-xs);
  }

  .jt-presence-desc {
    max-width: 600px;
  }

  .jt-presence-stats {
    justify-content: center;
    margin: 0 auto 32px;
  }

  .jt-presence-actions {
    margin: 0 auto;
  }

  .jt-contact-container {
    grid-template-columns: 280px 1fr;
    gap: 28px;
  }

  .jt-contact-heading {
    font-size: 29px;
  }

  .jt-contact-form-card {
    min-height: 380px;
  }

  .header {
    height: 72px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0 24px;
    gap: 6px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 15px 30px rgba(var(--navy-rgb), 0.12);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      padding 0.35s ease;
  }

  .nav.active {
    max-height: 480px;
    opacity: 1;
    pointer-events: auto;
    padding: 18px 24px 24px;
  }

  .nav a {
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-base);
    transition: var(--transition-normal);
  }

  .nav a:hover,
  .nav a.active {
    background: var(--orange-50);
    color: var(--orange);
  }

  .nav a.active::after {
    display: none;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 24px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-right {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* --------------------------------------------------------------------------
   E. Mobile Devices (max-width: 767px)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  :root {
    --container-max-width: 100%;
    --container-gutter: 18px;
  }

  .container,
  .who-layout,
  .wcu-container,
  .jt-journey-container,
  .jt-faq-container,
  .jt-contact-container,
  .jt-global-container,
  .jt-footer-container,
  .jt-success-inner,
  .jt-about-content,
  .jt-presence-container,
  .jt-offices-directory-inner,
  .jt-clients-container {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }

  .header {
    height: 76px;
  }

  .logo {
    height: 56px;
  }

  .jt-services {
    padding: 70px 0;
  }

  .jt-services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
  }

  .jt-services-heading h2 {
    font-size: clamp(40px, 3.5vw + 8px, 46px);
    line-height: 1.12;
    letter-spacing: -1.2px;
  }

  .jt-services-heading p {
    font-size: 15px;
    line-height: 1.65;
  }

  .jt-services-link {
    width: 100%;
  }

  .jt-services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .jt-service-large {
    grid-column: span 1;
    height: 390px;
  }

  .jt-service-card {
    height: 330px;
  }

  .jt-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 45px 0 30px;
  }

  .jt-footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(var(--white-rgb), 0.08);
  }

  .jt-footer-column,
  .jt-footer-contact {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0;
  }

  .jt-footer-bottom {
    padding: 22px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .jt-footer-links {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .about-hero {
    padding: 55px 0 45px;
  }

  .about-content {
    padding-right: 0;
    width: 100%;
  }

  .about-content .title {
    font-size: clamp(28px, 6.5vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.8px;
  }

  .about-content .desc {
    margin: 16px 0 24px;
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 100%;
  }

  .mission-vision {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  .mv-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: flex-start;
  }

  .mv-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    flex-shrink: 0;
  }

  .mv-item h3 {
    font-size: 18px;
    margin-top: 2px;
    margin-bottom: 4px;
  }

  .mv-item p {
    font-size: 13px;
    line-height: 1.5;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
  }

  .hero-buttons .btn-primary {
    width: 100%;
    justify-content: center;
    height: 48px;
    font-size: 14px;
  }


  .who-content .title {
    font-size: clamp(28px, 6.5vw, 38px);
    line-height: 1.15;
  }

  .about-visual {
    display: block;
    width: 100%;
    max-width: 360px;
    height: 310px;
    margin: 24px auto 0;
    position: relative;
  }

  .visual-map {
    width: 320px;
    height: 300px;
    left: 20px;
    top: 5px;
    opacity: 0.2;
  }

  .image-left {
    width: 90px;
    height: 200px;
    left: 8px;
    top: 50px;
    transform: skewX(-6deg);
    z-index: 2;
    border-radius: var(--radius-2xl);
  }

  .image-center {
    width: 140px;
    height: 290px;
    left: 105px;
    top: 8px;
    transform: skewX(-6deg);
    z-index: 4;
    border-radius: var(--radius-3xl);
  }

  .image-right {
    width: 90px;
    height: 200px;
    left: 252px;
    top: 50px;
    transform: skewX(-6deg);
    z-index: 3;
    border-radius: var(--radius-2xl);
  }

  .collage-arcs-svg {
    left: 220px;
    top: 85px;
    width: 75px;
    height: 48px;
  }

  .jt-faq-section {
    padding: 65px 0 55px;
  }

  .jt-faq-container {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-left: 18px;
    padding-right: 18px;
    box-sizing: border-box;
    padding-top: 0;
  }

  .jt-faq-intro {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    padding: 0;
    align-items: flex-start;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }

  .jt-faq-intro .who-label,
  .jt-faq-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px 0;
    justify-content: flex-start;
  }

  .jt-faq-intro h2 {
    width: 100%;
    margin: 0 0 14px 0;
    padding: 0;
    font-size: clamp(28px, 6.5vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.8px;
    text-align: left;
  }

  .jt-faq-intro h2 strong {
    display: block;
    margin-top: 2px;
    color: var(--orange);
    text-align: left;
  }

  .jt-faq-description {
    margin: 0 0 20px 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    text-align: left;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--muted);
  }

  .jt-faq-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 0 8px 0;
    display: flex;
    justify-content: flex-start;
  }

  .jt-faq-image {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: var(--radius-xl);
  }

  .jt-faq-list {
    width: 100%;
  }

  .jt-faq-question {
    min-height: 60px;
    padding: 14px 18px;
  }

  .jt-faq-answer {
    overflow: hidden;
  }

  .jt-faq-answer p {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 18px 0 54px;
  }

  .jt-faq-item.active .jt-faq-answer p {
    padding-bottom: 16px;
  }

  .jt-global-cta {
    padding: 50px 0;
  }

  .jt-unified-showcase {
    border-radius: var(--radius-3xl);
  }

  /* Left panel — full navy on mobile */
  .jt-showcase-left {
    padding: 36px 22px 30px;
  }

  .jt-showcase-left h2 {
    font-size: clamp(26px, 7vw, 34px);
    letter-spacing: -0.8px;
    margin-bottom: 10px;
  }

  .jt-showcase-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  /* Buttons stack full-width */
  .jt-showcase-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 24px;
  }

  .jt-showcase-primary,
  .jt-showcase-secondary {
    width: 100%;
    justify-content: center;
    height: 48px;
    font-size: 13.5px;
  }

  .jt-showcase-badge {
    width: 100%;
    box-sizing: border-box;
    justify-content: flex-start;
  }

  /* Right panel */
  .jt-showcase-right {
    padding: 28px 20px 24px;
  }

  .jt-showcase-right-header {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 4px;
  }

  .jt-showcase-right-header h3 {
    font-size: 18px;
  }

  .jt-live-status {
    display: none;
  }

  /* Map — flexible height on mobile */
  .jt-showcase-map {
    flex: none;
    height: auto;
    min-height: 200px;
    margin: 12px 0 16px;
    overflow: visible;
    display: block;
    width: 100%;
    background: transparent;
    border-radius: var(--radius-lg);
  }

  /* Info cards — 2 columns on mobile */
  .jt-showcase-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .jt-showcase-info-card {
    padding: 10px 10px;
    gap: 8px;
  }

  .jt-showcase-icon-wrap {
    width: 32px;
    height: 32px;
  }

  .jt-showcase-info-card small {
    font-size: 9px;
  }

  .jt-showcase-info-card strong {
    font-size: 11.5px;
    white-space: normal;
    line-height: 1.2;
  }

  .jt-success-testimonial {
    padding: 50px 0;
  }

  .jt-success-inner {
    width: 100%;
    padding: 32px 18px 24px;
    border-radius: var(--radius-4xl);
  }

  .jt-success-content {
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .jt-success-content h2 {
    font-size: clamp(28px, 6vw, 36px);
    line-height: 1.15;
    text-align: left;
  }

  .jt-success-content p {
    text-align: left;
    margin: 10px 0 0;
    max-width: 100%;
  }

  .jt-success-cards-wrapper {
    padding: 6px 0 12px;
  }

  .jt-success-card {
    flex: 0 0 100%;
    min-height: 210px;
    padding: 22px 18px 18px;
  }

  .jt-success-pagination {
    margin: 16px auto 6px;
  }

  .jt-clients-section {
    padding: 45px 0 55px;
  }

  .jt-clients-track {
    gap: 16px;
    animation-duration: 22s;
  }

  .jt-clients-group {
    gap: 16px;
  }

  .jt-client-card {
    flex: 0 0 145px;
    width: 145px;
    height: 88px;
    padding: 8px 10px;
  }

  .jt-journey {
    padding: 65px 0 55px;
  }

  .jt-journey-header {
    margin-bottom: 42px;
  }

  .jt-journey-label {
    font-size: 11px;
  }

  .jt-journey-header h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .jt-journey-header p {
    font-size: 14px;
  }

  .jt-process {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
  }

  /* Glowing logistics moving arrow traveling vertically 01 -> 06 (Mobile) */
  .jt-process::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 40px;
    width: 14px;
    height: 14px;
    background: var(--orange);
    clip-path: polygon(0 0, 50% 100%, 100% 0, 50% 28%);
    filter: drop-shadow(0 0 6px var(--orange))
      drop-shadow(0 0 12px rgba(255, 119, 20, 0.9));
    transform: translate(-50%, -50%);
    z-index: 4;
    pointer-events: none;
    animation: jtLogisticsPulseVertical 9.5s linear infinite;
  }

  /* Soft glowing vertical comet trail behind the moving arrow (Mobile) */
  .jt-process::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 40px;
    width: 3px;
    height: 90px;
    border-radius: var(--radius-xs);
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(255, 119, 20, 0.15) 30%,
      rgba(255, 119, 20, 0.7) 85%,
      var(--orange) 100%
    );
    filter: drop-shadow(0 0 6px rgba(255, 119, 20, 0.6));
    transform: translate(-50%, -100%);
    z-index: 3;
    pointer-events: none;
    animation: jtLogisticsTrailVertical 9.5s linear infinite;
  }

  @keyframes jtLogisticsPulseVertical {
    0% {
      top: 40px;
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.6);
    }

    3% {
      top: 40px;
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    94% {
      top: calc(100% - 40px);
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    96%,
    100% {
      top: calc(100% - 40px);
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.6);
    }
  }

  @keyframes jtLogisticsTrailVertical {
    0% {
      top: 40px;
      opacity: 0;
    }

    3% {
      top: 40px;
      opacity: 0.9;
    }

    94% {
      top: calc(100% - 40px);
      opacity: 0.9;
    }

    96%,
    100% {
      top: calc(100% - 40px);
      opacity: 0;
    }
  }

  .jt-process-line {
    display: none !important;
  }

  .jt-process-item {
    display: grid;
    grid-template-columns: 44px 80px 1fr;
    align-items: center;
    column-gap: 14px;
    text-align: left;
    position: relative;
    z-index: 2;
  }

  /* Connector line ONLY in the gap between consecutive numbers */
  .jt-process-item:not(:last-of-type)::before {
    content: "";
    position: absolute;
    left: 22px;
    top: calc(50% + 24px);
    height: calc(100% - 28px);
    width: 2px;
    z-index: 1;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .jt-process-item:nth-of-type(1)::before,
  .jt-process-item:nth-of-type(2)::before {
    background: var(--orange-vibrant);
  }

  .jt-process-item:nth-of-type(3)::before {
    background: linear-gradient(
      180deg,
      var(--orange-vibrant) 0%,
      var(--navy-dark) 100%
    );
  }

  .jt-process-item:nth-of-type(4)::before,
  .jt-process-item:nth-of-type(5)::before {
    background: var(--navy-dark);
  }

  .jt-step-number {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    font-size: 13px;
    font-weight: 800;
  }

  .jt-process-item:nth-of-type(6) .jt-step-number::after {
    display: none;
  }

  .jt-process-icon {
    width: 80px;
    height: 80px;
    margin: 0;
    position: relative;
    z-index: 2;
  }

  .jt-process-icon svg {
    width: 32px;
    height: 32px;
  }

  .jt-process-card {
    min-height: auto;
    margin: 0;
    padding: 18px;
    border-radius: var(--radius-xl);
  }

  .jt-process-card h3 {
    font-size: 15px;
  }

  .jt-orange-line {
    margin: 10px 0 10px;
  }

  .jt-process-card p {
    font-size: 12px;
  }

  .jt-journey-trust {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 18px;
  }

  .jt-trust-item {
    padding: 0;
  }

  .jt-trust-divider {
    display: none;
  }

  .jt-footer-brand p {
    max-width: 100%;
  }

  .jt-footer-contact h4 {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }

  .jt-footer-links {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .jt-about-banner {
    height: 220px;
    border-radius: 0 0 22px 0;
    margin-bottom: 30px;
  }

  .jt-about-banner-inner {
    background-image:
      linear-gradient(
        180deg,
        rgba(247, 247, 245, 0.96) 0%,
        rgba(247, 247, 245, 0.9) 45%,
        rgba(247, 247, 245, 0.45) 75%,
        rgba(247, 247, 245, 0.1) 100%
      ),
      url("../images/import_export.jpg");
    background-position:
      center,
      center bottom;
  }

  .jt-about-content {
    width: 100%;
    justify-content: center;
    padding-top: 0;
  }

  .jt-about-content h1 {
    font-size: 28px;
    letter-spacing: -0.8px;
  }

  .jt-about-breadcrumb {
    margin-top: 12px;
  }

  .jt-about-banner-inner::after {
    width: 90px;
    height: 50px;
  }

  .container {
    max-width: 100%;
    padding: 0 16px;
  }

  .hero-right,
  .carousel-wrapper {
    height: 350px;
  }

  h1 {
    font-size: clamp(36px, 6vw, 48px);
  }

  .jt-contact-section {
    padding: 55px 0;
  }

  .jt-contact-container {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .jt-contact-info {
    padding-right: 0;
  }

  .jt-contact-heading {
    font-size: 31px;
  }

  .jt-contact-intro {
    font-size: 12px;
  }

  .jt-contact-form-card {
    min-height: auto;
  }

  .jt-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .jt-form-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .jt-form-security {
    white-space: normal;
  }

  .jt-form-map {
    width: 300px;
    right: -80px;
  }

  .header {
    height: 68px;
  }

  .nav {
    top: 68px;
  }

  .logo {
    height: 40px;
  }

  .quote {
    padding: 9px 16px;
    font-size: 12px;
    letter-spacing: 0.3px;
  }

  .hero {
    padding: 30px 0 20px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.25;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.5;
  }

  .actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-pill {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 13px;
  }

  .jt-faq-item {
    margin-bottom: 12px;
  }

  .jt-faq-answer {
    padding: 0 16px 16px;
    font-size: 14px;
  }
}

/* --------------------------------------------------------------------------
   F. Small Mobile Screens (max-width: 479px)
   -------------------------------------------------------------------------- */
@media (max-width: 479px) {
  :root {
    --container-gutter: 14px;
  }

  .container,
  .who-layout,
  .wcu-container,
  .jt-journey-container,
  .jt-faq-container,
  .jt-contact-container,
  .jt-global-container,
  .jt-footer-container,
  .jt-success-inner,
  .jt-about-content,
  .jt-presence-container,
  .jt-offices-directory-inner,
  .jt-clients-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  /* CTA section — very small phones */
  .jt-showcase-left {
    padding: 28px 16px 24px;
  }

  .jt-showcase-right {
    padding: 22px 16px 20px;
  }

  .jt-showcase-info-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .jt-showcase-info-card strong {
    white-space: normal;
    font-size: 12px;
  }

  .jt-showcase-map {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 180px;
    display: block;
    overflow: visible;
    background: transparent;
    border-radius: var(--radius-lg);
  }

  .jt-showcase-badge {
    padding: 10px 14px 10px 12px;
    gap: 10px;
  }

  .jt-presence-label::before,
  .jt-presence-label .presence-label-line {
    width: 22px;
  }

  .jt-services-heading h2 {
    font-size: clamp(40px, 3.5vw + 8px, 46px);
    line-height: 1.12;
  }

  .jt-service-content h3 {
    font-size: clamp(20px, 1.5vw + 8px, 22px);
    line-height: 1.18;
  }

  .jt-service-content {
    left: 21px;
    right: 21px;
    bottom: 21px;
  }

  .jt-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 30px;
  }

  .jt-footer-brand,
  .jt-footer-contact {
    grid-column: auto;
  }

  .jt-footer-logo {
    width: 185px;
  }

  .about-hero {
    padding: 40px 0 30px;
  }

  .about-content .title {
    font-size: clamp(24px, 7.5vw, 30px);
    line-height: 1.18;
    letter-spacing: -0.5px;
  }

  .about-content .desc {
    font-size: 13.5px;
    line-height: 1.55;
    margin: 12px 0 18px;
  }

  .mission-vision {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 20px;
  }

  .mv-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
    flex-shrink: 0;
  }

  .mv-item {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .mv-item h3 {
    font-size: 16px;
  }

  .mv-item p {
    font-size: 12.5px;
    line-height: 1.45;
  }

  .about-visual {
    display: block;
    width: 100%;
    max-width: 275px;
    height: 235px;
    margin: 16px auto 0;
    position: relative;
    overflow: hidden;
  }

  .visual-map {
    width: 240px;
    height: 220px;
    left: 10px;
    top: 5px;
    opacity: 0.18;
  }

  .image-left {
    width: 68px;
    height: 150px;
    left: 4px;
    top: 38px;
    transform: skewX(-5deg);
    z-index: 2;
    border-radius: var(--radius-lg);
  }

  .image-center {
    width: 108px;
    height: 220px;
    left: 78px;
    top: 6px;
    transform: skewX(-5deg);
    z-index: 4;
    border-radius: var(--radius-xl);
  }

  .image-right {
    width: 68px;
    height: 150px;
    left: 192px;
    top: 38px;
    transform: skewX(-5deg);
    z-index: 3;
    border-radius: var(--radius-lg);
  }

  .collage-arcs-svg {
    left: 160px;
    top: 65px;
    width: 60px;
    height: 40px;
  }

  .service-card {
    height: 240px;
    border-radius: var(--radius-2xl);
  }

  .services-row {
    gap: 16px;
  }

  .who-features .feature-text {
    font-size: 15px;
  }

  .jt-faq-section {
    padding: 48px 0 40px;
  }

  .jt-faq-container {
    width: 100%;
    max-width: 100%;
    gap: 24px;
    padding-left: 14px;
    padding-right: 14px;
    box-sizing: border-box;
  }

  .jt-faq-intro {
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 0;
    align-items: flex-start;
    text-align: left;
    display: flex;
    flex-direction: column;
  }

  .jt-faq-intro .who-label,
  .jt-faq-label {
    font-size: 11.5px;
    margin-bottom: 10px;
    gap: 8px;
    justify-content: flex-start;
  }

  .jt-faq-label i {
    width: 22px;
  }

  .jt-faq-intro h2 {
    font-size: clamp(26px, 7vw, 32px);
    line-height: 1.16;
    letter-spacing: -0.8px;
    text-align: left;
    margin-bottom: 10px;
  }

  .jt-faq-description {
    width: 100%;
    max-width: 100%;
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0 0 16px 0;
    text-align: left;
  }

  .jt-faq-list {
    width: 100%;
    gap: 10px;
  }

  .jt-faq-item {
    border-radius: var(--radius-lg);
  }

  .jt-faq-question {
    min-height: 54px;
    padding: 12px 14px;
    grid-template-columns: 24px minmax(0, 1fr) 26px;
    gap: 8px;
  }

  .jt-faq-number-small {
    font-size: 12px;
    font-weight: 800;
  }

  .jt-faq-title {
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    word-break: break-word;
  }

  .jt-faq-toggle {
    width: 26px;
    height: 26px;
    font-size: 16px;
    flex-shrink: 0;
  }

  .jt-faq-answer {
    overflow: hidden;
  }

  .jt-faq-answer p {
    font-size: 13px;
    line-height: 1.55;
    padding: 0 14px 0 44px;
    word-break: break-word;
  }

  .jt-faq-item.active .jt-faq-answer p {
    padding-bottom: 14px;
  }

  .jt-unified-showcase {
    border-radius: 18px;
  }

  .jt-showcase-left h2 {
    font-size: clamp(30px, 3.5vw + 6px, 38px);
  }

  .jt-showcase-info-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .jt-contact-item strong {
    font-size: 12px;
    line-height: 1.3;
  }

  .jt-success-inner {
    min-height: auto;
  }

  .jt-success-content h2 {
    font-size: clamp(28px, 3.5vw + 8px, 34px);
    line-height: 1.15;
  }

  .jt-success-card {
    padding: 20px 18px 18px;
  }

  .jt-success-quote {
    font-size: 32px;
    top: 10px;
    left: 15px;
    line-height: 1;
  }

  .jt-success-text {
    font-size: 13px;
    line-height: 1.55;
    margin: 10px 0 14px;
  }

  .jt-client-card {
    flex: 0 0 130px;
    width: 130px;
    height: 80px;
    padding: 6px 8px;
    border-radius: var(--radius-2xl);
  }

  .jt-process::before {
    left: 19px;
    top: 36px;
    width: 12px;
    height: 12px;
    animation-name: jtLogisticsPulseVerticalSmall;
  }

  .jt-process::after {
    left: 19px;
    top: 36px;
    width: 2px;
    height: 75px;
    animation-name: jtLogisticsTrailVerticalSmall;
  }

  @keyframes jtLogisticsPulseVerticalSmall {
    0% {
      top: 36px;
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.6);
    }

    3% {
      top: 36px;
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    94% {
      top: calc(100% - 36px);
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    96%,
    100% {
      top: calc(100% - 36px);
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.6);
    }
  }

  @keyframes jtLogisticsTrailVerticalSmall {
    0% {
      top: 36px;
      opacity: 0;
    }

    3% {
      top: 36px;
      opacity: 0.9;
    }

    94% {
      top: calc(100% - 36px);
      opacity: 0.9;
    }

    96%,
    100% {
      top: calc(100% - 36px);
      opacity: 0;
    }
  }

  .jt-process-item {
    grid-template-columns: 38px 64px 1fr;
    column-gap: 10px;
  }

  .jt-process-item:not(:last-of-type)::before {
    left: 19px;
    top: calc(50% + 22px);
    height: calc(100% - 24px);
    width: 1.5px;
  }

  .jt-step-number {
    width: 36px;
    height: 36px;
    font-size: 11.5px;
  }

  .jt-process-item:nth-of-type(6) .jt-step-number::after {
    display: none;
  }

  .jt-process-icon {
    width: 64px;
    height: 64px;
  }

  .jt-process-icon svg {
    width: 26px;
    height: 26px;
  }

  .jt-process-card {
    padding: 14px 12px;
  }

  .jt-process-card h3 {
    font-size: 13.5px;
  }

  .jt-process-card p {
    font-size: 11px;
  }

  .jt-presence-stats {
    flex-wrap: wrap;
    gap: 12px 18px;
    justify-content: space-around;
  }

  .presence-stat-sep {
    display: none;
  }

  .marker-pin {
    width: 18px;
    height: 24px;
  }

  .marker-pin svg {
    width: 18px;
    height: 24px;
  }

  .marker-pulse {
    width: 12px;
    height: 12px;
  }

  .jt-presence-floating-card {
    display: none;
  }

  .jt-footer-logo-img {
    height: 44px;
  }

  .jt-footer-bottom {
    padding: 18px 0;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .jt-footer-links {
    justify-content: center;
    gap: 8px 14px;
  }

  .nav {
    gap: 10px;
  }

  .nav a {
    font-size: 12px;
  }

  h1 {
    font-size: 32px;
  }

  .floating-features-card {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 28px auto -28px;
    padding: 16px;
  }

  .floating-feature {
    border-right: none;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 8px 4px;
    justify-content: flex-start;
  }

  .floating-feature:last-child {
    border-bottom: none;
  }

  .hero-right,
  .carousel-wrapper {
    height: 250px;
  }

  .jt-contact-container {
    width: 100%;
  }

  .jt-contact-heading {
    font-size: 28px;
  }

  .jt-contact-detail {
    gap: 12px;
  }

  .jt-detail-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .jt-form-content {
    padding: 22px 16px 18px;
  }

  .container {
    padding: 0 16px;
  }

  .header-actions {
    gap: 10px;
  }

  .quote {
    padding: 8px 12px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .eyebrow {
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* ==========================================================================
   18. SERVICES PAGE DEDICATED STYLES (services.html)
   ========================================================================== */

/* --- A. Services Exact Banner Section (Matching Screenshot) --- */
.svc-exact-banner,
.service-banner {
  position: relative;
  width: 100%;
  min-height: 480px;
  background-color: var(--bg);
  background-image: url("../images/service_bg.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.svc-exact-banner::before,
.service-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(var(--white-rgb), 0.96) 0%,
    rgba(var(--white-rgb), 0.88) 36%,
    rgba(var(--white-rgb), 0.45) 60%,
    rgba(var(--white-rgb), 0.05) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.svc-exact-container {
  position: relative;
  z-index: 5;
  width: 100%;
}

.svc-exact-content {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 50px 0;
}

/* Breadcrumb */
.svc-exact-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 18px;
}

.svc-exact-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-color);
}

.svc-exact-breadcrumb a:hover {
  color: var(--orange);
}

.svc-exact-sep {
  color: var(--text-light);
  font-size: 14px;
}

.svc-exact-current {
  color: var(--orange);
  font-weight: 600;
}

/* Title */
.svc-exact-title {
  margin: 0 0 12px 0;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.svc-orange-text {
  color: var(--orange);
}

/* Accent Line */
.svc-exact-line {
  width: 48px;
  height: 3.5px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}

.svc-line-orange {
  width: 48px;
  height: 3.5px;
  background: var(--orange);
  border-radius: var(--radius-sm);
}

.svc-line-fade {
  flex: 1;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(var(--color-primary-dark-rgb), 0.4) 0%,
    rgba(var(--color-primary-dark-rgb), 0) 100%
  );
}

/* Subtitle */
.svc-exact-subtitle {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16.5px;
  line-height: 1.6;
  font-weight: 400;
  max-width: 440px;
}

/* --- B. Core Services 8-Card Grid Section --- */
.svc-core-section {
  position: relative;
  width: 100%;
  padding: 85px 0 95px;
  background: var(--bg);
  border-top: 1px solid var(--bg-neutral);
  border-bottom: 1px solid var(--bg-neutral);
}

/* Eyebrows & Section Headers */
.svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.svc-eyebrow.centered {
  justify-content: center;
}

.svc-eyebrow-line {
  display: inline-block;
  width: 22px;
  height: 2.5px;
  background-color: var(--orange-dark);
  border-radius: var(--radius-xs);
}

.svc-core-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px;
}

.svc-core-title {
  margin: 8px 0 0 0;
  color: var(--navy);
  font-size: clamp(32px, 2.8vw + 8px, 42px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.8px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--white);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--bg-gray-100);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  position: relative;
}

.svc-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 18px 36px -6px rgba(var(--navy-rgb), 0.08),
    0 8px 16px -4px rgba(var(--color-primary-dark-rgb), 0.06);
  border-color: var(--orange-200);
}

.svc-card-media {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background: var(--border-dark);
}

.svc-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.svc-card:hover .svc-card-media img {
  transform: scale(1.08);
}

.svc-card-body {
  position: relative;
  padding: 38px 22px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  background: var(--white);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.svc-card-badge {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--orange-dark);
  box-shadow:
    0 8px 20px rgba(var(--navy-rgb), 0.1),
    0 2px 6px rgba(var(--navy-rgb), 0.04);
  border: 3px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-spring);
}

.svc-card-badge svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange-dark);
  transition:
    stroke 0.3s ease,
    transform 0.3s ease;
}

.svc-card:hover .svc-card-badge {
  background: var(--orange-dark);
  transform: translateX(-50%) scale(1.08);
  box-shadow: 0 10px 24px rgba(var(--color-primary-dark-rgb), 0.35);
  border-color: var(--white);
}

.svc-card:hover .svc-card-badge svg {
  stroke: var(--white);
  transform: scale(1.05);
}

.svc-card-title {
  margin: 0 0 10px 0;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

.svc-card-desc {
  margin: 0 0 20px 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
}

.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--orange-dark);
  text-transform: capitalize;
  transition: var(--transition-base);
  margin-top: auto;
}

.svc-card-link svg {
  transition: var(--transition-transform);
}

.svc-card-link:hover {
  color: var(--orange-darker);
}

.svc-card-link:hover svg {
  transform: translateX(4px);
}

/* --- C. Why Choose Joy Trading Section --- */
.svc-why-section {
  position: relative;
  width: 100%;
  padding: 90px 0 80px;
  background: var(--white);
  overflow: hidden;
}

.svc-why-top {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 56px;
}

.svc-why-left {
  display: flex;
  flex-direction: column;
}

.svc-why-title {
  margin: 10px 0 16px 0;
  color: var(--navy);
  font-size: clamp(30px, 2.6vw + 8px, 38px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.8px;
}

.svc-why-title span {
  color: var(--orange-dark);
}

.svc-why-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

/* Center Interactive Map */
.svc-why-map {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-map-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.svc-map-img {
  width: 100%;
  height: auto;
  opacity: 0.8;
  filter: contrast(1.05);
}

.svc-map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: var(--orange-dark);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-dark-rgb), 0.35);
  cursor: pointer;
  transform: translate(-50%, -50%);
  animation: svcPinGlow 2.5s infinite ease-in-out;
}

.svc-map-pin.pin-us {
  top: 38%;
  left: 24%;
}

.svc-map-pin.pin-eu {
  top: 32%;
  left: 49%;
}

.svc-map-pin.pin-uae {
  top: 45%;
  left: 60%;
}

.svc-map-pin.pin-in {
  top: 50%;
  left: 68%;
}

.svc-map-pin.pin-sg {
  top: 60%;
  left: 78%;
}

.svc-map-pin.pin-cn {
  top: 42%;
  left: 79%;
}

@keyframes svcPinGlow {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(var(--color-primary-dark-rgb), 0.35);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(var(--color-primary-dark-rgb), 0.15);
  }
}

/* Right Value Points */
.svc-why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc-point-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.svc-point-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-full);
  background: var(--orange-50);
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.svc-point-item:hover .svc-point-icon {
  background: var(--orange-dark);
  color: var(--white);
  transform: scale(1.06);
  box-shadow: var(--shadow-orange-sm);
}

.svc-point-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 3px 0;
  line-height: 1.3;
}

.svc-point-text p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* Bottom Stats Counter Strip */
.svc-stats-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--bg-gray-100);
}

.svc-stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.svc-stat-icon {
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-stat-details {
  display: flex;
  flex-direction: column;
}

.svc-stat-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

.svc-stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 3px;
}

/* --- D. Bottom Ready to Take Business Global CTA Bar --- */
.svc-cta-bar {
  padding: 40px 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.svc-cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.svc-cta-content {
  max-width: 500px;
}

.svc-cta-title {
  font-size: clamp(22px, 1.8vw + 8px, 26px);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 6px 0;
  line-height: 1.25;
}

.svc-cta-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-light);
  margin: 0;
}

.svc-cta-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.svc-cta-contacts-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.svc-cta-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.svc-cta-icon-circle {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: var(--radius-full);
  background: rgba(var(--white-rgb), 0.08);
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-cta-contact-text {
  display: flex;
  flex-direction: column;
}

.svc-cta-contact-label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.svc-cta-contact-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition-color);
  text-decoration: none;
}

.svc-cta-contact-val:hover {
  color: var(--orange-dark);
}

.svc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-darker);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-navy);
  white-space: nowrap;
  text-decoration: none;
}

.svc-cta-btn:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--color-primary-rgb), 0.35);
  color: var(--white);
}

/* --- E. Responsive Media Queries for Services Page --- */

/* 1. Large Desktops & 4K (min-width: 1440px) */
@media (min-width: 1440px) {
  .svc-hero {
    padding: 85px 0 75px;
  }

  .svc-hero-visual {
    height: 520px;
  }

  .svc-grid {
    gap: 28px;
  }

  .svc-card-media {
    height: 190px;
  }

  .svc-stats-strip {
    padding: 28px 36px;
    gap: 24px;
  }
}

/* 2. Small Laptops (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
  .svc-hero-container {
    gap: 36px;
  }

  .svc-hero-visual {
    height: 440px;
  }

  .svc-grid {
    gap: 18px;
  }

  .svc-card-media {
    height: 160px;
  }

  .svc-card-body {
    padding: 28px 14px 20px;
  }

  .svc-why-top {
    gap: 24px;
  }

  .svc-stats-strip {
    padding: 20px 22px;
    gap: 14px;
  }

  .svc-stat-num {
    font-size: 18px;
  }
}

/* 3. Tablets (768px - 1023px) */
@media (max-width: 1023px) {
  .svc-exact-banner {
    min-height: 420px;
    background-position: 80% center;
  }

  .svc-exact-content {
    max-width: 440px;
    padding: 35px 0;
  }

  .svc-exact-title {
    font-size: 44px;
  }

  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .svc-why-top {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .svc-why-left {
    align-items: center;
  }

  .svc-why-desc {
    max-width: 600px;
    margin: 0 auto;
  }

  .svc-why-map {
    max-width: 520px;
    margin: 0 auto;
  }

  .svc-why-points {
    text-align: left;
    max-width: 540px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .svc-stats-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .svc-cta-container {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }

  .svc-cta-actions {
    justify-content: center;
  }
}

/* 4. Mobile Devices (max-width: 767px) */
@media (max-width: 767px) {
  .svc-exact-banner {
    min-height: 340px;
    padding: 30px 0;
    background-position: 85% center;
    background-image:
      linear-gradient(
        180deg,
        rgba(var(--white-rgb), 0.96) 0%,
        rgba(var(--white-rgb), 0.9) 65%,
        rgba(var(--white-rgb), 0.5) 100%
      ),
      url("../images/service_bg.png");
  }

  .svc-exact-content {
    max-width: 100%;
    padding: 15px 0;
  }

  .svc-exact-breadcrumb {
    font-size: 13.5px;
    margin-bottom: 12px;
  }

  .svc-exact-title {
    font-size: 34px;
    margin-bottom: 12px;
  }

  .svc-exact-line {
    margin-bottom: 16px;
  }

  .svc-exact-subtitle {
    font-size: 14px;
  }

  .svc-core-section {
    padding: 60px 0 70px;
  }

  .svc-core-header {
    margin-bottom: 36px;
  }

  .svc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .svc-why-section {
    padding: 60px 0 50px;
  }

  .svc-why-points {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .svc-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 20px 18px;
  }

  .svc-cta-actions {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
  }

  .svc-cta-contacts-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
  }

  .svc-cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
  }

  .svc-cta-icon-circle {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .svc-cta-contact-label {
    font-size: 10px;
    letter-spacing: 0.5px;
  }

  .svc-cta-contact-val {
    font-size: 12.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .svc-cta-btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
    margin: 0 auto;
  }
}

/* 5. Small Mobile Screens (max-width: 479px) */
@media (max-width: 479px) {
  .svc-exact-title {
    font-size: 30px;
  }

  .svc-exact-subtitle {
    font-size: 13.5px;
  }

  .svc-stats-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .svc-cta-contacts-row {
    gap: 10px;
  }

  .svc-cta-contact-item {
    gap: 7px;
  }

  .svc-cta-icon-circle {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .svc-cta-icon-circle svg {
    width: 15px;
    height: 15px;
  }

  .svc-cta-contact-label {
    font-size: 9px;
  }

  .svc-cta-contact-val {
    font-size: 11px;
  }
}

/* ==========================================================================
   19. CONTACT US PAGE DEDICATED STYLES (contact.html)
   ========================================================================== */

/* --- A. Contact Hero Banner Section --- */
.contact-hero-banner {
  position: relative;
  width: 100%;
  min-height: 460px;
  background-color: var(--bg);
  background-image: url("../images/contact_bg1.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.contact-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(var(--white-rgb), 0.96) 0%,
    rgba(var(--white-rgb), 0.88) 36%,
    rgba(var(--white-rgb), 0.45) 60%,
    rgba(var(--white-rgb), 0.05) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.contact-hero-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-gutter);
}

.contact-hero-content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 0;
}

/* Breadcrumb */
.contact-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 18px;
  color: var(--muted);
}

.contact-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-color);
}

.contact-breadcrumb a:hover {
  color: var(--orange-dark);
}

.contact-breadcrumb-sep {
  color: var(--text-light);
  font-size: 14px;
}

.contact-breadcrumb-current {
  color: var(--orange-dark);
  font-weight: 600;
}

/* Hero Title */
.contact-hero-title {
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.contact-hero-title .text-orange,
.contact-section-title .text-orange,
.contact-form-title .text-orange {
  color: var(--orange-dark);
}

/* Orange Accent Line */
.contact-title-accent {
  width: 48px;
  height: 3.5px;
  background: var(--orange-dark);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}

.contact-hero-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 460px;
}

/* --- B. Contact Main Section (Cards + Form) --- */
.contact-main-section {
  background-color: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid var(--bg-neutral);
}

.contact-main-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-gutter);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 50px;
  align-items: start;
}

/* Left Column: Let's Connect */
.contact-info-col {
  display: flex;
  flex-direction: column;
}

.contact-section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.contact-info-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 30px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--bg-gray-100);
  box-shadow: 0 4px 16px rgba(var(--navy-rgb), 0.03);
  transition: var(--transition-base);
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--navy-rgb), 0.06);
  border-color: var(--orange-200);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--orange-50);
  color: var(--orange-dark);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.contact-info-text p,
.contact-info-text a {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-color);
}

.contact-info-text a:hover {
  color: var(--orange-dark);
}

/* Right Column: Send Us A Message Form Card */
.contact-form-card {
  background: var(--white);
  padding: 44px 44px;
  border-radius: var(--radius-4xl);
  border: 1px solid var(--bg-gray-100);
  box-shadow: var(--shadow-card);
}

.contact-form-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  display: block;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 13px 16px;
  transition: var(--transition-normal);
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-light);
  font-size: 14px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange-dark);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-dark-rgb), 0.12);
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 42px;
}

.select-wrapper.with-icon select {
  padding-left: 40px;
}

.select-wrapper.with-icon .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: var(--orange-dark);
  pointer-events: none;
  z-index: 2;
}

.select-wrapper .select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
  width: 16px;
  height: 16px;
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--navy-darker);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: var(--shadow-navy);
}

.contact-submit-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.contact-submit-btn:hover {
  background: var(--orange);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}

.contact-submit-btn:hover svg {
  transform: translateX(4px);
}

.form-privacy-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.form-privacy-note svg {
  width: 17px;
  height: 17px;
  color: var(--orange-deep);
}

/* ==========================================================================
   MEET OUR CEO / VISIONARY LEADERSHIP SECTION (aboutus.html)
   Exact Match to UI Reference
   ========================================================================== */
.ceo-leadership-section {
  background: var(--bg-card-subtle);
  padding: 70px 0 80px 0;
  position: relative;
}

.ceo-leadership-container {
  max-width: var(--container-max-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--container-gutter, 20px);
}

.ceo-card-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-5xl);
  box-shadow:
    0 10px 30px -5px rgba(var(--navy-rgb), 0.05),
    0 0 0 1px rgba(var(--navy-rgb), 0.02);
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}

/* Left Content Column */
.ceo-content-col {
  padding: 56px 48px 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

/* Main Heading */
.ceo-main-heading {
  font-family: var(--font-sans);
  font-size: clamp(38px, 4.4vw, 50px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 16px 0;
  letter-spacing: -0.8px;
}

.ceo-main-heading .text-orange {
  color: var(--orange) !important;
}

.ceo-heading-accent {
  width: 48px;
  height: 3.5px;
  background: var(--orange);
  border-radius: var(--radius-xs);
  margin-bottom: 22px;
}

/* Intro Description */
.ceo-intro-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 32px 0;
  max-width: 580px;
}

/* CEO Profile Highlight Box */
.ceo-profile-highlight {
  margin-bottom: 38px;
  max-width: 580px;
}

.ceo-profile-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.ceo-accent-vbar {
  width: 3.5px;
  height: 42px;
  background: var(--orange);
  border-radius: var(--radius-xs);
  flex-shrink: 0;
}

.ceo-profile-title-wrap {
  display: flex;
  flex-direction: column;
}

.ceo-profile-name {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 0 0 2px 0;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.ceo-profile-role {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.01em;
}

.ceo-profile-bio {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.68;
  color: var(--text-secondary);
  margin: 0;
}

/* Bottom 4 Feature Pillars Row */
.ceo-pillars-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 18px;
}

.ceo-pillar-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: transform 0.2s ease;
}

.ceo-pillar-badge:hover {
  transform: translateY(-2px);
}

.ceo-pillar-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
}

.ceo-pillar-icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--navy-dark);
}

.ceo-pillar-label {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.3;
}

/* Right Image Column */
.ceo-image-col {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.ceo-image-frame {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.ceo-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom right;
  display: block;
}

/* Responsive Media Queries */
/* Tablet View (768px - 1023px) — Clean 50/50 Two-Column Layout */
@media (max-width: 1023px) and (min-width: 768px) {
  .ceo-card-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .ceo-content-col {
    padding: 36px 26px 32px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .ceo-main-heading {
    font-size: 32px;
  }

  .ceo-intro-desc {
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .ceo-profile-highlight {
    margin-bottom: 20px;
  }

  .ceo-profile-name {
    font-size: 20px;
  }

  .ceo-profile-role {
    font-size: 13px;
  }

  .ceo-profile-bio {
    font-size: 12.5px;
    line-height: 1.6;
  }

  /* 4 Pillars: 2 in each row across the width */
  .ceo-pillars-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 14px;
    padding-top: 14px;
    width: 100%;
  }

  .ceo-pillar-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .ceo-pillar-icon {
    width: 40px;
    height: 40px;
  }

  .ceo-pillar-icon svg {
    width: 30px;
    height: 30px;
  }

  .ceo-pillar-label {
    font-size: 12px;
  }

  /* Decreased portrait image height */
  .ceo-image-col {
    order: initial;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    max-height: 450px;
    background: var(--white);
    align-self: flex-end;
  }

  .ceo-image-frame {
    width: 100%;
    height: 100%;
    max-height: 450px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .ceo-portrait-img {
    width: 100%;
    height: 100%;
    max-height: 450px;
    object-fit: cover;
    object-position: bottom center;
    display: block;
  }
}

/* Mobile View (≤767px) — Stacked Single Column Layout */
@media (max-width: 767px) {
  .ceo-leadership-section {
    padding: 50px 0 60px 0;
  }

  .ceo-card-wrapper {
    grid-template-columns: 1fr;
  }

  .ceo-image-col {
    order: -1;
    max-height: 400px;
    background: var(--bg);
    justify-content: center;
  }

  .ceo-portrait-img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-position: top center;
  }

  .ceo-content-col {
    padding: 32px 24px;
  }

  .ceo-main-heading {
    font-size: 32px;
  }

  .ceo-pillars-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
  }
}

@media (max-width: 479px) {
  .ceo-leadership-section {
    padding: 40px 0 50px 0;
  }

  .ceo-content-col {
    padding: 24px 18px;
  }

  .ceo-main-heading {
    font-size: 28px;
  }

  .ceo-profile-name {
    font-size: 19px;
  }

  .ceo-pillars-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 8px;
  }

  .ceo-pillar-label {
    font-size: 11.5px;
  }
}

/* --- C. Our Global Offices Section (Aligned with Site Design System) --- */
.global-offices-section {
  background: var(--bg);
  padding: 85px 0 105px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.global-offices-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-gutter);
}

.global-offices-layout {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Column: Title, Stats & Map */
.offices-map-col {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.offices-header {
  margin-bottom: 22px;
}

.offices-pre-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--orange-vibrant);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.offices-pre-label .label-line {
  display: inline-block;
  width: 44px;
  height: 2.5px;
  background: var(--orange-vibrant);
  border-radius: var(--radius-xs);
}

.offices-main-title {
  font-family: var(--font-sans);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.offices-main-desc {
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
  margin: 0;
}

/* 3 Stat Counter Pills */
.offices-stats-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.offices-stat-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 14px rgba(var(--navy-rgb), 0.035);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.offices-stat-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--color-primary-rgb), 0.1);
  border-color: rgba(var(--color-primary-rgb), 0.4);
}

.stat-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(var(--color-primary-rgb), 0.08);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-pill-text {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.15;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.2;
}

/* Interactive Map Card */
.offices-map-card {
  position: relative;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 16px 10px 24px 10px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.offices-world-svg {
  width: 100%;
  height: auto;
  min-height: 480px;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 6px 20px rgba(var(--navy-rgb), 0.03));
}

/* Animated Curved Trade Routes */
.map-route-line {
  stroke: var(--orange);
  stroke-width: 1.8;
  stroke-dasharray: 6 4;
  fill: none;
  opacity: 0.7;
  transition:
    opacity 0.3s ease,
    stroke-width 0.3s ease,
    stroke 0.3s ease;
  animation: routeDashFlow 22s linear infinite;
}

.map-route-line.is-active-route {
  stroke-width: 2.8;
  stroke: var(--orange-hover);
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(var(--color-primary-rgb), 0.65));
}

@keyframes routeDashFlow {
  to {
    stroke-dashoffset: -100;
  }
}

/* Radar Rings around India HQ & Locations */
.hq-radar-group .radar-ring {
  stroke: var(--orange);
  stroke-width: 1.4;
  fill: none;
  transform-origin: center;
  animation: hqRadarPulse 3.6s cubic-bezier(0.2, 0.8, 0.4, 1) infinite;
  pointer-events: none;
}

.radar-ring.ring-1 {
  animation-delay: 0s;
}

.radar-ring.ring-2 {
  animation-delay: 0.9s;
}

.radar-ring.ring-3 {
  animation-delay: 1.8s;
}

.radar-ring.ring-4 {
  animation-delay: 2.7s;
}

@keyframes hqRadarPulse {
  0% {
    r: 10;
    opacity: 0.85;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    r: 68;
    opacity: 0;
  }
}

.ambient-radar-ring {
  stroke: var(--orange);
  stroke-width: 1.2;
  fill: none;
  animation: ambientPulse 3.2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  pointer-events: none;
}

@keyframes ambientPulse {
  0% {
    r: 12;
    opacity: 0.7;
  }

  50% {
    opacity: 0.25;
  }

  100% {
    r: 32;
    opacity: 0;
  }
}

/* Map Pins & Tooltip Badges */
.svg-map-pin {
  cursor: pointer;
  pointer-events: all;
}

.svg-map-pin .pin-hitbox {
  fill: transparent;
  pointer-events: all;
}

.svg-map-pin .pin-graphic {
  transition:
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.28s ease;
  transform-origin: 0 0;
  pointer-events: none;
}

.svg-map-pin:hover .pin-graphic,
.svg-map-pin.is-highlighted .pin-graphic {
  transform: translateY(-6px) scale(1.16);
  filter: drop-shadow(0 8px 16px rgba(var(--color-primary-rgb), 0.48));
}

.pin-tag-bg {
  fill: var(--white);
  stroke: var(--border);
  stroke-width: 1;
  filter: drop-shadow(0 4px 10px rgba(var(--navy-rgb), 0.08));
  transition:
    stroke 0.25s ease,
    fill 0.25s ease,
    filter 0.25s ease;
  pointer-events: none;
}

.pin-tag-hq {
  stroke: rgba(var(--color-primary-rgb), 0.45);
}

.pin-tag-title {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  fill: var(--navy);
  transition: fill 0.25s ease;
  user-select: none;
  pointer-events: none;
}

.pin-tag-subtitle {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 500;
  fill: var(--muted);
  transition: fill 0.25s ease;
  user-select: none;
  pointer-events: none;
}

.svg-map-pin:hover .pin-tag-bg,
.svg-map-pin.is-highlighted .pin-tag-bg {
  stroke: var(--orange);
  filter: drop-shadow(0 6px 14px rgba(var(--color-primary-rgb), 0.22));
}

.svg-map-pin:hover .pin-tag-title,
.svg-map-pin.is-highlighted .pin-tag-title {
  fill: var(--orange);
}

/* Right Column: 2x3 Office Cards Grid */
.offices-cards-col {
  width: 100%;
}

.offices-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.office-modern-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 4px 18px rgba(var(--navy-rgb), 0.035);
  transition:
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  position: relative;
  cursor: pointer;
}

.office-modern-card:hover,
.office-modern-card.is-active {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(var(--color-primary-rgb), 0.12);
  border-color: var(--orange);
}

.office-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.office-pin-badge {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(var(--color-primary-rgb), 0.08);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.office-modern-card:hover .office-pin-badge,
.office-modern-card.is-active .office-pin-badge {
  transform: scale(1.08);
  background: rgba(var(--color-primary-rgb), 0.16);
}

.office-num-badge {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  color: var(--orange);
  background: rgba(var(--color-primary-rgb), 0.08);
  padding: 2px 8px;
  border-radius: var(--radius-lg);
  letter-spacing: 0.5px;
}

.office-card-content {
  display: flex;
  flex-direction: column;
}

.office-card-name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 3px 0;
  line-height: 1.25;
}

.office-sub-tagline {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 3px;
  line-height: 1.3;
}

.office-tag-label,
.office-country-tag {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  margin: 2px 0 4px 0;
}

.office-card-address {
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}

.office-card-footer {
  margin-top: auto;
  padding-top: 4px;
}

.office-map-link {
  background: transparent;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.office-map-link:hover,
.office-modern-card:hover .office-map-link,
.office-modern-card.is-active .office-map-link {
  color: var(--orange);
  transform: translateX(2px);
}

/* --- D. Comprehensive Multi-Device Responsive Breakpoints for Contact Page --- */

/* 1. Large Tablet & Small Laptop (1024px - 1279px) */
@media (max-width: 1279px) {
  .global-offices-container {
    max-width: 100%;
    padding: 0 30px;
  }

  .global-offices-layout {
    grid-template-columns: 1.15fr 1fr;
    gap: 36px;
  }

  .offices-world-svg {
    min-height: 400px;
  }
}

/* 2. Tablet Portrait (768px - 1023px) */
@media (max-width: 1023px) {
  .contact-hero-banner {
    min-height: 360px;
  }

  .contact-hero-title {
    font-size: 34px;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .global-offices-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .offices-map-container {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    min-height: auto;
  }

  .offices-world-svg {
    min-height: 380px;
  }

  .offices-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* 3. Mobile Landscape & Large Phones (576px - 767px) */
@media (max-width: 767px) {
  .global-offices-container,
  .contact-main-container,
  .contact-hero-container {
    padding: 0 20px;
  }

  .contact-hero-banner {
    min-height: 300px;
    background-position: center right;
  }

  .contact-hero-banner::before {
    background: linear-gradient(
      90deg,
      rgba(var(--white-rgb), 0.96) 0%,
      rgba(var(--white-rgb), 0.92) 75%,
      rgba(var(--white-rgb), 0.7) 100%
    );
  }

  .contact-hero-content {
    padding: 35px 0;
  }

  .contact-hero-title {
    font-size: 30px;
  }

  .contact-hero-desc {
    font-size: 14.5px;
    max-width: 100%;
  }

  .contact-main-section {
    padding: 45px 0;
  }

  .contact-section-title {
    font-size: 26px;
  }

  .contact-info-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-form-card {
    padding: 26px 18px;
    border-radius: var(--radius-2xl);
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* 16px font size on mobile inputs to avoid iOS auto-zoom */
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }

  .form-bottom-row {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .contact-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .form-privacy-note {
    justify-content: center;
  }

  /* Global Offices Section */
  .global-offices-section {
    padding: 55px 0 70px 0;
  }

  .offices-main-title {
    font-size: 28px;
  }

  .offices-stats-row {
    gap: 10px;
  }

  .offices-stat-pill {
    padding: 8px 12px;
    flex: 1 1 calc(50% - 10px);
  }

  .offices-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .office-modern-card {
    padding: 18px 16px;
    gap: 10px;
    border-radius: var(--radius-3xl);
  }

  .office-card-name {
    font-size: 14.5px;
  }

  .offices-world-svg {
    min-height: 280px;
  }
}

/* 4. Small Mobile Phones (max-width: 479px) */
@media (max-width: 479px) {
  .offices-stat-pill {
    flex: 1 1 100%;
  }

  .global-offices-container,
  .contact-main-container,
  .contact-hero-container {
    padding: 0 16px;
  }

  .contact-hero-title {
    font-size: 26px;
  }

  .contact-hero-desc {
    font-size: 13.5px;
  }

  .contact-section-title {
    font-size: 23px;
  }

  .contact-info-card {
    padding: 14px 12px;
    gap: 12px;
    border-radius: var(--radius-xl);
  }

  .contact-info-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .contact-info-icon svg {
    width: 18px;
    height: 18px;
  }

  .contact-info-text h4 {
    font-size: 13.5px;
  }

  .contact-info-text a,
  .contact-info-text p {
    font-size: 12.5px;
  }

  .contact-form-card {
    padding: 20px 14px;
    border-radius: var(--radius-xl);
  }

  .contact-form-title {
    font-size: 20px;
  }

  /* Global Offices Small Mobile */
  .offices-title {
    font-size: 24px;
  }

  .offices-world-svg {
    min-height: 240px;
  }

  .map-label-title {
    font-size: 11px;
  }

  .map-label-subtitle {
    font-size: 9px;
  }

  .office-info-card {
    padding: 14px 12px;
    gap: 12px;
    border-radius: var(--radius-lg);
  }

  .office-icon-wrapper {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .office-pin-svg {
    width: 17px;
    height: 22px;
  }

  .office-title {
    font-size: 14px;
  }

  .office-subtitle {
    font-size: 11px;
  }

  .office-type-tag {
    font-size: 12px;
  }

  .office-addr-text {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* 5. Extra Small Mobile (< 360px) */
@media (max-width: 359px) {
  .contact-hero-title,
  .contact-section-title,
  .offices-title {
    font-size: 22px;
  }

  .contact-form-card {
    padding: 16px 10px;
  }

  .office-info-card {
    padding: 12px 10px;
  }
}

/* --- E. Footer Newsletter Column Styles --- */
.jt-footer-newsletter-col {
  display: flex;
  flex-direction: column;
}

.jt-footer-newsletter-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-light);
  margin-bottom: 14px;
}

.jt-footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.jt-footer-newsletter-form input {
  width: 100%;
  background: var(--navy-overlay);
  border: 1px solid var(--navy-light);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 13.5px;
  color: var(--white);
  outline: none;
  transition: var(--transition-normal);
}

.jt-footer-newsletter-form input::placeholder {
  color: var(--muted);
  font-size: 13px;
}

.jt-footer-newsletter-form input:focus {
  border-color: var(--orange-deep);
  box-shadow: 0 0 0 2px rgba(234, 88, 12, 0.2);
}

.jt-footer-sub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange-deep);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-base);
}

.jt-footer-sub-btn:hover {
  background: var(--orange-darker);
  transform: translateY(-1px);
}

/* =========================================================
   TESTIMONIAL — VIEW MORE REVIEWS ACTION BUTTON
   ========================================================= */
.jt-success-action {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 36px;
  position: relative;
  z-index: 10;
  width: 100%;
}

.btn-view-reviews {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-darker);
  color: var(--white) !important;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(var(--navy-darker-rgb), 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-view-reviews::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--white-rgb), 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-view-reviews:hover::before {
  left: 100%;
}

.btn-view-reviews:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(var(--color-primary-rgb), 0.4);
  color: var(--white) !important;
}

.btn-view-reviews svg {
  transition: var(--transition-transform);
}

.btn-view-reviews:hover svg {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .jt-success-action {
    margin-top: 26px;
  }

  .btn-view-reviews {
    font-size: 13px;
    padding: 12px 24px;
  }
}

/* =========================================================
   GET A QUOTE / GET IN TOUCH POPUP MODAL
   ========================================================= */
.quote-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(var(--navy-dark-rgb), 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.quote-modal-backdrop.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quote-modal-card {
  background: var(--white);
  border-radius: var(--radius-5xl);
  max-width: 480px;
  width: 100%;
  max-height: 94vh;
  overflow-y: auto;
  box-shadow: 0 25px 70px rgba(var(--navy-dark-rgb), 0.3);
  position: relative;
  padding: 22px 28px 18px 28px;
  transform: scale(0.92) translateY(20px);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
  box-sizing: border-box;
  /* Completely hide scrollbars across all browsers */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.quote-modal-card::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

/* Modal Textarea Scrollbar (hidden) */
.quote-input-wrapper textarea {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.quote-input-wrapper textarea::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.quote-modal-backdrop.is-active .quote-modal-card {
  transform: scale(1) translateY(0);
}

.quote-modal-close-btn {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  font-size: 20px;
  line-height: 1;
  transition: var(--transition-normal);
  z-index: 10;
}

.quote-modal-close-btn:hover {
  background: var(--orange-50);
  color: var(--orange-vibrant);
  border-color: var(--orange-200);
  transform: rotate(90deg);
}

/* Modal Header */
.quote-modal-header {
  text-align: center;
  margin-bottom: 12px;
}

.quote-modal-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1.5px solid var(--orange-100);
  box-shadow: 0 8px 20px rgba(249, 87, 0, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.quote-modal-icon-badge svg {
  width: 22px;
  height: 22px;
}

.quote-modal-title {
  font-family: var(--font-sans);
  font-size: 23px;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 0 0 3px 0;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.quote-modal-title span {
  color: var(--orange-vibrant);
}

.quote-modal-subtitle {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  margin: 0 auto;
  max-width: 360px;
}

/* Form Styles */
.quote-modal-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-field-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.quote-field-label {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy-dark);
}

.quote-field-label .req-star {
  color: var(--orange-vibrant);
  margin-left: 2px;
}

.quote-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.quote-input-icon {
  position: absolute;
  left: 12px;
  color: var(--text-light);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-color);
}

.quote-input-icon svg {
  width: 15px;
  height: 15px;
}

.quote-input-wrapper input,
.quote-input-wrapper textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-base);
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--navy-dark);
  padding: 8px 12px 8px 36px;
  outline: none;
  transition: var(--transition-base);
  box-sizing: border-box;
}

.quote-input-wrapper textarea {
  min-height: 52px;
  height: 52px;
  padding-top: 8px;
  resize: none;
}

.quote-input-wrapper input::placeholder,
.quote-input-wrapper textarea::placeholder {
  color: var(--text-light);
  font-size: 12px;
}

.quote-input-wrapper input:focus,
.quote-input-wrapper textarea:focus {
  border-color: var(--orange-vibrant);
  box-shadow: 0 0 0 3px rgba(249, 87, 0, 0.12);
}

.quote-input-wrapper:focus-within .quote-input-icon {
  color: var(--orange-vibrant);
}

.quote-input-wrapper.textarea-wrap {
  align-items: flex-start;
}

.quote-input-wrapper.textarea-wrap .quote-input-icon {
  top: 9px;
}

/* Submit Button */
.quote-modal-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--navy-darker);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(var(--navy-darker-rgb), 0.25);
  transition: var(--transition-base);
  margin-top: 3px;
}

.quote-modal-submit-btn:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(var(--color-primary-rgb), 0.35);
}

.quote-modal-submit-btn svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.quote-modal-submit-btn:hover svg {
  transform: translateX(3px) translateY(-2px);
}

/* Security Guarantee Text */
.quote-modal-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 3px;
  text-align: center;
}

.quote-modal-security svg {
  width: 12px;
  height: 12px;
  color: var(--navy-dark);
  flex-shrink: 0;
}

.quote-modal-security strong {
  color: var(--navy-dark);
}

/* Bottom 4-Badge Row */
.quote-modal-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid var(--bg-slate-100);
  text-align: center;
}

.quote-feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-feat-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--bg);
  border: 1px solid var(--bg-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.quote-feat-icon svg {
  width: 14px;
  height: 14px;
}

.quote-feat-title {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.15;
}

.quote-feat-desc {
  font-size: 8.5px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.15;
}

/* Success Message inside modal */
.quote-modal-success {
  text-align: center;
  padding: 30px 10px;
  display: none;
}

.quote-modal-success.is-visible {
  display: block;
}

.quote-success-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--success-50);
  border: 2px solid var(--success-200);
  color: var(--success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}

@media (max-width: 540px) {
  .quote-modal-card {
    padding: 30px 20px 24px 20px;
    border-radius: var(--radius-4xl);
  }

  .quote-modal-title {
    font-size: 24px;
  }

  .quote-modal-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 8px;
  }
}


/* ==========================================================================
   15. REVIEWS PAGE STYLES (reviews.html)
   ========================================================================== */
.reviews-hero-wrapper {
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--bg-gray-100);
}

.reviews-hero-main {
  position: relative;
  background: url("../images/reviews_bg.png") no-repeat right center / cover;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 60px 0 50px 0;
}

/* Attractive, rich multi-layered linear gradient overlay */
.reviews-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      var(--white) 0%,
      rgba(var(--white-rgb), 0.98) 28%,
      rgba(var(--white-rgb), 0.88) 42%,
      rgba(var(--white-rgb), 0.35) 60%,
      rgba(var(--white-rgb), 0.06) 80%,
      transparent 100%
    ),
    linear-gradient(
      135deg,
      rgba(255, 247, 237, 0.5) 0%,
      rgba(240, 249, 255, 0.25) 40%,
      transparent 75%
    ),
    linear-gradient(
      180deg,
      rgba(var(--white-rgb), 0.15) 0%,
      transparent 50%,
      rgba(var(--white-rgb), 0.3) 100%
    );
  pointer-events: none;
  z-index: 1;
}

.reviews-hero-container {
  max-width: var(--container-max-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--container-gutter, 24px);
  width: 100%;
  position: relative;
  z-index: 2;
}

.reviews-hero-content {
  max-width: 540px;
}

.reviews-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.reviews-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-color);
}

.reviews-breadcrumb a:hover {
  color: var(--orange);
}

.reviews-breadcrumb-sep {
  color: var(--text-light);
  font-size: 14px;
}

.reviews-breadcrumb-current {
  color: var(--orange);
}

.reviews-hero-title {
  font-family: var(--font-sans);
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0 0 12px 0;
}

.reviews-hero-title span {
  color: var(--orange);
  display: inline;
}

.reviews-title-accent {
  width: 48px;
  height: 3.5px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}

.reviews-hero-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 26px;
  max-width: 480px;
}

/* Trust & Social Proof Row */
.reviews-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.trust-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
}

.trust-badge-text {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 800;
  color: var(--navy-dark);
}

.reviews-avatars-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.reviews-avatar-stack {
  display: flex;
  align-items: center;
}

.reviews-avatar-stack img {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  border: 2.5px solid var(--white);
  object-fit: cover;
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.reviews-avatar-stack img:first-child {
  margin-left: 0;
}

.reviews-badge-count {
  background: var(--orange);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 800;
  height: 34px;
  min-width: 38px;
  padding: 0 8px;
  border-radius: var(--radius-4xl);
  border: 2px solid var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(var(--color-primary-rgb), 0.25);
}

.reviews-happy-text {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-dark);
}

/* =========================================================
   FLOATING 5-METRIC NAVY BAR
   ========================================================= */
.reviews-metrics-container {
  max-width: var(--container-max-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--container-gutter, 24px);
  position: relative;
  z-index: 5;
  margin-top: -30px;
  margin-bottom: 20px;
}

.reviews-metrics-card {
  background: var(--navy-dark);
  border-radius: var(--radius-3xl);
  padding: 22px 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  box-shadow: 0 16px 45px rgba(var(--navy-dark-rgb), 0.18);
  border: 1px solid rgba(var(--white-rgb), 0.08);
  align-items: center;
}

.metric-col {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 4px 10px;
  position: relative;
}

.metric-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(var(--white-rgb), 0.12);
}

.metric-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-info {
  display: flex;
  flex-direction: column;
}

.metric-number {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.metric-label {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 3px;
  white-space: nowrap;
}

/* =========================================================
   REVIEWS LISTING & FILTER SECTION
   ========================================================= */
.reviews-main-section {
  padding: 60px 0 90px 0;
}

.reviews-main-container {
  max-width: var(--container-max-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--container-gutter, 24px);
}

.reviews-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}

.reviews-filter-heading {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 0;
}

.reviews-filter-heading span {
  color: var(--orange);
}

.reviews-filter-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-filter-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.reviews-select-filter {
  background: var(--white);
  border: 1px solid var(--border-dark);
  color: var(--navy-dark);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-lg);
  outline: none;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.reviews-select-filter:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.15);
}

/* 3-Column Reviews Grid */
.reviews-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-single-card {
  background: var(--white);
  border: 1px solid var(--bg-gray-100);
  border-radius: var(--radius-3xl);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(var(--navy-rgb), 0.035);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
}

.review-single-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange-200);
  box-shadow: 0 16px 36px rgba(var(--navy-rgb), 0.08);
}

.review-card-quote-icon {
  font-size: 32px;
  line-height: 1;
  color: var(--orange);
  opacity: 0.85;
  margin-bottom: 12px;
  font-family: var(--font-serif);
  font-weight: bold;
}

.review-card-body-text {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 18px 0;
  flex-grow: 1;
  font-weight: 500;
}

.review-card-stars {
  color: gold;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.review-card-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--bg-slate-100);
}

.review-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--orange);
  flex-shrink: 0;
}

.review-author-meta {
  min-width: 0;
  flex: 1;
}

.review-author-name {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 0 0 2px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-author-role {
  font-size: 11.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-author-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-light);
  margin-top: 4px;
  font-weight: 600;
}

.review-author-location svg {
  color: var(--orange);
}

/* Actions & Pagination */
.reviews-actions-wrapper {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.btn-load-more-reviews {
  background: var(--navy-darker);
  color: var(--white);
  border: 1.5px solid var(--navy-darker);
  padding: 12px 32px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: var(--shadow-navy-sm);
}

.btn-load-more-reviews:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange-lg);
}

.btn-load-more-reviews:disabled {
  border-color: var(--border-dark);
  color: var(--text-light);
  background: var(--bg-slate-100);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.reviews-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-btn-arrow,
.pagination-btn-num {
  height: 40px;
  min-width: 40px;
  padding: 0 14px;
  border-radius: var(--radius-base);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-normal);
}

.pagination-btn-arrow:hover:not(:disabled),
.pagination-btn-num:hover {
  background: var(--orange-50);
  color: var(--orange);
  border-color: var(--orange-200);
}

.pagination-btn-num.active {
  background: var(--navy-darker);
  color: var(--white);
  border-color: var(--navy-darker);
  box-shadow: 0 4px 14px rgba(var(--navy-darker-rgb), 0.3);
}

.pagination-btn-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* =========================================================
   REVIEWS BOTTOM CTA BANNER
   ========================================================= */
.reviews-bottom-cta {
  background: linear-gradient(
    135deg,
    var(--navy-dark) 0%,
    var(--navy-light) 100%
  );
  border-radius: var(--radius-4xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 60px;
  box-shadow: 0 20px 40px rgba(var(--navy-dark-rgb), 0.15);
  border: 1px solid rgba(var(--white-rgb), 0.08);
  position: relative;
  overflow: hidden;
}

.reviews-cta-text h3 {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 8px 0;
}

.reviews-cta-text p {
  font-size: 14.5px;
  color: var(--text-light);
  margin: 0;
}

.reviews-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-darker);
  color: var(--white) !important;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1.5px solid rgba(var(--white-rgb), 0.2);
  box-shadow: 0 6px 20px rgba(var(--navy-darker-rgb), 0.35);
  transition: var(--transition-smooth);
}

.reviews-cta-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(var(--color-primary-rgb), 0.45);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .reviews-metrics-card {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .metric-col:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 1023px) {
  .reviews-hero-main {
    background-position: center right;
    min-height: 480px;
  }

  .reviews-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .reviews-hero-main {
    padding: 45px 0 40px 0;
    min-height: auto;
  }

  .reviews-hero-title {
    font-size: 38px;
  }

  .reviews-metrics-container {
    margin-top: 20px;
  }

  .reviews-metrics-card {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 18px;
  }

  .metric-col::after {
    display: none !important;
  }

  .reviews-cards-grid {
    grid-template-columns: 1fr;
  }

  .reviews-bottom-cta {
    padding: 30px 24px;
    text-align: center;
    justify-content: center;
  }

  .reviews-cta-text {
    text-align: center;
  }
}

/* ==========================================================================
   16. FIXED SCROLL TO TOP WITH CIRCULAR PROGRESS INDICATOR
   ========================================================================== */
.scroll-to-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--navy-darker);
  color: var(--white);
  border: none;
  box-shadow: 0 10px 30px rgba(var(--navy-darker-rgb), 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.92);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.25s ease,
    box-shadow 0.25s ease;
  outline: none;
  padding: 0;
}

.scroll-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top-btn:hover {
  background: var(--navy-floating);
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 14px 34px rgba(var(--color-primary-rgb), 0.32),
    0 6px 18px rgba(var(--navy-darker-rgb), 0.4);
}

/* Circular SVG Progress Ring */
.scroll-progress-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  /* Start progress from top (12 o'clock) */
  pointer-events: none;
}

.progress-circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 3;
}

.progress-circle-bar {
  fill: none;
  stroke: #ffffff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 138.2;
  /* 2 * PI * 22 */
  stroke-dashoffset: 138.2;
  transition:
    stroke-dashoffset 0.1s linear,
    stroke 0.25s ease,
    filter 0.25s ease;
}

.scroll-to-top-btn:hover .progress-circle-bar {
  stroke: #ffffff;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
}

/* Center Arrow Icon */
.scroll-arrow-icon {
  position: relative;
  z-index: 2;
  color: #ffffff;
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.scroll-to-top-btn:hover .scroll-arrow-icon {
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .scroll-to-top-btn {
    bottom: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
  }
}

/* ==========================================================================
   17. FIXED WHATSAPP FLOATING BUTTON
   ========================================================================== */
.fixed-whatsapp-btn {
  position: fixed;
  bottom: 94px;
  right: 32px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: linear-gradient(
    135deg,
    var(--whatsapp-green) 0%,
    var(--whatsapp-dark) 100%
  );
  color: var(--white) !important;
  box-shadow:
    0 10px 28px rgba(37, 211, 102, 0.38),
    0 4px 12px rgba(var(--navy-dark-rgb), 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
  cursor: pointer;
  transform: translateY(0);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease,
    filter 0.25s ease;
}

.fixed-whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow:
    0 14px 34px rgba(37, 211, 102, 0.52),
    0 6px 18px rgba(var(--navy-dark-rgb), 0.25);
  filter: brightness(1.05);
}

.fixed-whatsapp-btn svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
  transition: var(--transition-transform);
}

.fixed-whatsapp-btn:hover svg {
  transform: scale(1.08);
}

/* Tooltip on hover */
.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--navy-darker);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-base);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 8px 20px rgba(var(--navy-darker-rgb), 0.25);
  border: 1px solid rgba(var(--white-rgb), 0.1);
  transition:
    opacity 0.25s ease,
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.25s ease;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--navy-darker);
  border-right: 1px solid rgba(var(--white-rgb), 0.1);
  border-top: 1px solid rgba(var(--white-rgb), 0.1);
}

.fixed-whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Pulse animation for attention */
.fixed-whatsapp-btn::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(37, 211, 102, 0.6);
  opacity: 0;
  animation: waPulse 2.8s infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.25);
    opacity: 0;
  }

  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .fixed-whatsapp-btn {
    bottom: 74px;
    right: 22px;
    width: 44px;
    height: 44px;
  }

  .fixed-whatsapp-btn svg {
    width: 22px;
    height: 22px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

/* On-Page Contact Form Scroll & Highlight Styles */
#contact-form,
.contact-main-section {
  scroll-margin-top: 85px;
}

@keyframes formCardPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 87, 0, 0.45);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(249, 87, 0, 0);
    transform: scale(1.012);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(249, 87, 0, 0);
    transform: scale(1);
  }
}

.contact-form-card.highlight-pulse {
  animation: formCardPulse 1.2s ease-in-out;
}

/* ==========================================================================
   Serverless Email Form Alerts, Input Validation & Flasher Notification
   ========================================================================== */

/* Input Field Error State */
.form-field, .jt-field, .quote-field-group {
  position: relative;
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid,
.has-error input,
.has-error select,
.has-error textarea {
  border-color: #ef4444 !important;
  background-color: #fffaf0 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
  animation: joyFieldShake 0.35s ease-in-out;
}

@keyframes joyFieldShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

/* Inline Field Error Message */
.joy-field-error {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #dc2626;
  font-size: 12px;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 2px;
  line-height: 1.3;
  animation: joyErrorFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.joy-field-error svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: #dc2626;
}

@keyframes joyErrorFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Standard Banner Alert */
.joy-form-alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-family: inherit;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  animation: joySlideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

@keyframes joySlideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.joy-form-alert-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #14532d;
}

.joy-form-alert-success .joy-alert-icon {
  color: #16a34a;
  background: #dcfce7;
}

.joy-form-alert-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #7f1d1d;
}

.joy-form-alert-error .joy-alert-icon {
  color: #dc2626;
  background: #fee2e2;
}

.joy-alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.joy-alert-content {
  flex: 1;
}

.joy-alert-content strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.joy-alert-content p {
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
  color: inherit;
  opacity: 0.9;
}

.joy-alert-close {
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  color: currentColor;
  opacity: 0.6;
  cursor: pointer;
  padding: 0 4px;
  transition: opacity 0.2s ease;
}

.joy-alert-close:hover {
  opacity: 1;
}

/* Button Loading Spinner */
.joy-btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: joySpin 0.7s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes joySpin {
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   True Flash Notification Toast (Top Floating - Non-blocking Flasher)
   ========================================================================== */
.joy-flash-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 99999999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 440px;
  width: calc(100% - 48px);
  pointer-events: none;
}

.joy-flash-toast {
  pointer-events: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px 16px;
  box-shadow: 0 20px 40px -10px rgba(11, 25, 44, 0.25), 0 0 0 1px rgba(11, 25, 44, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  overflow: hidden;
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
  animation: joyFlashSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 4px solid #10b981;
}

.joy-flash-toast.is-leaving {
  opacity: 0;
  transform: translateX(40px) scale(0.95);
}

@keyframes joyFlashSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.joy-flash-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.joy-flash-icon svg {
  width: 22px;
  height: 22px;
}

.joy-flash-content {
  flex: 1;
  padding-right: 18px;
}

.joy-flash-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.joy-flash-title {
  font-size: 15.5px;
  font-weight: 800;
  color: #0b192c;
  margin: 0;
  letter-spacing: -0.2px;
}

.joy-flash-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  background: #ecfdf5;
  color: #059669;
  letter-spacing: 0.5px;
  border: 1px solid #a7f3d0;
}

.joy-flash-message {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
  margin: 0 0 6px;
}

.joy-flash-meta {
  font-size: 11.5px;
  color: #94a3b8;
  font-weight: 600;
}

.joy-flash-meta strong {
  color: #0b192c;
}

.joy-flash-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.joy-flash-close:hover {
  color: #0b192c;
}

/* Bottom Progress Bar */
.joy-flash-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #059669);
  width: 100%;
  animation: joyFlashTimer 5s linear forwards;
}

@keyframes joyFlashTimer {
  from { width: 100%; }
  to { width: 0%; }
}

@media (max-width: 480px) {
  .joy-flash-container {
    top: 16px;
    right: 16px;
    left: 16px;
    width: auto;
  }
}




