/* ==========================================================================
   OKLUT Innovative & Digital Excellence - Premium White Theme
   Color System: Navy + Blue Accent + Clean White Background
   Style: Minimalism & Swiss Style
   ========================================================================== */

/* -------------------- Root Variables -------------------- */
:root {
  /* Primary - Navy */
  --navy-950: #020617;
  --navy-900: #0f172a;
  --navy-800: #1e293b;
  --navy-700: #334155;
  --navy-600: #475569;
  --navy-500: #64748b;

  /* Blue Accent Spectrum */
  --blue-900: #1e3a8a;
  --blue-800: #1e40af;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-300: #93c5fd;
  --blue-200: #bfdbfe;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;

  /* Cyan Accent */
  --cyan-600: #0891b2;
  --cyan-500: #06b6d4;
  --cyan-400: #22d3ee;
  --cyan-300: #67e8f9;

  /* Purple Accent (minimal) */
  --purple-600: #7c3aed;
  --purple-500: #8b5cf6;

  /* Neutral / Slate */
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;

  /* Semantic */
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: rgba(37, 99, 235, 0.08);
  --accent: #0891b2;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Backgrounds */
  --bg-body: #ffffff;
  --bg-section: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-solid: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-input: #f8fafc;

  /* Text */
  --text-heading: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-on-primary: #ffffff;

  /* Borders & Shadows */
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --border-focus: #2563eb;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
  --shadow-blue: 0 4px 14px rgba(37, 99, 235, 0.15);
  --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.08);

  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 150ms var(--ease-in-out);
  --transition-base: 250ms var(--ease-out);
  --transition-slow: 400ms var(--ease-out);

  /* Spacing */
  --container-max: 1200px;
  --section-py: 6rem;
  --section-py-sm: 4rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  background-color: var(--bg-body);
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

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

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: all var(--transition-fast);
}

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

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

/* -------------------- Container & Utility -------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

.max-w-750 {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.full-width { width: 100%; }

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

/* Section Header Shared */
.section-header {
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-btn-wrap {
  margin-top: 1.75rem;
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.75rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  transition: all var(--transition-base);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-600) 100%);
  color: var(--text-on-primary);
  border: none;
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-700) 100%);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
  transform: translateY(-2px);
  color: var(--text-on-primary);
}

.btn-outline {
  background: transparent;
  color: var(--blue-700);
  border: 1.5px solid var(--blue-200);
}

.btn-outline:hover {
  border-color: var(--blue-500);
  background: var(--blue-50);
  color: var(--blue-800);
  transform: translateY(-2px);
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-600) 100%);
  color: var(--text-on-primary);
  border: none;
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: var(--shadow-blue);
}

.btn-nav-cta:hover {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-700) 100%);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  transform: translateY(-1px);
  color: var(--text-on-primary);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}

/* --------------------------------------------------------------------------
   1. STICKY NAVBAR & MEGA MENU
   -------------------------------------------------------------------------- */
.header-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-base);
}

.header-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
  border-bottom-color: var(--border);
}

.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---- Logo / Brand Text ---- */
.brand-logo {
  display: flex;
  align-items: center;
  z-index: 1010;
  flex-shrink: 0;
}

.brand-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 3px;
}

.logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition-fast);
}

.brand-logo:hover .logo-img {
  opacity: 0.85;
}

.brand-tagline {
  font-family: var(--font-main);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: var(--navy-800);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

/* ---- Desktop Nav Menu ---- */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--slate-600);
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  padding: 0.5rem 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
  border-radius: 6px;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: transform 80ms ease-out;
}

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

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* ---- Dropdown Toggle ---- */
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: var(--slate-600);
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: color var(--transition-fast);
  background: none;
  border: none;
}

.dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: transform 80ms ease-out;
}

.dropdown-toggle:hover {
  color: var(--primary);
}

.dropdown-toggle:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.dropdown-chevron {
  transition: transform var(--transition-fast);
  opacity: 0.6;
}

.has-dropdown:hover .dropdown-chevron,
.has-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--primary);
}

