/* ============================================
   MB RECRUITMENT - PREMIUM STYLE CSS
   Industrial & Corporate Recruitment Consultancy
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Colors */
  --primary-color: #6D94C5;
  --primary-dark: #5A82B5;
  --primary-light: #8AABCE;
  --accent-color: #E8DFCA;
  --accent-dark: #D4C9B3;
  --accent-glow: rgba(109, 148, 197, 0.15);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #6D94C5 0%, #5A82B5 100%);
  --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #162447 100%);
  --gradient-aurora-1: linear-gradient(135deg, rgba(109, 148, 197, 0.25) 0%, rgba(90, 130, 181, 0.2) 100%);
  --gradient-aurora-2: linear-gradient(135deg, rgba(232, 223, 202, 0.15) 0%, rgba(212, 201, 179, 0.15) 100%);
  
  /* Backgrounds */
  --bg-light: #F8F9FD;
  --bg-white: #FFFFFF;
  --bg-secondary: #EEF2F7;
  --bg-dark: #0F172A;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --bg-glass-dark: rgba(15, 23, 42, 0.8);
  
  /* Text */
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-max-width: 1280px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none !important;
  border: none;
}

*:focus {
  outline: none !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

section {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 16px;
  color: var(--text-secondary);
}

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

ul {
  list-style: none;
}

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

/* ============================================
   AURORA BACKGROUND EFFECTS
   ============================================ */
.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.6;
}

.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  mix-blend-mode: multiply;
  animation: aurora-float 20s ease-in-out infinite;
}

.aurora-orb-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(109, 148, 197, 0.3) 0%, rgba(90, 130, 181, 0.25) 100%);
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.aurora-orb-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(232, 223, 202, 0.2) 0%, rgba(212, 201, 179, 0.2) 100%);
  top: 40%;
  right: -100px;
  animation-delay: 7s;
}

.aurora-orb-3 {
  width: 700px;
  height: 700px;
  background: linear-gradient(135deg, rgba(109, 148, 197, 0.25) 0%, rgba(90, 130, 181, 0.2) 100%);
  bottom: -250px;
  left: 20%;
  animation-delay: 14s;
}

@keyframes aurora-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

/* ============================================
   GLASSMORPHISM
   ============================================ */
.glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(238, 244, 252, 0.95) 100%) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(109, 148, 197, 0.15) !important;
  box-shadow: 0 8px 30px rgba(109, 148, 197, 0.05) !important;
}

/* Exception: Industry cards should not have glass background over images */
.industry-card.glass {
  background: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(109, 148, 197, 0.2) !important;
  box-shadow: 0 8px 30px rgba(109, 148, 197, 0.08) !important;
}

.glass-dark {
  background: var(--bg-glass-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none !important;
  text-decoration: none;
  position: relative;
}

.btn:focus,
.btn:active {
  outline: none !important;
}

.btn-primary {
  background: linear-gradient(135deg, #6D94C5 0%, #5A82B5 100%);
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(109, 148, 197, 0.4);
  border: none !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5A82B5 0%, #4A72A5 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(109, 148, 197, 0.6);
  color: #FFFFFF !important;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(109, 148, 197, 0.4);
}

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

.btn-outline:hover {
  background: var(--primary-color);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(109, 148, 197, 0.3);
}

.btn-outline:active {
  transform: translateY(0);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--primary-dark) !important;
  border: 2px solid rgba(109, 148, 197, 0.2) !important;
  font-weight: 600;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 1);
  border-color: var(--primary-color) !important;
  color: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(109, 148, 197, 0.25);
}

.btn-glass:active {
  transform: translateY(0);
}

.btn-outline-light {
  background: transparent;
  color: #FFFFFF !important;
  border: 2px solid var(--text-white) !important;
}

.btn-outline-light:hover {
  background: var(--text-white);
  color: var(--text-primary) !important;
  transform: translateY(-2px);
}

.btn-outline-light:active {
  transform: translateY(0);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 10px;
}

.btn-block {
  width: 100%;
}

/* Prevent text color inheritance */
.btn i {
  color: inherit !important;
}

.btn-outline-light:hover {
  background: var(--text-white);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: 8px;
}

.btn-block {
  width: 100%;
}

/* ============================================
   SECTION HEADERS & SUB-TAGS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(109, 148, 197, 0.12);
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  margin-bottom: 0;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   SECTION 01 — PREMIUM STICKY NAVBAR
   ============================================ */

/* — Base navbar shell — */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  /* Glassmorphism by default with blur and subtle bottom border */
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid rgba(37, 99, 235, 0.1) !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scrolled state (slightly more solid and compact) */
.navbar.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(37, 99, 235, 0.15) !important;
}

/* — Container row (Max Width: 1400px) — */
.navbar .container {
  max-width: 1400px !important;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* ——— LOGO ——— */
.navbar-brand {
  flex: 0 0 220px; /* Fixed width as requested */
}

.navbar-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  width: 100%;
}

.navbar-brand svg {
  border-radius: 11px;
  filter: drop-shadow(0 4px 10px rgba(37, 99, 235, 0.2));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.35s ease;
}

