/* ============================================
   PROTECH 360 - RADICAL REDESIGN
   Keeping Red & Dark Blue Color Scheme
   ============================================ */

/* ============================================
   CSS VARIABLES - YOUR COLOR SCHEME
   ============================================ */
:root {
  /* Brand Colors - Your Scheme */
  --primary-red: #E63946;
  --primary-dark: #1D3557;
  --accent-light: #F1FAEE;
  --accent-blue: #457B9D;
  
  /* Extended Palette */
  --red-dark: #CC0000;
  --red-light: #FF5A5F;
  --dark-deeper: #0D1B2A;
  --blue-medium: #2C5F7C;
  
  /* Neutrals */
  --white: #FFFFFF;
  --black: #000000;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  
  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ============================================
   MODERN HEADER - REFINED
   ============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  
  transition: var(--transition-base);
}

header.scrolled {
  padding: var(--space-1) 0;
  box-shadow: var(--shadow-md);
}

/* When mobile nav is open, prevent page scrolling */
body.nav-open {
  overflow: hidden;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Hamburger Menu */
.hamburger {
  display: none; /* Hidden on desktop by default */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
  position: relative;
  gap: 6px;
}


.bar {
  display: block;
  width: 28px;
  height: 3px;
  background-color: black;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  position: relative;
  color: black;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.logo-container {
  display: flex;
  align-items: center;
  transition: var(--transition-base);
}

.logo-container:hover {
  transform: translateY(-2px);
}

.logo {
  height: 125px;
  width: auto;
  transition: var(--transition-base);
}

header.scrolled .logo {
  height: 85px;
}


/* Navigation - Refined */
nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
}

nav ul li a {
  position: relative;
  padding: var(--space-2) var(--space-4);
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

nav ul li a::before {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--primary-red);
  transition: var(--transition-base);
  border-radius: var(--radius-full);
}

nav ul li a:hover {
  color: var(--primary-red);
  background: var(--gray-50);
}

nav ul li a:hover::before {
  transform: translateX(-50%) scaleX(1);
}

nav.active ul {
  flex-direction: column;
  padding: var(--space-8);
  gap: var(--space-2);
}

nav.active ul li {
  width: 100%;
}

nav.active ul li a {
  display: block;
  padding: var(--space-4);
  font-size: 1.1rem;
}

/* ============================================
   HERO SECTION - SPLIT LAYOUT
   ============================================ */
.hero-reimagined {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  padding-top: 100px;
  padding-bottom: var(--space-16);
  overflow: hidden;
}

.hero-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero-left {
  animation: slideInLeft 0.8s ease-out;
}

.hero-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, var(--primary-red), var(--red-light));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary-red), var(--red-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: var(--space-8);
  max-width: 550px;
}

.hero-cta-group {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

.btn-primary-large,
.btn-secondary-large {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary-large {
  background: var(--primary-red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.4);
}

.btn-primary-large:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.5);
}

.btn-secondary-large {
  background: var(--white);
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

.btn-secondary-large:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-red);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--gray-300);
}

/* Hero Right - Image */
.hero-right {
  position: relative;
  animation: slideInRight 0.8s ease-out;
}

.hero-image-container {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.hero-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(29, 53, 87, 0.3), rgba(230, 57, 70, 0.2));
}

.hero-floating-card {
  position: absolute;
  bottom: var(--space-8);
  left: var(--space-8);
  right: var(--space-8);
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  box-shadow: var(--shadow-xl);
}

.hero-floating-card i {
  font-size: 2.5rem;
  color: var(--primary-red);
}

.hero-floating-card strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: var(--space-1);
}

.hero-floating-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 1.5rem;
  color: var(--primary-red);
}

/* ============================================
   SERVICES SECTION - MODERN CARDS
   ============================================ */
.services-modern {
  padding: var(--space-24) 0;
  background: var(--white);
}

.section-header-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-16);
}

.section-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: var(--accent-light);
  color: var(--primary-red);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header-centered h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-4);
  color: var(--primary-dark);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
}

.service-card-modern {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}

.service-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.service-icon-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card-modern:hover .service-bg-image {
  transform: scale(1.1);
}

.service-icon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(29, 53, 87, 0.8), rgba(230, 57, 70, 0.6));
}