.has-dropdown.open .dropdown-toggle {
  color: var(--primary);
}

.has-dropdown.open .dropdown-toggle::after {
  transform: translateX(-50%) scaleX(1);
}

/* ---- Mega Menu ---- */
.mega-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 320px;
  max-height: 380px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  padding: 1rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 200ms ease;
  z-index: 1050;
}

.has-dropdown:hover .mega-menu,
.has-dropdown.open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
  display: flex;
  flex-direction: column;
}

.mega-column {
  display: flex;
  flex-direction: column;
}

.mega-sublist {
  max-height: 290px;
  overflow-y: auto;
}

.mega-sublist::-webkit-scrollbar {
  width: 4px;
}

.mega-sublist::-webkit-scrollbar-thumb {
  background: var(--slate-300);
  border-radius: 2px;
}

.mega-sublist li {
  margin-bottom: 1px;
}

.mega-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate-600);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.7rem;
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.mega-link .bullet {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--slate-400);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.mega-link:hover {
  color: var(--primary);
  background: var(--blue-50);
}

.mega-link:hover .bullet {
  background: var(--primary);
  transform: scale(1.4);
}

.mega-menu-footer {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--slate-500);
}

.btn-mega-cta {
  color: var(--primary);
  font-weight: 600;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.btn-mega-cta:hover {
  color: var(--blue-800);
}

/* ---- Nav Actions ---- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-social-icons {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.social-icon-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--slate-500);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.25);
}

/* ---- Hamburger Button ---- */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  cursor: pointer;
  z-index: 1010;
  background: none;
  border: none;
  padding: 0;
}

.mobile-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--slate-600);
  border-radius: 2px;
  transition: all 250ms ease;
  transform-origin: center;
}

.mobile-toggle.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Mobile Drawer ---- */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 340px;
  height: 100vh;
  height: 100dvh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--border);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: right 300ms ease;
  z-index: 1005;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-drawer-header .logo-img {
  height: 36px;
}

.mobile-drawer-header .brand-tagline {
  font-size: 0.48rem;
}

.mobile-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--slate-100);
  border: 1px solid var(--border);
  color: var(--slate-600);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  line-height: 1;
}

.mobile-close-btn:hover {
  background: var(--slate-200);
  color: var(--slate-800);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 1rem;
  flex: 1;
}

.mobile-nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate-600);
  padding: 0.7rem 0.85rem;
  display: block;
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
  background: var(--blue-50);
  color: var(--primary);
}

.mobile-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate-600);
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  text-align: left;
  transition: all var(--transition-fast);
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-accordion-header:hover {
  background: var(--blue-50);
  color: var(--primary);
}

.mobile-accordion-header .accordion-arrow {
  transition: transform 250ms ease;
  opacity: 0.5;
}

.mobile-accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--primary);
}

.mobile-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease;
  margin: 0 0.5rem;
}

.mobile-accordion-item.active .mobile-accordion-body {
  max-height: 1200px;
  padding: 0.5rem 0.5rem 0.75rem;
}

.mobile-service-group {
  margin-bottom: 0.75rem;
}

.mobile-service-group:last-child {
  margin-bottom: 0;
}

.mobile-service-group h4 {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1.2px;
  margin-bottom: 0.35rem;
  padding-left: 0.5rem;
}

.mobile-service-link {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate-500);
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.mobile-service-link:hover {
  background: var(--blue-50);
  color: var(--primary);
}

.mobile-drawer-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-social-bar {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

/* ---- Mobile Overlay ---- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 250ms ease;
  z-index: 1004;
}

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


/* --------------------------------------------------------------------------
   2. HERO SECTION
   -------------------------------------------------------------------------- */
/* ==========================================================================
   HERO SECTION - SKY BLUE GLASSY THEME
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 7rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Sky Blue Gradient Background */
.hero-sky-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    #e0f2fe 0%, 
    #bae6fd 15%, 
    #e0f7fa 30%, 
    #f0f9ff 45%, 
    #e0f2fe 60%, 
    #cce5ff 75%, 
    #e0f7fa 90%, 
    #f0f9ff 100%
  );
  z-index: 0;
}