.navbar-brand .logo:hover svg {
  transform: scale(1.06) rotate(-3deg);
  filter: drop-shadow(0 6px 16px rgba(37, 99, 235, 0.35));
}

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

.logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.3px;
  color: #0F172A; /* Dark */
  transition: color 0.3s ease;
}

.navbar-brand .logo:hover .logo-name {
  color: #2563EB; /* Primary */
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  color: #1E40AF; /* Secondary */
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 1px;
}

/* ——— NAV LINKS (Centered) ——— */
.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 32px; /* Navigation gap: 32px */
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 6px 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: #334155; /* Text */
  transition: color 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.1px;
  text-decoration: none;
}

/* Hover & Active Underline Animation */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563EB, #1E40AF);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover {
  color: #2563EB;
}

.nav-link.active {
  color: #2563EB;
  font-weight: 600;
}

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

/* ——— CTA BUTTONS (Right side) ——— */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px; /* Button gap: 12px */
  flex-shrink: 0;
}

/* Outline button: Request Talent */
.btn-nav-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 12px; /* Rounded corners: 12px */
  border: 2px solid #2563EB !important;
  color: #2563EB !important;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-nav-outline:hover {
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}

.btn-nav-outline:active {
  transform: translateY(0);
}

/* Primary Gradient Button: Schedule Consultation */
.btn-nav-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 12px; /* Rounded corners: 12px */
  background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%) !important;
  color: #FFFFFF !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

/* Glow Effect */
.btn-nav-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: blur(10px);
}

.btn-nav-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.btn-nav-gradient:hover::before {
  opacity: 0.8;
}

.btn-nav-gradient:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* ——— MOBILE HAMBURGER ——— */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.08);
  border: 1.5px solid rgba(37, 99, 235, 0.15) !important;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
  outline: none !important;
}

.mobile-toggle:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3) !important;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #2563EB;
  border-radius: 99px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.2s ease,
              width 0.25s ease;
}

/* X state */
.mobile-toggle.active {
  background: rgba(37, 99, 235, 0.15);
  border-color: #2563EB !important;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ——— MOBILE OVERLAY ——— */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ============================================
   SECTION 02 — HERO SECTION
   ============================================ */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
}

.hero-content {
  max-width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(109, 148, 197, 0.1);
  border: 1px solid rgba(109, 148, 197, 0.2) !important;
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title-line {
  display: block;
}

.hero-title .gradient-text {
  display: inline-block;
  white-space: nowrap;
}

@media (min-width: 1201px) {
  .hero-title-line {
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .hero-title .gradient-text {
    white-space: normal;
  }
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 12px;
  font-weight: 500;
}

.hero-description {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hero-stats .stat-card {
  padding: 16px;
  border-radius: 16px;
  text-align: center;
}

.stat-icon {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.stat-value {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.stat-suffix {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 4px;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 91px;
}

.hero-img-wrapper {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
  border: none !important;
  background: #f0f0f0;
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: none !important;
  display: block;
}

.hero-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0) 50%, rgba(15, 23, 42, 0.3) 100%);
  pointer-events: none;
}

.hero-badge-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}

.badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6D94C5 0%, #5A82B5 100%);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: none !important;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(109, 148, 197, 0.3);
}

.badge-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text-primary);
}

.badge-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
  line-height: 1.2;
}

/* ============================================
   SECTION 03 — TRUSTED BY LEADING COMPANIES
   ============================================ */
.trusted-companies {
  padding: 80px 0;
  border-top: 1px solid rgba(109, 148, 197, 0.15);
  border-bottom: 1px solid rgba(109, 148, 197, 0.15);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 253, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 10px 40px rgba(109, 148, 197, 0.04), inset 0 -10px 40px rgba(109, 148, 197, 0.04);
}

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

.logo-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
  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);
}

.logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 80px;
}

.logo-item {
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-height: 42px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  filter: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-item:hover img {
  opacity: 1;
  transform: scale(1.08);
}

/* ============================================
   SECTION 04 — WHY COMPANIES TRUST MB RECRUITMENT
   ============================================ */
.why-trust {
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-secondary) 100%);
  padding: 50px 0;
  position: relative;
}

.why-trust .section-header h2 {
  color: var(--text-primary);
}

.why-trust .section-header p {
  color: var(--text-secondary);
}

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