.service-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: var(--white);
  z-index: 2;
}

.service-content {
  padding: var(--space-8);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-4);
  color: var(--primary-dark);
}

.service-content p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  flex: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--gray-700);
  font-size: 0.95rem;
}

.service-features li i {
  color: var(--primary-red);
  font-size: 1.1rem;
}

/* ============================================
   WHY US SECTION - FEATURE HIGHLIGHTS
   ============================================ */
.why-us-section {
  padding: var(--space-24) 0;
  background: var(--gray-50);
}

.why-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.section-badge-light {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: var(--white);
  color: var(--primary-red);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
}

.why-us-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-6);
  color: var(--primary-dark);
}

.lead-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: var(--space-10);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.feature-item {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-red), var(--red-light));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.feature-text h4 {
  font-size: 1.15rem;
  margin-bottom: var(--space-2);
  color: var(--primary-dark);
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  border: 2px solid var(--primary-dark);
  border-radius: var(--radius-full);
  color: var(--primary-dark);
  font-weight: 600;
  transition: var(--transition-base);
}

.btn-outline:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateX(4px);
}

/* Image Stack */
.image-stack {
  position: relative;
  height: 600px;
}

.stack-image-1,
.stack-image-2 {
  position: absolute;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  object-fit: cover;
}

.stack-image-1 {
  top: 0;
  left: 0;
  width: 70%;
  height: 65%;
  z-index: 2;
}

.stack-image-2 {
  bottom: 0;
  right: 0;
  width: 70%;
  height: 65%;
  z-index: 1;
}

.image-badge {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-5);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  z-index: 3;
}

.image-badge i {
  font-size: 2rem;
  color: var(--primary-red);
}

.image-badge strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary-dark);
  line-height: 1;
}

.image-badge span {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ============================================
   PROCESS SECTION - TIMELINE
   ============================================ */
.process-section {
  padding: var(--space-24) 0;
  background: var(--white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--accent-light);
  color: var(--primary-red);
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-red), var(--red-light));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.4);
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-3);
  color: var(--primary-dark);
}

.process-step p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
}

.process-connector::before {
  content: '';
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gray-300), var(--primary-red), var(--gray-300));
}

/* ============================================
   CTA SECTION - STRONG CALL TO ACTION
   ============================================ */
.cta-section {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-dark) 50%, var(--blue-medium));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.2), transparent);
  border-radius: 50%;
}

.cta-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
  position: relative;
  z-index: 2;
}

.cta-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.cta-left p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cta-right {
  display: flex;
  gap: var(--space-4);
  flex-shrink: 0;
}

.btn-cta-large,
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-8);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
  white-space: nowrap;
}