/* Glassmorphic Orbs */
.hero-glass-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-glass-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, rgba(14, 165, 233, 0) 70%);
  top: -100px;
  left: -100px;
  animation: heroOrb1 16s ease-in-out infinite alternate;
}

.hero-glass-orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0) 70%);
  bottom: -150px;
  right: -100px;
  animation: heroOrb2 18s ease-in-out infinite alternate;
}

.hero-glass-orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, rgba(56, 189, 248, 0) 70%);
  top: 30%;
  left: 40%;
  animation: heroOrb3 14s ease-in-out infinite alternate;
}

.hero-glass-orb-4 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.15) 0%, rgba(125, 211, 252, 0) 70%);
  top: 10%;
  right: 20%;
  animation: heroOrb4 12s ease-in-out infinite alternate;
}

@keyframes heroOrb1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.15); }
}

@keyframes heroOrb2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -40px) scale(1.1); }
}

@keyframes heroOrb3 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  100% { transform: translate(20px, -20px) scale(1.2); opacity: 1; }
}

@keyframes heroOrb4 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-20px, 30px) scale(1.15); }
}

/* Glassmorphic Panels */
.hero-glass-panel {
  position: absolute;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.08);
  pointer-events: none;
  z-index: 1;
}

.hero-glass-panel-1 {
  width: 400px;
  height: 300px;
  top: 15%;
  right: -50px;
  transform: rotate(-5deg);
  animation: heroPanel1 20s ease-in-out infinite alternate;
}

.hero-glass-panel-2 {
  width: 300px;
  height: 200px;
  bottom: 10%;
  left: 5%;
  transform: rotate(3deg);
  animation: heroPanel2 18s ease-in-out infinite alternate;
}

@keyframes heroPanel1 {
  0% { transform: rotate(-5deg) translate(0, 0); opacity: 0.6; }
  100% { transform: rotate(-3deg) translate(15px, 10px); opacity: 0.8; }
}

@keyframes heroPanel2 {
  0% { transform: rotate(3deg) translate(0, 0); opacity: 0.5; }
  100% { transform: rotate(5deg) translate(-10px, 15px); opacity: 0.7; }
}

/* Grid Pattern */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-size: 80px 80px;
  background-image:
    linear-gradient(to right, rgba(14, 165, 233, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14, 165, 233, 0.04) 1px, transparent 1px);
  z-index: 1;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 70%);
}

/* Canvas for Cinematic Animation */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Light Rays */
.hero-light-ray {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

.hero-light-ray-1 {
  width: 2px;
  height: 300px;
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.3) 0%, rgba(14, 165, 233, 0) 100%);
  top: 0;
  left: 30%;
  transform: rotate(15deg);
  animation: lightRay1 8s ease-in-out infinite;
}

.hero-light-ray-2 {
  width: 1.5px;
  height: 250px;
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.25) 0%, rgba(6, 182, 212, 0) 100%);
  top: 5%;
  left: 60%;
  transform: rotate(-10deg);
  animation: lightRay2 10s ease-in-out infinite;
}

.hero-light-ray-3 {
  width: 2px;
  height: 200px;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.2) 0%, rgba(56, 189, 248, 0) 100%);
  top: 10%;
  right: 25%;
  transform: rotate(8deg);
  animation: lightRay3 12s ease-in-out infinite;
}

@keyframes lightRay1 {
  0%, 100% { opacity: 0.3; transform: rotate(15deg) translateY(0); }
  50% { opacity: 0.6; transform: rotate(15deg) translateY(30px); }
}

@keyframes lightRay2 {
  0%, 100% { opacity: 0.2; transform: rotate(-10deg) translateY(0); }
  50% { opacity: 0.5; transform: rotate(-10deg) translateY(25px); }
}