.trust-card {
  position: relative;
  padding: 45px 35px 35px;
  border-radius: 24px;
  background: var(--bg-white);
  border: 1px solid rgba(109, 148, 197, 0.12) !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Gradient accent strip on hover */
.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

.trust-card:hover {
  transform: translateY(-8px);
  border-color: rgba(109, 148, 197, 0.35) !important;
  box-shadow: 0 20px 45px rgba(109, 148, 197, 0.14);
}

.trust-icon {
  width: 58px;
  height: 58px;
  background: rgba(109, 148, 197, 0.08);
  color: var(--primary-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-card:hover .trust-icon {
  background: var(--gradient-primary);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(109, 148, 197, 0.28);
}

.trust-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}

.trust-card p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0;
  color: var(--text-secondary);
}

/* ============================================
   SECTION 05 — ABOUT MB RECRUITMENT
   ============================================ */
.about {
  background: transparent;
}

.about-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 35px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

/* Specific styling, borders, and icons for each pillar */
.about-pillars .pillar-card:nth-child(1) {
  border-left: 4px solid #DD6B20 !important;
}
.about-pillars .pillar-card:nth-child(1) .pillar-icon {
  background: rgba(221, 107, 32, 0.1);
  color: #DD6B20;
}

.about-pillars .pillar-card:nth-child(2) {
  border-left: 4px solid #0D9488 !important;
}
.about-pillars .pillar-card:nth-child(2) .pillar-icon {
  background: rgba(13, 148, 136, 0.1);
  color: #0D9488;
}

.about-pillars .pillar-card:nth-child(3) {
  border-left: 4px solid #3B82F6 !important;
}
.about-pillars .pillar-card:nth-child(3) .pillar-icon {
  background: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
}

/* Micro-interaction: card shift and icon pop on hover */
.about-pillars .pillar-card:hover {
  transform: translateX(6px) translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(109, 148, 197, 0.1) !important;
}

.about-pillars .pillar-card:hover .pillar-icon {
  transform: scale(1.1);
}

.pillar-card h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.pillar-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-secondary);
}

.about-image {
  position: relative;
}

.about-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.badge-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--primary-color);
  line-height: 1;
}

.badge-number span {
  font-size: 1.5rem;
}

.badge-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ============================================
   SECTION 06 — RECRUITMENT SOLUTIONS
   ============================================ */
.solutions {
  background: transparent;
}

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

.solution-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(109, 148, 197, 0.12);
}

.solution-icon {
  width: 50px;
  height: 50px;
  color: var(--primary-color);
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.solution-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.solution-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
}

.solution-link i {
  transition: transform var(--transition-base);
}

.solution-card:hover .solution-link i {
  transform: translateX(4px);
}

/* ============================================
   SECTION 07 — INDUSTRIES WE SERVE
   ============================================ */
   .industries {
  position: relative;
  overflow: hidden;
  padding: 50px 0 !important;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
  border-top: 1px solid rgba(109, 148, 197, 0.12);
  border-bottom: 1px solid rgba(109, 148, 197, 0.12);
}

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

.industry-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  cursor: default;
  transition: all var(--transition-base);
  background: transparent;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
  border-color: rgba(109, 148, 197, 0.3) !important;
}

.industry-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(109, 148, 197, 0.1) 0%, rgba(90, 130, 181, 0.05) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
  transition: background var(--transition-base);
}

.industry-card:hover .industry-img::before {
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.4) 100%);
}

.industry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform var(--transition-slow), opacity var(--transition-base);
  display: block;
  background: var(--bg-secondary);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Ensure images load smoothly */
.industry-img img {
  opacity: 1;
}

.industry-img img[src=""],
.industry-img img:not([src]) {
  opacity: 0;
  background: linear-gradient(135deg, rgba(109, 148, 197, 0.2) 0%, rgba(90, 130, 181, 0.1) 100%);
}

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

.industry-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 40%, rgba(15, 23, 42, 0) 100%);
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 50%;
  z-index: 2;
  transition: all var(--transition-base);
}

.industry-icon {
  font-size: 1.5rem;
  color: var(--primary-light);
  margin-bottom: 12px;
  transition: all var(--transition-base);
}

.industry-card:hover .industry-icon {
  transform: translateY(-4px);
  color: var(--accent-color);
}

.industry-content h3 {
  font-size: 1.15rem;
  color: var(--text-white);
  margin-bottom: 6px;
}

.industry-content p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all var(--transition-base);
}

.industry-card:hover .industry-content p {
  max-height: 60px;
  opacity: 1;
  margin-top: 4px;
}

/* ============================================
   SECTION 08 — POSITIONS WE RECRUIT FOR
   ============================================ */
.positions {
  background: transparent;
}

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

.position-category {
  padding: 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}

.position-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(109, 148, 197, 0.15);
}

.position-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(109, 148, 197, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.position-header h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.position-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.position-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.position-list li i {
  color: var(--primary-color);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ============================================
   SECTION 09 — RECRUITMENT PROCESS (FLOW DESIGN)
   ============================================ */
.process {
  background: linear-gradient(180deg, rgba(109, 148, 197, 0.02) 0%, transparent 50%, rgba(109, 148, 197, 0.02) 100%);
  padding: 50px 0;
  overflow: hidden;
}

.process-flow {
  max-width: 1200px;
  margin: 60px auto 0;
  position: relative;
}

/* Row Container */
.process-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 0;
  position: relative;
}

.process-row.reverse {
  margin-top: 0;
}

/* Process Step Card */
.process-step {
  flex: 0 0 280px;
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 2px solid rgba(109, 148, 197, 0.15);
  border-radius: 20px;
  padding: 40px 24px 32px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  z-index: 2;
}

.process-step:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 60px rgba(109, 148, 197, 0.25);
  border-color: rgba(109, 148, 197, 0.4);
  z-index: 10;
}