.btn-cta-large {
  background: var(--primary-red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.btn-cta-large:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-section {
  padding: var(--space-16) 0;
  background: var(--gray-50);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  text-align: center;
}

.trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.trust-badge i {
  font-size: 2.5rem;
  color: var(--primary-red);
}

.trust-badge span {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 1.05rem;
}

/* ============================================
   FOOTER - MODERN
   ============================================ */
footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 4px solid var(--primary-red);
}

footer p {
  text-align: center;
  opacity: 0.9;
  margin: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  
  .hero-image {
    height: 500px;
  }
  
  .why-us-content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  
  .image-stack {
    height: 500px;
  }
  
  .cta-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-right {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-cta-large,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .process-connector {
    padding-top: 0;
    height: 60px;
  }
  
  .process-connector::before {
    width: 2px;
    height: 100%;
  }
}

@media (max-width: 1200px) {
  header {
    padding: var(--space-3) 0;
  }
  
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    height: 80px;
  }


  /* FORCE hamburger to display on mobile */
  .hamburger {
    display: flex !important;
  }

  /* Hide desktop nav (explicitly target .nav-menu for specificity) */
  nav,
  .nav-menu {
    display: none;
  }

  /* Mobile menu when active (show the menu content only when nav has .active) */
  nav.active {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 90%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: 1005;
    padding-top: 100px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
  }

  /* Ensure the specific nav list used in the layout is hidden on mobile unless nav.active */
  nav.active .nav-menu {
    display: flex;
    flex-direction: column;
    padding: var(--space-8);
    gap: var(--space-2);
  }

  /* Keep the existing selectors for backward compatibility */
  nav ul {
    flex-direction: column;
    padding: var(--space-8);
    gap: var(--space-2);
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;
    padding: var(--space-4);
    font-size: 1.1rem;
    color: var(--gray-700);
  }

  nav ul li a:hover {
    color: var(--primary-red);
    background: var(--gray-50);
  }
  
  .hero-reimagined {
    padding-top: 80px;
    padding-bottom: var(--space-12);
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: stretch;
  }
  
  .stat-divider {
    width: 100%;
    height: 1px;
  }
  
  .hero-image {
    height: 400px;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .btn-primary-large,
  .btn-secondary-large {
    width: 100%;
    justify-content: center;
  }
  
  .services-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .image-stack {
    height: 400px;
  }
  
  .stack-image-1,
  .stack-image-2 {
    width: 80%;
  }
  
  .trust-badges {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-header-centered h2 {
    font-size: 1.75rem;
  }
  
  .hero-floating-card {
    padding: var(--space-4);
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .step-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

*:focus-visible {
  outline: 3px solid var(--primary-red);
  outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  header,
  footer,
  .hamburger,
  .scroll-indicator,
  .cta-section {
    display: none;
  }
}

/* ============================================
   ADDITIONAL STYLES FOR ALL PAGES
   Append this to the main style.css file
   ============================================ */

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-hero-modern {
  position: relative;
  min-height: 60vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--blue-medium) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-24) var(--space-6);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.hero-badge-about {
  display: inline-block;
  padding: var(--space-2) var(--space-5);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: var(--space-5);
  font-weight: 800;
}

.hero-lead {
  font-size: 1.4rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Mission Section */
.mission-section {
  padding: var(--space-24) 0;
  background: var(--white);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.mission-content {
  padding-right: var(--space-6);
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.value-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.value-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-red), var(--red-light));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.value-item h4 {
  font-size: 1.2rem;
  margin-bottom: var(--space-2);
  color: var(--primary-dark);
}

.value-item p {
  font-size: 1rem;
  color: var(--gray-600);
  margin: 0;
}

.mission-visual {
  position: relative;
}

.main-about-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
}

.stats-overlay {
  position: absolute;
  bottom: var(--space-8);
  left: var(--space-8);
  right: var(--space-8);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  gap: var(--space-8);
  box-shadow: var(--shadow-xl);
}

.stat-box {
  flex: 1;
  text-align: center;
}

.stat-big {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-red);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* Credentials Section */
.credentials-section {
  padding: var(--space-24) 0;
  background: var(--gray-50);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
}

.credential-card {
  background: var(--white);
  padding: var(--space-10);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-base);
  border: 1px solid var(--gray-200);
}

.credential-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.credential-icon-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-red), var(--red-light));
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  color: var(--white);
  font-size: 3rem;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.credential-card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-4);
  color: var(--primary-dark);
}

.credential-card p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.credential-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-5);
  background: var(--accent-light);
  color: var(--primary-red);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Team Section */
.team-section {
  padding: var(--space-24) 0;
  background: var(--white);
}

.team-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.team-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.team-img-1,
.team-img-2,
.team-img-3 {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.team-img-1 {
  grid-column: 1 / -1;
  height: 300px;
}

.team-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.highlight-card {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  align-items: center;
  transition: var(--transition-base);
}

.highlight-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.highlight-card i {
  font-size: 2rem;
  color: var(--primary-red);
}

.highlight-card strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: var(--space-1);
}

.highlight-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin: 0;
}

/* Expertise Section */
.expertise-section {
  padding: var(--space-24) 0;
  background: var(--gray-50);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
}

.expertise-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2xl);
}

.expertise-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.expertise-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.expertise-card:hover .expertise-image img {
  transform: scale(1.1);
}

.expertise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(29, 53, 87, 0.85), rgba(230, 57, 70, 0.7));
}

.expertise-content {
  padding: var(--space-8);
}

.expertise-content i {
  font-size: 2.5rem;
  color: var(--primary-red);
  margin-bottom: var(--space-4);
}

.expertise-content h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-3);
  color: var(--primary-dark);
}

.expertise-content p {
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* Commitment Section */
.commitment-section {
  padding: var(--space-24) 0;
  background: var(--white);
}

.commitment-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.commitment-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin: var(--space-8) 0;
}