@keyframes lightRay3 {
  0%, 100% { opacity: 0.25; transform: rotate(8deg) translateY(0); }
  50% { opacity: 0.45; transform: rotate(8deg) translateY(20px); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(14, 165, 233, 0.2);
  color: #0369a1;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  width: fit-content;
  box-shadow: 0 2px 12px rgba(14, 165, 233, 0.1);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.3rem);
  font-weight: 900;
  line-height: 1.12;
  color: #0c4a6e;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero-title-highlight {
  display: block;
  background: linear-gradient(135deg, #0369a1 0%, #0891b2 50%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Rotating Dynamic Service Box */
.rotating-service-box {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 14px;
  padding: 0.9rem 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.08);
}

.rotating-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #0369a1;
  text-transform: uppercase;
}

.rotating-text-frame {
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.rotating-service-item {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-weight: 900;
  letter-spacing: 1px;
  color: #0369a1;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-description {
  font-size: 1.02rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.hero-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1rem;
  margin-bottom: 2rem;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #475569;
  font-weight: 500;
}

.pillar-item svg {
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.services-drop-box {
  margin-top: 1rem;
  text-align: center;
}

.services-drop-box-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 10px;
  color: #0369a1;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-base);
}

.services-drop-box-link:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(14, 165, 233, 0.3);
  color: #075985;
  transform: translateY(-2px);
}

.services-arrow {
  transition: transform var(--transition-fast);
}

.services-drop-box-link:hover .services-arrow {
  transform: translateX(4px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(14, 165, 233, 0.15);
}

.stat-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 0.9rem;
  box-shadow: 0 2px 12px rgba(14, 165, 233, 0.06);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.65);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.12);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: #0369a1;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}

/* 3. Hero Visual Composition - Dashboard */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.hero-visual-card {
  width: 100%;
  max-width: 520px;
  position: relative;
}

/* Dashboard Container */
.hero-dashboard {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: 
    0 8px 32px rgba(14, 165, 233, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  animation: heroFloat 8s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* Dashboard Header */
.dash-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.dash-dots {
  display: flex;
  gap: 6px;
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash-dot--red { background: #ef4444; }
.dash-dot--yellow { background: #eab308; }
.dash-dot--green { background: #22c55e; }

.dash-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  flex: 1;
}

.dash-live {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #16a34a;
}

.dash-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}

/* Dashboard Body */
.dash-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Chart Card */
.dash-chart-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(14, 165, 233, 0.1);
  border-radius: 12px;
  padding: 1rem;
}

.dash-chart-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dash-chart-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: #0ea5e9;
  margin: 0.25rem 0 0.5rem;
}

.dash-chart-svg {
  width: 100%;
  height: 50px;
}

.dash-chart-line {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawLine 2s ease-out forwards;
}

.dash-chart-area {
  opacity: 0;
  animation: fadeInArea 2s ease-out 0.5s forwards;
}

.dash-chart-dot {
  opacity: 0;
  animation: fadeInDot 0.5s ease-out 2s forwards;
}

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

@keyframes fadeInArea {
  to { opacity: 1; }
}

@keyframes fadeInDot {
  to { opacity: 1; }
}

/* Metrics Row */
.dash-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.dash-metric {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(14, 165, 233, 0.1);
  border-radius: 10px;
  padding: 0.75rem;
  text-align: center;
}

.dash-metric-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0369a1;
}

.dash-metric-label {
  display: block;
  font-size: 0.68rem;
  color: #94a3b8;
  font-weight: 600;
  margin-top: 0.15rem;
}

/* Bar Chart */
.dash-bars {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.dash-bar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dash-bar-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  width: 40px;
  text-align: right;
}

.dash-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.dash-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4);
  border-radius: 999px;
  animation: barGrow 1.5s ease-out forwards;
  transform-origin: left;
}

@keyframes barGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Campaign Cards */
.dash-campaigns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.dash-campaign-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(14, 165, 233, 0.1);
  border-radius: 10px;
  padding: 0.7rem;
  transition: all 0.3s ease;
}

.dash-campaign-card:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
}