/* Colored Triangle Arrow on Card */
.step-arrow {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 25px solid #667eea;
  filter: drop-shadow(0 -4px 8px rgba(102, 126, 234, 0.3));
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-arrow.reverse {
  top: auto;
  bottom: -20px;
  border-bottom: none;
  border-top: 25px solid #667eea;
  filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
}

.process-step[data-step="1"] .step-arrow { border-bottom-color: #667eea; }
.process-step[data-step="2"] .step-arrow { border-bottom-color: #11998e; }
.process-step[data-step="3"] .step-arrow { border-bottom-color: #f093fb; }
.process-step[data-step="4"] .step-arrow { border-top-color: #f5576c; }
.process-step[data-step="5"] .step-arrow { border-top-color: #ffa726; }
.process-step[data-step="6"] .step-arrow { border-top-color: #5c6bc0; }

.process-step:hover .step-arrow {
  transform: translateX(-50%) scale(1.15);
  filter: drop-shadow(0 -6px 12px rgba(102, 126, 234, 0.5));
}

/* Step Badge Number */
.step-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}

.process-step[data-step="1"] .step-badge { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.process-step[data-step="2"] .step-badge { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
.process-step[data-step="3"] .step-badge { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.process-step[data-step="4"] .step-badge { background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%); }
.process-step[data-step="5"] .step-badge { background: linear-gradient(135deg, #ffa726 0%, #fb8c00 100%); }
.process-step[data-step="6"] .step-badge { background: linear-gradient(135deg, #5c6bc0 0%, #7e57c2 100%); }

.process-step:hover .step-badge {
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
}

/* Step Icon */
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.process-step[data-step="1"] .step-icon { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); -webkit-background-clip: text; background-clip: text; }
.process-step[data-step="2"] .step-icon { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); -webkit-background-clip: text; background-clip: text; }
.process-step[data-step="3"] .step-icon { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); -webkit-background-clip: text; background-clip: text; }
.process-step[data-step="4"] .step-icon { background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%); -webkit-background-clip: text; background-clip: text; }
.process-step[data-step="5"] .step-icon { background: linear-gradient(135deg, #ffa726 0%, #fb8c00 100%); -webkit-background-clip: text; background-clip: text; }
.process-step[data-step="6"] .step-icon { background: linear-gradient(135deg, #5c6bc0 0%, #7e57c2 100%); -webkit-background-clip: text; background-clip: text; }

.process-step:hover .step-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.5));
}

/* Step Title */
.process-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* Step Description */
.process-step p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Flow Connectors (Curved Arrows) */
.flow-connector {
  flex: 0 0 100px;
  height: 50px;
  position: relative;
  z-index: 1;
}

.flow-connector svg {
  width: 100%;
  height: 100%;
  color: #667eea;
  opacity: 0.5;
  transition: all 0.4s ease;
}

.flow-connector svg path {
  animation: flowDash 2s linear infinite;
}

.process-step:hover + .flow-connector svg {
  opacity: 1;
  color: #667eea;
  transform: scale(1.05);
}

/* Center Connector (Vertical) */
.center-connector {
  width: 50px;
  height: 100px;
  margin: -20px auto;
  position: relative;
  z-index: 1;
}

.center-connector svg {
  width: 100%;
  height: 100%;
  color: #667eea;
  opacity: 0.5;
}

.center-connector svg path {
  animation: flowDash 2s linear infinite;
}

/* Flow Dash Animation */
@keyframes flowDash {
  to {
    stroke-dashoffset: -20;
  }
}

/* Pulse Animation for Steps */
@keyframes pulseStep {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  }
  50% {
    box-shadow: 0 12px 40px rgba(109, 148, 197, 0.15);
  }
}

/* ============================================
   SECTION 10 — SUCCESS IN NUMBERS
   ============================================ */
.success-numbers {
  padding: 80px 0;
  background: var(--gradient-dark);
  color: var(--text-white);
  border-radius: var(--radius-xl);
  margin: 0 24px;
}

.success-numbers .section-header h2 {
  color: var(--text-white);
}

.success-numbers .section-header p {
  color: var(--text-light);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.number-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

.number-icon,
.number-value,
.number-suffix,
.number-label,
.number-card p {
  transition: all var(--transition-base);
}

.number-icon {
  font-size: 1.5rem;
  color: var(--primary-light);
  margin-bottom: 12px;
  display: inline-block;
}

.number-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.number-suffix {
  color: var(--primary-light);
}

.number-label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text-white);
}

.number-card p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 0;
}

/* Hover effects: Invert text colors against the white/glass hover background */
.number-card:hover {
  background: var(--bg-white) !important;
  border-color: rgba(109, 148, 197, 0.35) !important;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35) !important;
  transform: translateY(-6px);
}

.number-card:hover .number-icon {
  color: var(--primary-dark) !important;
  transform: scale(1.1);
}

.number-card:hover .number-value {
  color: var(--text-primary) !important;
}

.number-card:hover .number-suffix {
  color: var(--primary-dark) !important;
}

.number-card:hover .number-label {
  color: var(--text-primary) !important;
}

.number-card:hover p {
  color: var(--text-secondary) !important;
}

/* ============================================
   SECTION 11 — CLIENT SUCCESS STORIES (ENHANCED)
   ============================================ */
.testimonials {
  background: linear-gradient(180deg, transparent 0%, rgba(109, 148, 197, 0.02) 50%, transparent 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative dot patterns */
.dot-pattern {
  position: absolute;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(rgba(109, 148, 197, 0.2) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 0;
}

.dot-pattern-1 {
  bottom: 60px;
  left: 60px;
}

.dot-pattern-2 {
  top: 60px;
  right: 60px;
}

.section-tag-pill {
  background: rgba(109, 148, 197, 0.12);
  color: #2563EB;
  padding: 6px 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: inline-block;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.reviews-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 15px;
  z-index: 2;
}

.reviews-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  gap: 30px;
}

.review-card {
  flex: 0 0 calc(33.333% - 20px);
  width: calc(33.333% - 20px);
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(109, 148, 197, 0.12);
  border-color: rgba(109, 148, 197, 0.2) !important;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
}

.reviewer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-meta {
  flex: 1;
  padding-right: 32px;
}

.reviewer-meta h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 2px 0;
}

.reviewer-location {
  font-size: 0.8rem;
  color: #64748B;
  margin: 0;
  font-weight: 500;
}

.review-quote-mark {
  font-size: 2.2rem;
  color: rgba(15, 23, 42, 0.12);
  position: absolute;
  top: -5px;
  right: 0;
}

.review-card-body {
  flex: 1;
  margin-bottom: 24px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

.review-card-footer {
  margin-top: auto;
}

.review-rating {
  display: flex;
  gap: 4px;
}

.review-rating i {
  color: #FBBF24;
  font-size: 0.9rem;
}

/* Controls at the bottom */
.reviews-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.reviews-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none !important;
}

.reviews-btn-prev {
  background: transparent;
  color: #0F172A;
  border: 1px solid rgba(15, 23, 42, 0.25) !important;
}

.reviews-btn-prev:hover {
  background: rgba(15, 23, 42, 0.05);
}

.reviews-btn-next {
  background: #334155;
  color: #FFFFFF;
  border: 1px solid #334155 !important;
}

.reviews-btn-next:hover {
  background: #1E293B;
  border-color: #1E293B !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .review-card {
    flex: 0 0 calc(50% - 15px);
    width: calc(50% - 15px);
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .reviews-track {
    gap: 20px;
  }
  .review-card {
    flex: 0 0 100%;
    width: 100%;
    padding: 20px;
  }
  .review-text {
    font-size: 0.9rem;
  }
}

/* ============================================
   SECTION 12 — FAQ
   ============================================ */
.faq {
  background: transparent;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition-base);
  cursor: pointer;
}

.faq-item:hover {
  background: var(--bg-white);
  border-color: rgba(109, 148, 197, 0.45) !important;
  box-shadow: 0 12px 30px rgba(109, 148, 197, 0.1);
}

.faq-item.open {
  background: var(--bg-white) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 16px 36px rgba(109, 148, 197, 0.15) !important;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  text-align: left;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
  font-weight: 600;
  padding-right: 20px;
  color: var(--text-primary);
  transition: color var(--transition-base);
}

.faq-item:hover .faq-question h3 {
  color: var(--primary-dark);
}

.faq-toggle {
  position: relative;
  width: 34px;
  height: 34px;
  background: rgba(109, 148, 197, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
  border: none !important;
  cursor: pointer;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease;
}

/* Horizontal bar */
.faq-toggle::before {
  width: 12px;
  height: 2px;
}

/* Vertical bar */
.faq-toggle::after {
  width: 2px;
  height: 12px;
}

.faq-item.open .faq-toggle {
  background: var(--primary-color);
  color: #ffffff;
}

/* Animate the plus to a minus */
.faq-item.open .faq-toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.open .faq-toggle::before {
  transform: rotate(180deg);
}

.faq-answer p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   SECTION 13 — FINAL CTA
   ============================================ */
.final-cta {
  background: transparent;
}

.cta-content {
  padding: 80px 40px;
  border-radius: var(--radius-xl);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(22, 36, 71, 0.95) 100%), url('../images/recruitment_cta_vector.png') no-repeat center center !important;
  background-size: cover !important;
  border: 2px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 20px 50px rgba(8, 11, 17, 0.4);
  overflow: hidden;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.4s ease;
}

.cta-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(8, 11, 17, 0.5);
  border-color: rgba(255, 255, 255, 0.25) !important;
}

/* Glass card reflection highlight */
.cta-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.cta-content:hover::before {
  opacity: 1.5;
}

.cta-content h2 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  color: #ffffff !important;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 1.1rem;
  max-width: 760px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.95) !important;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.cta-buttons .btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
}

.cta-buttons .btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.6) !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.cta-buttons .btn-outline:hover {
  background: #ffffff !important;
  color: #0F172A !important;
  border-color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.cta-feature i {
  color: var(--primary-light);
  filter: drop-shadow(0 0 8px rgba(138, 171, 206, 0.8));
  font-size: 1.1rem;
}

/* ============================================
   SECTION 14 — CONTACT SECTION - ENHANCED PREMIUM DESIGN
   ============================================ */
.contact {
  padding: 50px 0 !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(180deg, rgba(109, 148, 197, 0.02) 0%, transparent 100%);
}

.contact .section-header {
  margin-bottom: 60px;
}

.contact .section-header h2 {
  font-size: 2.75rem;
  margin-bottom: 16px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact .section-header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  position: sticky;
  top: 100px;
}

/* Enhanced Contact Cards - Modern Horizontal Layout */
.contact-card {
  padding: 20px 24px;
  border-radius: 16px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: 100%;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.contact-card:hover::before {
  left: 100%;
}

/* Enhanced Gradient Schemes with Better Contrast */
.card-location {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.25);
}
.card-location h3, .card-location p, .card-location a {
  color: #ffffff !important;
}

.card-phone {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%) !important;
  box-shadow: 0 8px 24px rgba(17, 153, 142, 0.25);
}
.card-phone h3, .card-phone p, .card-phone a {
  color: #ffffff !important;
}

.card-email {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.25);
}
.card-email h3, .card-email p, .card-email a {
  color: #ffffff !important;
}