.commitment-point {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  font-size: 1.05rem;
  color: var(--gray-700);
}

.commitment-point i {
  color: var(--primary-red);
  font-size: 1.3rem;
}

.commitment-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.commitment-visual {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-6);
}

.commitment-stat-card {
  background: var(--gray-50);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: var(--transition-base);
}

.commitment-stat-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.stat-circle {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-red), var(--red-light));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-unit {
  font-size: 1rem;
  color: var(--white);
  opacity: 0.9;
}

.commitment-stat-card p {
  color: var(--gray-700);
  font-weight: 600;
  margin: 0;
}

/* Coverage Section */
.coverage-section {
  padding: var(--space-20) 0;
  background: var(--gray-50);
}

.coverage-content {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  padding: var(--space-12);
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.coverage-map {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-dark), var(--blue-medium));
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4rem;
}

.coverage-text h2 {
  font-size: 2rem;
  margin-bottom: var(--space-4);
  color: var(--primary-dark);
}

.coverage-text p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-hero-modern {
  background: linear-gradient(135deg, var(--primary-dark), var(--blue-medium));
  padding: calc(var(--space-20) + 100px) 0 var(--space-16);
  text-align: center;
  color: var(--white);
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.hero-badge-contact {
  display: inline-block;
  padding: var(--space-2) var(--space-5);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: var(--space-5);
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: var(--space-10);
  line-height: 1.6;
}

.hero-trust-row {
  display: flex;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 1rem;
  font-weight: 500;
}

.trust-item i {
  font-size: 1.5rem;
  color: var(--accent-teal);
}

/* Contact Main Section */
.contact-main-section {
  padding: var(--space-20) 0;
  background: var(--gray-50);
  margin-top: calc(var(--space-16) * -1);
}

.container-contact {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-16);
}

.contact-method-card {
  background: var(--white);
  padding: var(--space-10);
  border-radius: var(--radius-2xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border: 2px solid transparent;
}

.contact-method-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.contact-method-card.primary-card {
  border-color: var(--primary-red);
  background: linear-gradient(135deg, var(--white), var(--accent-light));
}

.method-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-red), var(--red-light));
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.contact-method-card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-3);
  color: var(--primary-dark);
}

.method-desc {
  color: var(--gray-600);
  margin-bottom: var(--space-4);
}

.method-link {
  display: block;
  font-size: 1.2rem;
  color: var(--primary-red);
  margin: var(--space-4) 0;
  transition: var(--transition-base);
}

.method-link:hover {
  color: var(--red-dark);
  transform: scale(1.05);
}

.method-availability {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: var(--gray-100);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--gray-700);
  font-weight: 600;
}

/* Contact Form Layout */
.contact-form-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-10);
  align-items: start;
}

.contact-form-container {
  background: var(--white);
  padding: var(--space-12);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.form-header-contact h2 {
  font-size: 2rem;
  margin-bottom: var(--space-3);
  color: var(--primary-dark);
}

.form-header-contact p {
  color: var(--gray-600);
  margin-bottom: var(--space-10);
}

.modern-contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.form-row-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.btn-submit-contact {
  background: var(--primary-red);
  color: var(--white);
  padding: var(--space-4) var(--space-10);
  border: none;
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  transition: var(--transition-base);
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.4);
  margin-top: var(--space-4);
}

.btn-submit-contact:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.5);
}

/* Contact Sidebar */
.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.info-card-contact {
  background: var(--white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.info-card-contact h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-6);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.info-card-contact h3 i {
  color: var(--primary-red);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.info-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.info-item i {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 1.2rem;
}

.info-item strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: var(--space-1);
}

.info-item p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.faq-compact {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-compact details {
  cursor: pointer;
}

.faq-compact summary {
  font-weight: 600;
  color: var(--primary-dark);
  padding: var(--space-3);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.faq-compact summary:hover {
  background: var(--gray-100);
}

.faq-compact details[open] summary {
  background: var(--primary-red);
  color: var(--white);
  margin-bottom: var(--space-3);
}

.faq-compact p {
  padding-left: var(--space-3);
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

.quick-actions-card {
  background: var(--gray-50);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
}

.quick-actions-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-6);
  color: var(--primary-dark);
}

.quick-action-btn {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  color: var(--gray-700);
  font-weight: 500;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.quick-action-btn:hover {
  background: var(--primary-red);
  color: var(--white);
  transform: translateX(4px);
}

.quick-action-btn i {
  color: var(--primary-red);
  font-size: 1.2rem;
}

.quick-action-btn:hover i {
  color: var(--white);
}

/* Reasons Section */
.reasons-section {
  padding: var(--space-20) 0;
  background: var(--white);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-8);
}

.reason-card {
  text-align: center;
  padding: var(--space-8);
}

.reason-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-red), var(--red-light));
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.reason-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-3);
  color: var(--primary-dark);
}