.dash-campaign-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(14, 165, 233, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-campaign-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
}

.dash-campaign-stat {
  font-size: 0.68rem;
  font-weight: 600;
  color: #16a34a;
}

/* Dashboard Inline Badges */
.dash-inline-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 10px;
  padding: 0.5rem 0.85rem;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.08);
  width: fit-content;
}

.dash-inline-badge--top {
  align-self: flex-end;
  margin-bottom: 0.25rem;
}

.dash-inline-badge--bottom {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.float-badge-title {
  font-size: 0.65rem;
  font-weight: 700;
  color: #475569;
  line-height: 1.2;
}

.float-badge-val {
  font-size: 0.6rem;
  font-weight: 800;
  color: #0369a1;
  line-height: 1.2;
}

/* --------------------------------------------------------------------------
   4. PLATFORM MARQUEE
   -------------------------------------------------------------------------- */
.platform-marquee-section {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
  position: relative;
  overflow: hidden;
}

.marquee-header-strip {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--slate-500);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.marquee-track-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: scrollMarquee 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}

.marquee-item:hover {
  background: var(--blue-50);
  border-color: var(--blue-200);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.platform-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--slate-700);
}

.marquee-divider {
  color: var(--primary);
  font-size: 0.8rem;
  opacity: 0.4;
}


/* --------------------------------------------------------------------------
   5 & 6. ABOUT US & GLOBAL NETWORK
   -------------------------------------------------------------------------- */
.about-section {
  position: relative;
  padding: var(--section-py) 0;
  background: var(--bg-body);
  overflow: hidden;
}

.about-bg-network {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.globe-canvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.15;
}

.globe-overlay-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, var(--bg-body) 90%);
}

.about-container {
  position: relative;
  z-index: 2;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.about-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.25rem;
  transition: all var(--transition-base);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.about-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition-base);
}

.about-card:hover .about-card-icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.05) rotate(3deg);
}

.about-card:hover .about-card-icon svg {
  stroke: var(--text-on-primary);
}

.about-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
  letter-spacing: 0.3px;
}

.about-card-text {
  font-size: 0.92rem;
  color: var(--slate-600);
  line-height: 1.7;
}

.card-glow-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
  pointer-events: none;
}


/* --------------------------------------------------------------------------
   7 & 8. CAREERS & JOB CARDS
   -------------------------------------------------------------------------- */
.careers-section {
  padding: var(--section-py) 0;
  background: var(--bg-section);
  position: relative;
}

/* Why Work With Us */
.why-work-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-md);
}

.why-work-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.why-badge-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--blue-700);
  margin-bottom: 0.5rem;
}

.why-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.why-intro {
  color: var(--slate-600);
  max-width: 680px;
  margin: 0 auto;
  font-size: 0.98rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all var(--transition-fast);
}

.why-item:hover {
  background: var(--blue-50);
  border-color: var(--blue-200);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.why-item.full-span-item {
  grid-column: span 2;
}

.why-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.2rem;
}

.why-text p {
  font-size: 0.85rem;
  color: var(--slate-600);
}

.why-cta-wrap {
  text-align: center;
}

/* Job Cards Area */
.job-cards-container {
  margin-top: 2rem;
}

.job-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}

.job-list-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-heading);
}

.job-filter-badge {
  font-size: 0.82rem;
  color: var(--blue-700);
  font-weight: 600;
  background: var(--blue-50);
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--blue-100);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.job-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-base);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.job-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg);
}

.job-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.job-type-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  background: var(--blue-50);
  color: var(--blue-700);
  border: 1px solid var(--blue-100);
}

.job-location {
  font-size: 0.78rem;
  color: var(--slate-500);
}

.job-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.job-desc {
  font-size: 0.88rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.skill-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: var(--slate-100);
  border: 1px solid var(--border);
  color: var(--slate-600);
}

.btn-apply-job {
  width: 100%;
  padding: 0.7rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 10px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  color: var(--blue-700);
  transition: all var(--transition-fast);
}