.card-hours {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
  box-shadow: 0 8px 24px rgba(240, 147, 251, 0.25);
}
.card-hours h3, .card-hours p, .card-hours a {
  color: #ffffff !important;
}

/* Enhanced Card Icons with Better Design */
.contact-card .contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.contact-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.5;
  opacity: 0.95;
  font-weight: 500;
}

.contact-card p a {
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
}

.contact-card p a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-card p a:hover {
  opacity: 1;
  transform: translateX(2px);
}

.contact-card p a:hover::after {
  width: 100%;
}

/* Enhanced Card Hover Effects */
.contact-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.card-location:hover { box-shadow: 0 16px 48px rgba(102, 126, 234, 0.4); }
.card-phone:hover { box-shadow: 0 16px 48px rgba(17, 153, 142, 0.4); }
.card-email:hover { box-shadow: 0 16px 48px rgba(102, 126, 234, 0.4); }
.card-hours:hover { box-shadow: 0 16px 48px rgba(240, 147, 251, 0.4); }

.contact-card:hover .contact-icon {
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.card-location:hover .contact-icon { color: #667eea; animation: bounceLoc 1s ease infinite alternate; }
.card-phone:hover .contact-icon { color: #11998e; animation: ringPhone 0.5s ease infinite; }
.card-email:hover .contact-icon { color: #667eea; animation: pulseMail 1.2s ease infinite; }
.card-hours:hover .contact-icon { color: #f5576c; animation: spinClock 3s linear infinite; }

/* Enhanced Interactive Map Container */
.map-container {
  border-radius: 16px;
  overflow: hidden;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #1a1f36 0%, #0f1419 100%) !important;
  border: 2px solid rgba(109, 148, 197, 0.2) !important;
  box-shadow: 0 8px 32px rgba(8, 11, 17, 0.4);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.map-container:hover {
  transform: translateY(-4px);
  border-color: rgba(109, 148, 197, 0.4) !important;
  box-shadow: 0 16px 48px rgba(109, 148, 197, 0.3);
}

.map-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(109, 148, 197, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatMapGlow 6s infinite alternate ease-in-out;
  filter: blur(20px);
}

.map-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(109, 148, 197, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 148, 197, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.6;
}

.map-placeholder {
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  gap: 20px;
}

.map-placeholder i.map-bounce {
  font-size: 2.2rem;
  color: var(--primary-light);
  filter: drop-shadow(0 0 12px rgba(109, 148, 197, 0.6));
  animation: floatMapBounce 2s infinite ease-in-out;
  flex-shrink: 0;
}

.map-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 4px;
  flex-grow: 1;
}

.map-placeholder h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.map-placeholder p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-bottom: 0;
  opacity: 0.9;
}

.map-btn {
  background: rgba(109, 148, 197, 0.15);
  color: var(--primary-light);
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid rgba(109, 148, 197, 0.3) !important;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}

.map-btn:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(109, 148, 197, 0.4);
  border-color: var(--primary-color) !important;
}

.map-container:hover .map-glow {
  width: 200px;
  height: 200px;
  opacity: 1.2;
}

/* Enhanced Premium Form Design */
.contact-form-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(109, 148, 197, 0.15) !important;
  background: var(--bg-white);
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-form-wrapper:hover::before {
  opacity: 1;
}

.contact-form-wrapper:hover {
  box-shadow: 0 24px 64px rgba(109, 148, 197, 0.15);
  border-color: rgba(109, 148, 197, 0.25) !important;
  transform: translateY(-2px);
}

.contact-form {
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  align-items: start;
}

.contact-form h3 {
  grid-column: span 2;
  font-size: 1.75rem;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
  position: relative;
  display: inline-block;
  font-weight: 700;
  color: var(--text-primary);
}

.contact-form h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(109, 148, 197, 0.3);
}

/* Enhanced Form Groups */
.form-group {
  margin-bottom: 0;
  animation: fadeInUp 0.6s ease backwards;
}

.form-group:nth-child(2) { animation-delay: 0.1s; }
.form-group:nth-child(3) { animation-delay: 0.15s; }
.form-group:nth-child(4) { animation-delay: 0.2s; }
.form-group:nth-child(5) { animation-delay: 0.25s; }
.form-group:nth-child(6) { animation-delay: 0.3s; }
.form-group:nth-child(7) { animation-delay: 0.35s; }

/* Span fields that need full width */
.form-group:nth-child(6),
.form-group:nth-child(7),
.form-group:nth-child(8) {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  transition: color 0.3s ease;
  letter-spacing: -0.01em;
}

.form-group:focus-within label {
  color: var(--primary-color);
  transform: translateX(2px);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper .input-icon {
  position: absolute;
  left: 16px;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 2;
}

.input-wrapper .message-icon {
  top: 16px;
}

/* Enhanced Select Chevron */
.input-wrapper .select-chevron {
  position: absolute;
  right: 16px;
  color: var(--text-light);
  font-size: 0.85rem;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.input-wrapper:focus-within .select-chevron {
  transform: rotate(180deg);
  color: var(--primary-color);
}

/* Enhanced Form Controls */
.contact-form .input-wrapper input,
.contact-form .input-wrapper select,
.contact-form .input-wrapper textarea {
  width: 100% !important;
  padding: 14px 16px 14px 48px !important;
  background: rgba(109, 148, 197, 0.04) !important;
  border: 2px solid rgba(109, 148, 197, 0.12) !important;
  border-radius: 12px !important;
  outline: none !important;
  font-family: var(--font-body);
  font-size: 1rem !important;
  color: var(--text-primary) !important;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  font-weight: 500;
}

.contact-form .input-wrapper input::placeholder,
.contact-form .input-wrapper textarea::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}

/* Hide default select arrow */
.contact-form .input-wrapper select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  cursor: pointer;
  padding-right: 48px !important;
}

.contact-form .input-wrapper textarea {
  resize: none;
  height: 100px !important;
  min-height: 100px !important;
  padding-top: 14px !important;
  line-height: 1.6;
}

/* Enhanced Focused States */
.contact-form .input-wrapper input:focus,
.contact-form .input-wrapper select:focus,
.contact-form .input-wrapper textarea:focus {
  background: #ffffff !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 8px 24px rgba(109, 148, 197, 0.15) !important;
  transform: translateY(-2px);
}

/* Icon transform on focus */
.input-wrapper:focus-within .input-icon {
  color: var(--primary-color);
  transform: scale(1.2) translateX(2px);
}

/* Enhanced Animated Border Line */
.focus-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), left 0.5s ease;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 3;
  border-radius: 3px;
  box-shadow: 0 2px 12px rgba(109, 148, 197, 0.4);
}