.reason-card p {
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.faq-question i {
  color: var(--primary-red);
  font-size: 1.5rem;
}

/* Contact Trust Section */
.contact-trust-section {
  padding: var(--space-16) 0;
  background: var(--gray-50);
}

.trust-content-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
  padding: var(--space-12);
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.trust-left h2 {
  font-size: 2rem;
  margin-bottom: var(--space-2);
  color: var(--primary-dark);
}

.trust-left p {
  color: var(--gray-600);
  margin: 0;
}

.trust-right {
  display: flex;
  gap: var(--space-10);
}

.trust-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.trust-stat-item i {
  font-size: 3rem;
  color: var(--primary-red);
}

.trust-stat-item strong {
  font-size: 2rem;
  color: var(--primary-dark);
  font-weight: 800;
}

.trust-stat-item span {
  color: var(--gray-600);
  font-size: 0.9rem;
  text-align: center;
}

/* ============================================
   CAREER PAGE STYLES  
   ============================================ */
.career-hero-redesigned {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
}

.career-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(29, 53, 87, 0.9), rgba(230, 57, 70, 0.8));
  z-index: 1;
}

.career-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 var(--space-6);
}

.hero-badge-career {
  display: inline-block;
  padding: var(--space-2) var(--space-5);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.career-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: var(--space-5);
  font-weight: 800;
}

.hero-lead-career {
  font-size: 1.4rem;
  opacity: 0.95;
  margin-bottom: var(--space-10);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-benefits-quick {
  display: flex;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.benefit-quick {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.benefit-quick i {
  font-size: 2rem;
  color: var(--accent-teal);
}

.benefit-quick span {
  font-weight: 500;
}

/* Why Join Section */
.why-join-modern {
  padding: var(--space-24) 0;
  background: var(--gray-50);
}

.benefits-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
}

.benefit-card-large {
  background: var(--white);
  padding: var(--space-10);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border: 2px solid transparent;
}

.benefit-card-large:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-red);
}

.benefit-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-red), var(--red-light));
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.benefit-card-large h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-4);
  color: var(--primary-dark);
}

.benefit-card-large p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.benefit-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.benefit-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--gray-700);
}

.benefit-features li i {
  color: var(--primary-red);
}

/* Requirements Section */
.requirements-section-modern {
  padding: var(--space-24) 0;
  background: var(--white);
}

.requirements-layout {
  max-width: 1200px;
  margin: 0 auto;
}

.requirements-header {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

.requirement-card-modern {
  background: var(--white);
  padding: var(--space-10);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-200);
  transition: var(--transition-base);
}

.requirement-card-modern.highlight {
  border-color: var(--primary-red);
  background: linear-gradient(135deg, var(--white), var(--accent-light));
}

.requirement-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.req-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--gray-200);
}

.req-header i {
  font-size: 2rem;
  color: var(--primary-red);
}

.req-header h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
}

.req-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.req-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--gray-700);
}

.req-list li i {
  color: var(--primary-red);
  margin-top: 4px;
}

.requirements-note {
  background: var(--accent-light);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  border-left: 4px solid var(--primary-red);
}

.requirements-note i {
  font-size: 2rem;
  color: var(--primary-red);
  flex-shrink: 0;
}

.requirements-note p {
  color: var(--gray-700);
  margin: 0;
}

/* Application Section */
.application-section-modern {
  padding: var(--space-24) 0;
  background: var(--gray-50);
}

.application-header {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.alert-success-career {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.alert-success-career i {
  font-size: 2rem;
}

.alert-success-career strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: var(--space-1);
}

.application-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-10);
  align-items: start;
}