.job-card:hover .btn-apply-job,
.btn-apply-job:hover {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-500) 100%);
  border-color: var(--blue-500);
  color: var(--text-on-primary);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.25);
}


/* --------------------------------------------------------------------------
   9 & 10. CONTACT US & LOCATION
   -------------------------------------------------------------------------- */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--bg-body);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

/* Left: Contact Info Column */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.info-card-header p {
  color: var(--slate-600);
  font-size: 0.95rem;
}

.contact-info-block {
  display: flex;
  gap: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xs);
}

.contact-info-block:hover {
  border-color: var(--blue-200);
  background: var(--blue-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-label-mini {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--blue-700);
  text-transform: uppercase;
}

.info-tagline {
  font-size: 0.85rem;
  color: var(--slate-600);
  margin-bottom: 0.35rem;
}

.info-main-link {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  transition: color var(--transition-fast);
}

.info-main-link:hover {
  color: var(--primary);
}

.info-address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.6;
}

.business-hours-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-700);
}

/* Right: Contact Form Column */
.contact-form-col {
  position: relative;
}

.form-container-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-header-wrap {
  margin-bottom: 2rem;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
}

.form-desc {
  font-size: 0.88rem;
  color: var(--slate-600);
}

.form-group {
  margin-bottom: 1.25rem;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 0.45rem;
}

.form-label .required {
  color: var(--primary);
}

.input-wrapper {
  position: relative;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-section);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
  color: var(--text-heading);
  transition: all var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate-400);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input.is-invalid,
.form-select.is-invalid {
  border-color: var(--primary);
  background: var(--blue-50);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-wrapper::after {
  content: '\25BC';
  font-size: 0.65rem;
  color: var(--slate-400);
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Phone Input Group */
.phone-input-group {
  display: flex;
  align-items: stretch;
  background: var(--bg-section);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.phone-input-group:focus-within {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.phone-code-select {
  width: auto;
  min-width: 68px;
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  border-radius: 0;
  padding: 0.8rem 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-heading);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 18px;
  flex-shrink: 0;
}

.phone-code-select:focus {
  outline: none;
  background-color: var(--slate-100);
}

.phone-input {
  border: none;
  border-radius: 0;
  background: transparent;
  flex: 1;
  min-width: 0;
}

.phone-input:focus {
  outline: none;
  background: transparent;
  box-shadow: none;
}

.form-select optgroup {
  background: var(--bg-card-solid);
  color: var(--blue-700);
  font-weight: 700;
}

.form-select option {
  background: var(--bg-card-solid);
  color: var(--text-heading);
  font-weight: 500;
}

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

.form-error {
  display: none;
  font-size: 0.78rem;
  color: var(--primary);
  margin-top: 0.35rem;
  font-weight: 600;
}

.form-error.show {
  display: block;
}

.form-submit-wrap {
  margin-top: 1.5rem;
}

.btn-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--text-on-primary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn.loading .btn-text {
  display: none;
}

.btn.loading .btn-loader {
  display: inline-block;
}

/* Success Box */
.form-success-box {
  display: none;
  margin-top: 1.5rem;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 12px;
  padding: 1.25rem;
  gap: 1rem;
  align-items: flex-start;
}

.form-success-box.show {
  display: flex;
}

.success-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-content h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}

.success-content p {
  font-size: 0.84rem;
  color: var(--slate-600);
}

/* 10. Location Map Wrapper */
/* --------------------------------------------------------------------------
   LOCATION SECTION
   -------------------------------------------------------------------------- */
.location-section {
  padding: var(--section-py) 0;
  background: var(--bg-section);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* --- Location Info Column --- */
.location-info-col {
  padding-top: 1rem;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  border: 1px solid var(--blue-100);
}

.location-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.location-desc {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

/* Address Card */
.location-address-card {
  display: flex;
  gap: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.75rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.location-address-card:hover {
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.08);
  transform: translateY(-2px);
}

.address-icon-wrap {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--blue-50);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue-100);
}

.address-icon-wrap--alt {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(37, 99, 235, 0.08));
  border-color: rgba(6, 182, 212, 0.2);
}

.address-icon-wrap--alt svg {
  stroke: #0891b2;
}

.address-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.address-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--blue-600);
  text-transform: uppercase;
}