.input-wrapper:focus-within .focus-border {
  width: calc(100% - 24px);
  border-radius: 0 0 12px 12px;
}

/* Enhanced Animated Submit Button */
.btn-premium {
  grid-column: span 2;
  background: var(--gradient-primary) !important;
  color: #ffffff !important;
  padding: 16px 32px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  cursor: pointer !important;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  box-shadow: 0 8px 24px rgba(109, 148, 197, 0.3) !important;
  width: 100% !important;
  position: relative !important;
  overflow: hidden !important;
  border: none !important;
  letter-spacing: -0.02em;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-premium:hover::before {
  width: 400px;
  height: 400px;
}

.btn-premium span {
  position: relative;
  z-index: 2;
}

.btn-premium .send-icon {
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-premium:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(109, 148, 197, 0.45) !important;
}

.btn-premium:hover .send-icon {
  transform: translateX(4px) rotate(-15deg);
}

.btn-premium:active {
  transform: translateY(-2px) scale(0.98);
}

/* Enhanced Form Notice */
.form-notice {
  grid-column: span 2;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 8px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0.8;
}

.form-notice i {
  color: var(--primary-color);
  font-size: 1rem;
}

.btn-premium span {
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #5A82B5 0%, #4A72A5 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.btn-premium:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(109, 148, 197, 0.4) !important;
}

.btn-premium:hover::before {
  opacity: 1;
}

.btn-premium:active {
  transform: translateY(-1px) !important;
}

/* Submit Icon Fly Interaction */
.btn-premium:hover .send-icon {
  transform: translate(4px, -3px) scale(1.1) rotate(-10deg);
}

.form-notice {
  grid-column: span 2;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
  margin-bottom: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-notice i {
  color: #10B981;
}

/* Keyframe Animations */
@keyframes bounceLoc {
  0% { transform: translateY(0); }
  100% { transform: translateY(-3px); }
}

@keyframes ringPhone {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

@keyframes pulseMail {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes spinClock {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes floatMapGlow {
  0% { transform: translate(-10px, -10px) scale(1); }
  100% { transform: translate(10px, 10px) scale(1.1); }
}

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

@keyframes flyPlane {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(3px, -2px) rotate(-3deg); }
  100% { transform: translate(6px, -4px) rotate(-6deg); }
}

/* ============================================
   SECTION 15 — FOOTER
   ============================================ */
/* ============================================
   SECTION 15 — FOOTER
   ============================================ */
.footer {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FD 100%) !important;
  color: var(--text-primary);
  padding: 50px 0 20px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(109, 148, 197, 0.15) !important;
  overflow: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-col {
  border-right: 1px solid rgba(109, 148, 197, 0.15);
  padding-right: 24px;
}

.footer-col:last-child, 
.footer-col.footer-connect {
  border-right: none;
  padding-right: 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  cursor: pointer;
}

.footer-logo h3 {
  color: #0F172A;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.footer-tagline-main {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0F172A;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.btn-visionos {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #0F172A !important;
  color: #FFFFFF !important;
  padding: 6px 6px 6px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  width: 175px;
  height: 48px;
  box-sizing: border-box;
  border: none !important;
  outline: none !important;
}

.btn-visionos .arrow-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, color 0.3s ease;
}

.btn-visionos:hover {
  background: #2563EB !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.btn-visionos:hover .arrow-circle {
  transform: rotate(360deg);
  color: #2563EB;
}

.footer-col h4 {
  color: #0F172A;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  font-size: 0.95rem;
  color: #475569;
  font-weight: 500;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
}

.footer-links li a:hover {
  color: #2563EB;
  transform: translateX(4px);
}

.footer-social-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-social-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #475569;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.25s ease;
  text-decoration: none;
}

.footer-social-list li a i {
  width: 20px;
  font-size: 1.1rem;
  color: #64748B;
  transition: color 0.25s ease, transform 0.25s ease;
  text-align: center;
}

.footer-social-list li a span {
  transition: color 0.25s ease;
}

.footer-social-list li a:hover {
  color: #0F172A;
}

.footer-social-list li a:hover i {
  transform: scale(1.15);
}

.footer-social-list li a[aria-label="Twitter"]:hover i { color: #0F172A; }
.footer-social-list li a[aria-label="Instagram"]:hover i { color: #E1306C; }
.footer-social-list li a[aria-label="Facebook"]:hover i { color: #1877F2; }
.footer-social-list li a[aria-label="LinkedIn"]:hover i { color: #0A66C2; }

.footer-bottom {
  padding-top: 28px;
  margin-top: 50px;
  border-top: 1px solid rgba(109, 148, 197, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-bottom-links a {
  color: #64748B;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s ease;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #2563EB;
}

.copyright-text {
  color: #64748B;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

.copyright-text a {
  color: inherit;
  transition: color 0.25s ease;
  /* text-decoration: underline !important; */
}

.copyright-text a:hover {
  color: #2563EB;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--text-primary);
  color: var(--text-white);
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================
   LOADING SCREEN
   ============================================ */
/* ============================================
   LOADING SCREEN (PREMIUM GEOMETRIC STYLE)
   ============================================ */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0B0F19 !important; /* Premium dark background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
}

.loader-wrapper::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  z-index: 2;
}

.loader-logo-wrapper {
  animation: pulseLogo 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ring-container {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ring {
  position: absolute;
  border-radius: 50%;
  border: 3px solid transparent;
}

.loader-ring.ring-outer {
  width: 120px;
  height: 120px;
  border-top-color: #2563EB;
  border-bottom-color: #2563EB;
  animation: spinClockwise 2.5s linear infinite;
}

.loader-ring.ring-middle {
  width: 90px;
  height: 90px;
  border-left-color: #60A5FA;
  border-right-color: #60A5FA;
  animation: spinCounterClockwise 1.8s linear infinite;
}

.loader-ring.ring-inner {
  width: 60px;
  height: 60px;
  border-top-color: #E8DFCA;
  border-bottom-color: #E8DFCA;
  animation: spinClockwise 1.2s linear infinite;
}

.loader-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.loader-brand-title {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.loader-status {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  margin: 0;
  height: 20px;
}

.loader-progress-bar {
  width: 180px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 14px;
}

.loader-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #2563EB 0%, #60A5FA 100%);
  border-radius: 10px;
  transition: width 0.1s cubic-bezier(0.1, 0.8, 0.25, 1);
}

/* Animations */
@keyframes spinClockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spinCounterClockwise {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

@keyframes pulseLogo {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 12px rgba(37, 99, 235, 0.25));
  }
  50% {
    transform: scale(1.06);
    filter: drop-shadow(0 0 24px rgba(37, 99, 235, 0.5));
  }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6D94C5 0%, #5A82B5 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 20px rgba(109, 148, 197, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none !important;
}

.back-to-top:hover {
  background: linear-gradient(135deg, #5A82B5 0%, #4A72A5 100%);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(109, 148, 197, 0.6);
}

.back-to-top:active {
  transform: translateY(-2px);
}

.back-to-top.visible,
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top i {
  transition: transform 0.3s ease;
}

.back-to-top:hover i {
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}