.career-application-form {
  background: var(--white);
  padding: var(--space-12);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.form-section-career {
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 2px solid var(--gray-200);
}

.form-section-career:last-of-type {
  border-bottom: none;
}

.form-section-career h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-6);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.form-section-career h3 i {
  color: var(--primary-red);
}

.form-row-career {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-base);
}

.checkbox-label:hover {
  background: var(--gray-100);
}

.checkbox-custom {
  width: 24px;
  height: 24px;
  border: 2px solid var(--gray-400);
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
}

.checkbox-label input:checked ~ .checkbox-custom {
  background: var(--primary-red);
  border-color: var(--primary-red);
  position: relative;
}

.checkbox-label input:checked ~ .checkbox-custom::after {
  content: "âœ“";
  position: absolute;
  color: var(--white);
  font-weight: bold;
  font-size: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.checkbox-text {
  font-weight: 500;
  color: var(--gray-700);
}

/* File Upload Modern */
.file-upload-modern {
  position: relative;
}

.file-upload-modern input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.file-upload-label-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-12);
  border: 3px dashed var(--gray-300);
  border-radius: var(--radius-2xl);
  background: var(--gray-50);
  cursor: pointer;
  transition: var(--transition-base);
}

.file-upload-label-modern:hover {
  border-color: var(--primary-red);
  background: rgba(230, 57, 70, 0.05);
}

.file-upload-icon {
  font-size: 4rem;
  color: var(--primary-red);
  margin-bottom: var(--space-4);
}

.file-upload-text {
  text-align: center;
}

.file-upload-text strong {
  display: block;
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: var(--space-2);
}

.file-upload-text span {
  display: block;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.file-formats {
  margin-top: var(--space-3);
  font-size: 0.85rem !important;
  color: var(--gray-500) !important;
}

.file-name-display {
  display: none;
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: #d4edda;
  color: #155724;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
}

.btn-submit-career {
  width: 100%;
  background: var(--primary-red);
  color: var(--white);
  padding: var(--space-5) var(--space-10);
  border: none;
  border-radius: var(--radius-full);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  transition: var(--transition-base);
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.4);
  margin-top: var(--space-6);
}

.btn-submit-career:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.5);
}