.address-full {
  font-style: normal;
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.7;
  font-weight: 500;
}

/* Get Directions Button */
.location-btn-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-get-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
  border: none;
  cursor: pointer;
}

.btn-get-directions:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.35);
  background: linear-gradient(135deg, var(--blue-700), #1d4ed8);
}

.btn-get-directions--outline {
  background: #ffffff;
  color: var(--blue-700);
  border: 1.5px solid var(--blue-200);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.btn-get-directions--outline:hover {
  background: var(--blue-50);
  border-color: var(--blue-400);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
}

/* --- Map Card Column --- */
.location-map-col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.map-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.map-card:hover {
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.1);
  transform: translateY(-3px);
}

.map-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--blue-50);
}

.map-card-title-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.map-dot {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-500));
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
  animation: mapPulse 2s ease-in-out infinite;
}

@keyframes mapPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.08); }
}

.map-dot--alt {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.15);
}

.map-dot--alt {
  animation: mapPulseAlt 2s ease-in-out infinite;
}

@keyframes mapPulseAlt {
  0%, 100% { box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(6, 182, 212, 0.08); }
}

.map-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
}

.map-card-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.1rem;
}

.map-open-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--blue-600);
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.map-open-link:hover {
  background: var(--blue-50);
  border-color: var(--blue-200);
  color: var(--blue-700);
  transform: translateY(-1px);
}

.map-embed-wrap {
  width: 100%;
  height: 340px;
  position: relative;
  background: var(--blue-50);
}

.map-embed-wrap iframe {
  display: block;
  filter: grayscale(0.08) contrast(1.02);
}

.map-card-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-top: 1px solid var(--border);
  background: #ffffff;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}


/* --------------------------------------------------------------------------
   SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-section {
  padding: var(--section-py) 0;
  background: var(--bg-section);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-500));
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

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

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  margin-bottom: 1.25rem;
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.08);
}

.service-card:hover .service-icon svg {
  stroke: var(--text-on-primary);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--slate-600);
  line-height: 1.5;
}


/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  border-top: 1px solid var(--navy-700);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.25fr 1.25fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #ffffff;
  line-height: 1;
}

.footer-brand-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--blue-400);
  margin-top: 0.2rem;
}

.footer-company-desc {
  font-size: 0.88rem;
  color: var(--slate-400);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.footer-social-links {
  display: flex;
  gap: 0.65rem;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 1.35rem;
  position: relative;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--slate-400);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--blue-400);
  padding-left: 4px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: var(--slate-400);
}

.footer-contact-list svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom-bar {
  padding-top: 2rem;
  border-top: 1px solid var(--navy-700);
  text-align: center;
}

.copyright-text {
  font-size: 0.84rem;
  color: var(--slate-500);
}


/* --------------------------------------------------------------------------
   MODALS
   -------------------------------------------------------------------------- */
.agency-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-base);
}

.agency-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-2xl);
  z-index: 10;
  transform: scale(0.95) translateY(20px);
  transition: all var(--transition-base);
}

.agency-modal.open .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  line-height: 1;
  color: var(--slate-500);
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.modal-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--blue-700);
  text-transform: uppercase;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

.modal-sub {
  font-size: 0.88rem;
  color: var(--slate-600);
}

.modal-body {
  margin-top: 1.5rem;
  font-size: 0.94rem;
  color: var(--slate-700);
  line-height: 1.7;
}

.modal-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.modal-feat-item {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}

.modal-feat-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}

.modal-feat-item p {
  font-size: 0.84rem;
  color: var(--slate-600);
  line-height: 1.5;
}

.modal-footer {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

/* -------------------- Back to Top Button -------------------- */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-on-primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--transition-base);
  z-index: 990;
}

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

.back-to-top:hover {
  background: var(--blue-700);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}


/* --------------------------------------------------------------------------
   PARTICLES & CINEMATIC ANIMATIONS
   -------------------------------------------------------------------------- */
.particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.cinematic-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
  pointer-events: none;
  z-index: 1;
}

.cinematic-line-1 {
  width: 300px;
  top: 20%;
  left: 10%;
  animation: cinematicSweep 8s ease-in-out infinite;
}

.cinematic-line-2 {
  width: 200px;
  top: 60%;
  right: 15%;
  animation: cinematicSweep 10s ease-in-out infinite reverse;
}

.cinematic-line-3 {
  width: 250px;
  bottom: 25%;
  left: 40%;
  animation: cinematicSweep 12s ease-in-out infinite;
}

@keyframes cinematicSweep {
  0% { transform: translateX(-100px); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateX(100px); opacity: 0; }
}

.section-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
}

.section-glow-blue {
  background: rgba(37, 99, 235, 0.04);
}

.section-glow-cyan {
  background: rgba(8, 145, 178, 0.03);
}


/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN BREAKPOINTS
   -------------------------------------------------------------------------- */

/* Large Tablets & Small Laptops (max-width: 1100px) */
@media (max-width: 1100px) {
  .mega-menu {
    width: 95vw;
  }

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

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

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

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-social-icons {
    display: none;
  }

  .nav-container {
    padding: 0.65rem 1.25rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-pillars {
    text-align: left;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-stats {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .why-item.full-span-item {
    grid-column: span 1;
  }

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

  .location-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .location-info-col {
    order: 1;
  }

  .location-map-col {
    order: 2;
  }

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

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

/* Mobile Devices (max-width: 640px) */
@media (max-width: 640px) {
  :root {
    --section-py: 4rem;
  }

  .nav-container {
    padding: 0.6rem 1rem;
  }

  .logo-img {
    height: 34px;
  }

  .mobile-nav-drawer {
    max-width: 100%;
  }

  .hero-section {
    padding-top: 6.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-pillars {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .floating-badge {
    position: static;
    margin-top: 1rem;
  }

  .hero-image-frame {
    height: 320px;
  }

  .hero-image {
    height: 320px;
  }

  .about-card {
    padding: 1.75rem;
  }

  .why-work-card {
    padding: 1.75rem;
  }

  .form-container-card {
    padding: 1.5rem;
  }

  .location-address-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }

  .address-icon-wrap {
    width: 48px;
    height: 48px;
  }

  .location-title {
    font-size: 1.5rem;
  }

  .map-embed-wrap {
    height: 260px;
  }

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

  .modal-dialog {
    padding: 1.5rem;
  }

  .nav-social-icons {
    display: none;
  }

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

/* ==========================================================================
   GROWTH APPROACH SECTION
   ========================================================================== */
.growth-approach-section {
  padding: 12rem 0 8rem;
  background: var(--bg-section);
  overflow: hidden;
}

.growth-approach-header {
  text-align: center;
  margin-bottom: 5rem;
}

.growth-approach-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #0ea5e9;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.growth-approach-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
  color: #0c4a6e;
  margin-bottom: 0.5rem;
}

.growth-approach-heading .gradient-text {
  background: linear-gradient(135deg, #0369a1 0%, #0891b2 50%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.growth-approach-desc {
  font-size: 1.15rem;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Growth Approach Grid */
.growth-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1200px) {
  .growth-approach-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 968px) {
  .growth-approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .growth-approach-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Growth Approach Cards */
.growth-approach-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.08);
}

.growth-approach-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #0891b2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.growth-approach-card:hover::before {
  opacity: 1;
}

.growth-approach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(14, 165, 233, 0.12);
}

.growth-approach-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.08);
  border-radius: 16px;
}

.growth-approach-icon svg {
  width: 32px;
  height: 32px;
  stroke: #0ea5e9;
}

.growth-approach-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #0c4a6e;
  margin-bottom: 0.75rem;
}

.growth-approach-card-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
}

/* Subtle background animation data flow */
.growth-approach-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 70%);
}