/* Application Tips */
.application-tips {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.tips-card {
  background: var(--white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.tips-card.highlight {
  background: linear-gradient(135deg, var(--primary-red), var(--red-light));
  color: var(--white);
}

.tips-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.tips-card.highlight h3 {
  color: var(--white);
}

.tips-card h3 i {
  color: var(--primary-red);
}

.tips-card.highlight h3 i {
  color: var(--white);
}

.tips-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.tips-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--gray-700);
}

.tips-list li i {
  color: var(--primary-red);
}

.tips-card.highlight p {
  color: var(--white);
  opacity: 0.95;
  margin-bottom: var(--space-6);
}

.btn-outline-small {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: var(--white);
  color: var(--primary-red);
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: var(--transition-base);
}

.btn-outline-small:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.process-timeline-small {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.process-step-small {
  display: flex;
  gap: var(--space-4);
  align-items: center;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.step-text strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: var(--space-1);
}

.step-text span {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--space-20) 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.testimonial-card {
  background: var(--gray-50);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.testimonial-content {
  margin-bottom: var(--space-6);
}

.testimonial-content i {
  font-size: 2rem;
  color: var(--primary-red);
  opacity: 0.3;
  margin-bottom: var(--space-4);
}

.testimonial-content p {
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-red), var(--red-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.author-info strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: var(--space-1);
}

.author-info span {
  display: block;
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* ============================================
   SUBMISSION/QUOTE PAGE STYLES
   ============================================ */
.submission-hero-modern {
  background: linear-gradient(135deg, var(--primary-dark), var(--blue-medium));
  padding: calc(var(--space-20) + 100px) 0 var(--space-16);
  text-align: center;
  color: var(--white);
}

.submission-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.hero-badge-submission {
  display: inline-block;
  padding: var(--space-2) var(--space-5);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.submission-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: var(--space-5);
  font-weight: 800;
}

.hero-lead-submission {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: var(--space-10);
  line-height: 1.6;
}

.hero-features-sub {
  display: flex;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.feature-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.feature-sub i {
  font-size: 2rem;
  color: var(--accent-teal);
}

.feature-sub span {
  font-weight: 500;
}

/* Submission Main */
.submission-main-modern {
  padding: var(--space-20) 0;
  background: var(--gray-50);
  margin-top: calc(var(--space-16) * -1);
}

.container-submission {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.alert-success-submission {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.alert-success-submission i {
  font-size: 2rem;
}

.alert-success-submission strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: var(--space-1);
}

.submission-layout-modern {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-10);
  align-items: start;
}

/* Form Progress */
.form-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-12);
  padding: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  flex: 1;
}

.step-circle {
  width: 50px;
  height: 50px;
  background: var(--gray-200);
  color: var(--gray-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  transition: var(--transition-base);
}

.progress-step.active .step-circle {
  background: linear-gradient(135deg, var(--primary-red), var(--red-light));
  color: var(--white);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
}

.progress-step span {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}

.progress-step.active span {
  color: var(--primary-red);
  font-weight: 600;
}

.progress-line {
  flex: 1;
  height: 2px;
  background: var(--gray-300);
  margin: 0 var(--space-4);
  max-width: 100px;
}

/* Submission Form */
.submission-form-modern {
  background: var(--white);
  padding: var(--space-12);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.form-step {
  display: block;
  visibility: hidden;
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.form-step.active {
  visibility: visible;
  position: static;
  left: auto;
  height: auto;
  overflow: visible;

  animation: fadeIn 0.3s ease;
}

.form-step h2 {
  font-size: 2rem;
  margin-bottom: var(--space-3);
  color: var(--primary-dark);
}

.step-description {
  color: var(--gray-600);
  margin-bottom: var(--space-10);
  font-size: 1.05rem;
}

.form-group-modern {
  margin-bottom: var(--space-6);
}

.label-modern {
  display: block;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: var(--space-3);
  font-size: 1.05rem;
}

.input-modern,
.textarea-modern {
  width: 100%;
  padding: var(--space-4);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition-base);
  font-family: var(--font-main);
}

.input-modern:focus,
.textarea-modern:focus {
  border-color: var(--primary-red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.input-modern.error {
  border-color: #dc3545;
}

.form-row-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

/* Service Type Grid */
.service-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.service-option {
  cursor: pointer;
}

.service-option input {
  display: none;
}

.service-card-option {
  padding: var(--space-6);
  background: var(--gray-50);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: var(--transition-base);
  cursor: pointer;
}

.service-option:hover .service-card-option {
  background: var(--gray-100);
  border-color: var(--gray-400);
}

.service-option input:checked + .service-card-option {
  background: linear-gradient(135deg, var(--primary-red), var(--red-light));
  border-color: var(--primary-red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.4);
}

.service-card-option i {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
  display: block;
}

.service-option input:checked + .service-card-option i {
  color: var(--white);
}

.service-card-option strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: var(--space-2);
}

.service-card-option span {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Checkbox Grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.checkbox-modern {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-base);
}

.checkbox-modern:hover {
  background: var(--gray-100);
}

.checkbox-modern input:checked ~ .checkbox-label {
  font-weight: 600;
  color: var(--primary-red);
}

/* Radio Group Modern */
.radio-group-modern {
  display: flex;
  gap: var(--space-4);
}

.radio-modern {
  flex: 1;
  cursor: pointer;
}

.radio-modern input {
  display: none;
}

.radio-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--gray-50);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  cursor: pointer;
}

.radio-modern:hover .radio-label {
  background: var(--gray-100);
}

.radio-modern input:checked + .radio-label {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--white);
}

.radio-modern input:checked + .radio-label i {
  color: var(--white);
}

/* Privacy Notice */
.privacy-notice {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-red);
  margin: var(--space-6) 0;
}

.privacy-notice i {
  color: var(--primary-red);
  font-size: 1.5rem;
}

.privacy-notice p {
  color: var(--gray-700);
  font-size: 0.95rem;
  margin: 0;
}

/* Form Buttons */
.button-group {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-10);
}

.btn-next,
.btn-back,
.btn-submit-quote {
  padding: var(--space-4) var(--space-8);
  border: none;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  transition: var(--transition-base);
}

.btn-next,
.btn-submit-quote {
  background: var(--primary-red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.4);
  flex: 1;
  justify-content: center;
}

.btn-next:hover,
.btn-submit-quote:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.5);
}

.btn-back {
  background: var(--gray-200);
  color: var(--gray-700);
}

.btn-back:hover {
  background: var(--gray-300);
}

/* Price Estimate Box */
.price-estimate-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--blue-medium));
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  color: var(--white);
  margin-top: var(--space-10);
  box-shadow: var(--shadow-xl);
}

.estimate-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.estimate-header i {
  font-size: 1.5rem;
}

.estimate-header h3 {
  font-size: 1.3rem;
  color: var(--white);
}

.estimate-amount {
  text-align: center;
  margin-bottom: var(--space-4);
}

.currency {
  font-size: 1.2rem;
  opacity: 0.8;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  display: block;
  margin: var(--space-2) 0;
}

.period {
  font-size: 1rem;
  opacity: 0.8;
}

.estimate-note {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
  font-style: italic;
}

/* Submission Sidebar */
.submission-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.sidebar-card {
  background: var(--white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.sidebar-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-6);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.sidebar-card h3 i {
  color: var(--primary-red);
}

.included-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.included-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--gray-700);
}

.included-list li i {
  color: var(--primary-red);
  font-size: 1.2rem;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.step-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-red), var(--red-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
}

.step-content {
  min-height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.step-content strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: var(--space-1);
}

.step-content span {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.5;
}

.trust-card {
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  margin-bottom: var(--space-3);
}

.trust-badge-item:last-child {
  margin-bottom: 0;
}

.trust-badge-item i {
  font-size: 1.5rem;
  color: var(--primary-red);
}

.trust-badge-item span {
  font-weight: 600;
  color: var(--gray-700);
}

.cta-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--blue-medium));
  color: var(--white);
}

.cta-card h3 {
  color: var(--white);
}

.cta-card h3 i {
  color: var(--white);
}

.cta-card p {
  color: var(--white);
  opacity: 0.95;
  margin-bottom: var(--space-6);
}

.btn-contact-sidebar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  width: 100%;
  padding: var(--space-4);
  background: var(--white);
  color: var(--primary-red);
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: var(--transition-base);
}

.btn-contact-sidebar:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

/* FAQ Section Submission */
.faq-section-submission {
  padding: var(--space-20) 0;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.faq-item-modern {
  padding: var(--space-8);
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  transition: var(--transition-base);
}

.faq-item-modern:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.faq-question i {
  font-size: 1.5rem;
  color: var(--primary-red);
}

.faq-question h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.faq-answer {
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   RESPONSIVE - ALL PAGES
   ============================================ */
@media (max-width: 1024px) {
  .mission-grid,
  .team-showcase,
  .commitment-content,
  .contact-form-layout,
  .application-layout,
  .submission-layout-modern {
    grid-template-columns: 1fr;
  }
  
  .mission-content {
    padding-right: 0;
  }
  
  .main-about-image {
    height: 500px;
  }
  
  .trust-right {
    flex-direction: column;
    gap: var(--space-6);
  }
}

@media (max-width: 768px) {
  .form-row-career,
  .form-row-modern,
  .form-row-contact {
    grid-template-columns: 1fr;
  }
  
  .service-type-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-trust-row,
  .hero-benefits-quick {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .contact-methods-grid,
  .benefits-showcase,
  .requirements-grid,
  .expertise-grid,
  .faq-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .form-progress {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .progress-line {
    height: 40px;
    width: 2px;
    max-width: none;
  }
  
  .coverage-content {
    flex-direction: column;
    text-align: center;
  }
  
  .trust-content-contact {
    flex-direction: column;
    text-align: center;
  }
  
  .commitment-ctas {
    flex-direction: column;
  }
  
  .btn-primary-large,
  .btn-secondary-large {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-hero-content h1,
  .contact-hero-content h1,
  .career-hero-content h1,
  .submission-hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-lead,
  .hero-subtitle,
  .hero-lead-career,
  .hero-lead-submission {
    font-size: 1.1rem;
  }
  
  .button-group {
    flex-direction: column;
  }
  
  .btn-back {
    order: 2;
  }
}
