/* ============================================================
   PM1 FLEET — Premium Corporate Stylesheet
   Colors: Blue #2563eb (primary), #0ea5e9 (accent)
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors - Elegant & Minimal */
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --accent: #0ea5e9;
  --dark: #0f172a;
  --gray-900: #1e293b;
  --gray-800: #334155;
  --gray-700: #475569;
  --gray-600: #64748b;
  --gray-500: #94a3b8;
  --gray-400: #cbd5e1;
  --gray-300: #e2e8f0;
  --gray-200: #f1f5f9;
  --gray-100: #f8fafc;
  --white: #ffffff;
  --success: #10b981;
  --warning: #f59e0b;
  
  /* Red Colors for Logo Theme */
  --red: #dc2626;
  --red-dark: #b91c1c;
  --red-light: #ef4444;
  --red-accent: #f87171;
  --fleet-red: #e63946;
  
  /* Light Background Colors */
  --off-white: #fafbfc;
  --light-gray: #f8f9fa;
  --soft-blue: #e8f4fd;
  --pale-blue: #f0f7ff;
  --light-wash: #f5f7fa;

  --font-main:    'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;

  /* Shadows - Subtle & Elegant */
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px 0 rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --shadow-glow:  0 0 40px rgba(45,91,255,0.3);
  --shadow-red:   0 8px 32px rgba(255,51,102,0.25);

  /* Border Radius - Subtle rounded corners */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Transition - Smooth animations */
  --transition:   all 0.4s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: all 0.6s cubic-bezier(0.4,0,0.2,1);
  --transition-bounce: all 0.5s cubic-bezier(0.68,-0.55,0.265,1.55);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--gray-700);
  background: linear-gradient(135deg, var(--off-white) 0%, var(--soft-blue) 25%, var(--pale-blue) 50%, var(--light-wash) 75%, var(--off-white) 100%);
  background-attachment: fixed;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION PADDING ===== */
.section-pad { padding: 120px 0; }
.bg-light { 
  background: linear-gradient(180deg, var(--soft-blue) 0%, var(--pale-blue) 50%, var(--light-wash) 100%);
}

/* ===== TYPOGRAPHY HELPERS ===== */
.section-label {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.section-label-light { color: rgba(255,255,255,0.6); }
.section-title {
  font-family: var(--font-cond);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.section-desc {
  color: var(--gray-600);
  font-size: 17px;
  margin-top: 14px;
  max-width: 560px;
}
.text-white { color: var(--white) !important; }
.text-accent { color: var(--accent); }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-desc { margin: 14px auto 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.btn:hover::before {
  opacity: 1;
}
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline-white {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
}
/* Logo image in navbar */
.nav-logo .logo-img {
  height: 48px;
  width: auto;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled .logo-img {
  height: 42px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.scrolled .nav-link { 
  color: var(--gray-700);
  text-transform: none;
  font-size: 14px;
}
.scrolled .nav-link:hover, .scrolled .nav-link.active {
  color: var(--primary);
  background: var(--light-gray);
}
.nav-cta { 
  margin-left: 16px; 
  padding: 10px 24px; 
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 25%, #3b82f6 50%, #e63946 75%, #dc2626 100%);
  padding: 120px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* Upload background shapes */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(14,165,233,0.05) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: floatShape 20s ease-in-out infinite;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(14,165,233,0.08) 0%, rgba(37,99,235,0.04) 100%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: floatShape 15s ease-in-out infinite reverse;
}

/* Floating circular icons */
.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.floating-icon:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
  transform: scale(1.1);
}

/* Icon 1 - Truck */
.floating-icon:nth-child(1) {
  top: 15%;
  left: 10%;
  animation: floatIcon1 25s ease-in-out infinite;
}

/* Icon 2 - Wrench */
.floating-icon:nth-child(2) {
  top: 25%;
  right: 15%;
  animation: floatIcon2 30s ease-in-out infinite;
}

/* Icon 3 - Shield */
.floating-icon:nth-child(3) {
  top: 60%;
  left: 8%;
  animation: floatIcon3 28s ease-in-out infinite;
}

/* Icon 4 - Clock */
.floating-icon:nth-child(4) {
  top: 70%;
  right: 12%;
  animation: floatIcon4 32s ease-in-out infinite;
}

/* Icon 5 - Box */
.floating-icon:nth-child(5) {
  top: 40%;
  left: 20%;
  animation: floatIcon5 27s ease-in-out infinite;
}

/* Icon 6 - Star */
.floating-icon:nth-child(6) {
  top: 45%;
  right: 25%;
  animation: floatIcon6 35s ease-in-out infinite;
}

/* Floating animations */
@keyframes floatIcon1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -20px) rotate(90deg); }
  50% { transform: translate(-20px, 30px) rotate(180deg); }
  75% { transform: translate(20px, 20px) rotate(270deg); }
}

@keyframes floatIcon2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-40px, 25px) rotate(120deg); }
  66% { transform: translate(30px, -30px) rotate(240deg); }
}

@keyframes floatIcon3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  20% { transform: translate(25px, 15px) rotate(72deg); }
  40% { transform: translate(-30px, 20px) rotate(144deg); }
  60% { transform: translate(35px, -25px) rotate(216deg); }
  80% { transform: translate(-15px, -20px) rotate(288deg); }
}

@keyframes floatIcon4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-25px, -30px) rotate(90deg); }
  50% { transform: translate(40px, 15px) rotate(180deg); }
  75% { transform: translate(-15px, 25px) rotate(270deg); }
}

@keyframes floatIcon5 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  30% { transform: translate(35px, 20px) rotate(108deg); }
  60% { transform: translate(-25px, -35px) rotate(216deg); }
}

@keyframes floatIcon6 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  40% { transform: translate(-30px, 25px) rotate(144deg); }
  80% { transform: translate(20px, -20px) rotate(288deg); }
}
@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(120deg); }
  66% { transform: translateY(10px) rotate(240deg); }
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: -1px -1px;
}
.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-cond);
  font-size: 200px;
  font-weight: 900;
  color: rgba(255,255,255,0.015);
  letter-spacing: 30px;
  z-index: 1;
  user-select: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 64, 175, 0.7) 0%,
    rgba(37, 99, 235, 0.5) 25%,
    rgba(59, 130, 246, 0.4) 50%,
    rgba(230, 57, 70, 0.6) 75%,
    rgba(220, 38, 38, 0.8) 100%
  );
  z-index: 2;
}
/* Remove speed lines for cleaner look */
.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1300px;
}
.hero-main {
  animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-title {
  font-family: var(--font-cond);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease-out 0.2s both;
}
.hero-title .text-accent {
  color: var(--accent);
  display: block;
  margin-top: 8px;
}

/* Freight Highlight Animation */
.freight-highlight {
  position: relative;
  color: var(--white) !important;
  background: linear-gradient(
    90deg, 
    #ffffff 0%, 
    var(--red-accent) 10%, 
    var(--red) 25%, 
    #ffffff 40%, 
    var(--accent) 55%, 
    #ffffff 70%, 
    var(--primary) 85%, 
    #ffffff 100%
  );
  background-size: 400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: freightMove 8s ease-in-out infinite, freightGlow 4s ease-in-out infinite alternate;
  text-shadow: 0 0 40px rgba(230, 57, 70, 0.3);
  position: relative;
}

.freight-highlight::before {
  content: 'FREIGHT MOVING';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.1) 50%,
    transparent 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: freightShine 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes freightMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes freightGlow {
  0% { 
    filter: brightness(1) drop-shadow(0 0 25px rgba(230, 57, 70, 0.4));
    transform: scale(1);
  }
  100% { 
    filter: brightness(1.1) drop-shadow(0 0 35px rgba(37, 99, 235, 0.5));
    transform: scale(1.005);
  }
}

@keyframes freightShine {
  0% { 
    background-position: -100% 50%;
    opacity: 0;
  }
  50% { 
    background-position: 100% 50%;
    opacity: 1;
  }
  100% { 
    background-position: 300% 50%;
    opacity: 0;
  }
}
.hero-sub {
  font-size: clamp(17px, 1.5vw, 19px);
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  line-height: 1.65;
  font-weight: 400;
  max-width: 540px;
  animation: fadeInUp 1s ease-out 0.4s both;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeInUp 1s ease-out 0.8s both;
}

/* ===== CIRCULAR SERVICE ICONS ===== */
.service-circle {
  position: relative;
  width: 450px;
  height: 450px;
  margin: 0 0 40px auto;
}
.circle-track {
  position: absolute;
  inset: 0;
  animation: rotateCircle 20s linear infinite;
}
.service-icon-circle {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(37, 99, 235, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
}
.service-icon-circle:hover {
  transform: scale(1.1);
  background: rgba(255,255,255,1);
  border-color: rgba(37, 99, 235, 0.6);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.25);
}
.service-icon-circle i {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 4px;
  transition: var(--transition);
}
.service-name {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1;
}

/* Position icons in circle - Equal 60-degree spacing */
.service-icon-circle:nth-child(1) { 
  top: 10%; 
  left: 50%; 
  transform: translateX(-50%) translateY(-50%); 
}
.service-icon-circle:nth-child(2) { 
  top: 30%; 
  right: 15%; 
  transform: translateY(-50%) translateX(50%); 
}
.service-icon-circle:nth-child(3) { 
  bottom: 30%; 
  right: 15%; 
  transform: translateY(50%) translateX(50%); 
}
.service-icon-circle:nth-child(4) { 
  bottom: 10%; 
  left: 50%; 
  transform: translateX(-50%) translateY(50%); 
}
.service-icon-circle:nth-child(5) { 
  bottom: 30%; 
  left: 15%; 
  transform: translateY(50%) translateX(-50%); 
}
.service-icon-circle:nth-child(6) { 
  top: 30%; 
  left: 15%; 
  transform: translateY(-50%) translateX(-50%); 
  animation: rotateReverse 20s linear infinite;
}

.circle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border: 3px solid rgba(37, 99, 235, 0.4);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 15px 45px rgba(37, 99, 235, 0.2);
}
.center-icon {
  font-size: 40px;
  color: var(--accent);
}
.center-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.center-text {
  font-family: var(--font-cond);
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 2px;
}
.center-subtext {
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
}

@keyframes rotateCircle {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateReverse {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes rotateCenter {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* ===== HERO STATS LIST ===== */
.hero-stats-list {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  text-align: center;
  min-width: 140px;
}
.hero-stat:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.hero-stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(14,165,233,0.15);
  border: 1px solid rgba(14,165,233,0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}
.hero-stat-content {
  display: flex;
  flex-direction: column;
}
.hero-stat-title {
  font-family: var(--font-cond);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-desc {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.3;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 24px 0;
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  padding: 8px 20px;
  letter-spacing: 0.3px;
  transition: var(--transition);
}
.trust-item:hover {
  color: var(--white);
}
.trust-item i {
  color: var(--accent);
  font-size: 18px;
  transition: var(--transition);
}
.trust-item:hover i {
  color: var(--accent);
  transform: scale(1.1);
}
.trust-sep {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.2);
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-visuals {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-main:hover img { transform: scale(1.03); }
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-img-secondary img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.about-badge-float {
  position: absolute;
  top: 40px;
  left: -24px;
  background: var(--accent);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(200,16,46,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.float-num {
  font-family: var(--font-cond);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}
.float-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.85;
  text-align: center;
  max-width: 80px;
  margin-top: 4px;
}
.about-lead {
  font-size: 17px;
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 16px;
  margin-top: 20px;
}
.about-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 32px;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pillar-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
}
.pillar-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.pillar-info p {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card-wide {
  grid-column: span 3;
  max-width: 500px;
  justify-self: center;
  width: 100%;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px 36px;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
  box-shadow: var(--shadow-card);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  opacity: 0;
  transition: var(--transition-slow);
  z-index: 0;
}
.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition-slow);
  z-index: 1;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--gray-100) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card:hover .service-icon {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}
.card-number {
  font-family: var(--font-cond);
  font-size: 56px;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  transition: var(--transition);
  opacity: 0.5;
}
.service-card:hover .card-number { 
  color: rgba(255,255,255,0.08); 
  opacity: 1;
}
.service-card h3 {
  font-family: var(--font-cond);
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
  transition: var(--transition);
  letter-spacing: -0.3px;
}
.service-card:hover h3 { color: var(--white); }
.service-card p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 28px;
  transition: var(--transition);
}
.service-card:hover p { color: rgba(255,255,255,0.85); }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.3px;
  transition: var(--transition);
  padding: 8px 0;
}
.card-link i { 
  font-size: 13px; 
  transition: var(--transition); 
}
.card-link:hover i { transform: translateX(6px); }
.service-card:hover .card-link { 
  color: var(--white); 
}
.service-card:hover .card-link i {
  animation: arrowBounce 0.6s ease infinite;
}
@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}
.card-accent-bar {
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 100%);
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -2px 10px rgba(255,51,102,0.3);
}
.service-card:hover .card-accent-bar { width: 100%; }

/* ===== WHY US ===== */
.why-us {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 25%, #fef3c7 50%, #fce7f3 75%, #e9d5ff 100%);
}
.why-us-bg {
  position: absolute;
  inset: 0;
  opacity: 0.85;
}
.why-us-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(224,242,254,0.8) 0%,
    rgba(240,249,255,0.7) 20%,
    rgba(254,243,199,0.6) 40%,
    rgba(252,231,243,0.7) 60%,
    rgba(233,213,255,0.8) 80%,
    rgba(224,242,254,0.9) 100%
  );
  animation: pastelShift 15s ease-in-out infinite;
}
@keyframes pastelShift {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.05); }
}
.why-us-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) saturate(0.3);
}
.why-us-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,23,42,0.85) 0%,
    rgba(30,41,59,0.75) 50%,
    rgba(15,23,42,0.85) 100%
  );
  z-index: 2;
}
.why-us-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-desc {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  line-height: 1.7;
  margin: 16px 0 36px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 17px;
  transition: var(--transition);
}
.why-list li:hover .why-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.why-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.why-text span {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}
.why-card-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-highlight-card {
  background: var(--accent);
  border-radius: var(--radius-md);
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-highlight-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.why-hl-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  margin: 0 auto 16px;
}
.why-highlight-card h3 {
  font-family: var(--font-cond);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.why-highlight-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}
.why-number-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-num-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
  transition: var(--transition);
}
.why-num-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.wn-big {
  display: block;
  font-family: var(--font-cond);
  font-size: 34px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.wn-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--accent);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-line {
  position: absolute;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}
.cl1 { width: 60%; top: 30%; left: -10%; transform: rotate(-8deg); }
.cl2 { width: 40%; top: 55%; left: 20%; transform: rotate(-8deg); }
.cl3 { width: 70%; top: 70%; left: 30%; transform: rotate(-8deg); }
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-icon-wrap {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  margin: 0 auto 24px;
}
.cta-inner h2 {
  font-family: var(--font-cond);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.cta-inner p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin-bottom: 36px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  align-items: start;
}
.testimonial-featured {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--accent);
  position: relative;
}
.testi-quote-mark {
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.7;
}
.testi-text {
  font-size: 17px;
  color: var(--gray-800);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 32px;
}
.testi-author {
  display: flex;
  gap: 16px;
  align-items: center;
}
.testi-avatar {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 800;
}
.testi-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}
.testi-info span {
  font-size: 13px;
  color: var(--gray-400);
  display: block;
  margin-top: 2px;
}
.testi-stars { color: #f59e0b; font-size: 13px; margin-top: 6px; display: flex; gap: 3px; }
.testi-info .testi-stars { justify-content: flex-start; }
.testimonials-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.testimonial-card .testi-stars { margin-bottom: 14px; }
.testimonial-card p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author-small {
  display: flex;
  gap: 12px;
  align-items: center;
}
.testi-avatar-sm {
  width: 40px; height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.testi-author-small strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.testi-author-small span {
  font-size: 12px;
  color: var(--gray-400);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
  height: 100%;
}
.contact-info-card h3 {
  font-family: var(--font-cond);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}
.contact-info-card > p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cd-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
}
.cd-text span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 3px;
}
.cd-text a {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}
.cd-text a:hover { color: rgba(255,255,255,0.75); }
.contact-social {
  display: flex;
  gap: 12px;
}
.contact-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  transition: var(--transition);
}
.contact-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}
/* Contact Form */
.contact-form-wrap { position: relative; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 7px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.form-group label span { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--dark);
  background: var(--off-white);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(30,77,183,0.1);
}
.form-group textarea { resize: vertical; }
.form-note {
  text-align: center;
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--gray-400);
}
.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.form-success.visible { display: block; }
.success-icon {
  font-size: 60px;
  color: #22c55e;
  margin-bottom: 16px;
}
.form-success h4 {
  font-family: var(--font-cond);
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-success p {
  font-size: 15px;
  color: var(--gray-600);
}

/* ===== FOOTER ===== */
.footer { background: var(--dark); }
.footer-top { padding: 72px 0 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-logo .footer-logo-img {
  height: 72px;
  width: auto;
  margin-bottom: 18px;
  background: transparent;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.footer-col h4 {
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: inline-block;
}
.footer-col ul li a:hover {
  color: var(--white);
  transform: translateX(4px);
}
.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.footer-contact-list i {
  color: var(--accent);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-list a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-contact-list a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 46px; height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: var(--transition);
  cursor: pointer;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* ===== AOS-LIKE SCROLL ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-left"]  { transform: translateX(28px); }
[data-aos="zoom-in"]    { transform: scale(0.94); }
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visuals { max-width: 600px; margin: 0 auto; }
  .about-img-secondary { right: -20px; }
  .why-us-inner { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }
  .hero-content { 
    grid-template-columns: 1fr; 
    gap: 60px; 
    text-align: center; 
    padding-top: 100px;
  }
  .hero-stats { align-items: center; max-width: 600px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  /* Mobile nav drawer */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    padding: 80px 28px 40px;
    gap: 6px;
    z-index: 999;
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
  }
  .nav-links.mobile-open .nav-link {
    color: rgba(255,255,255,0.8);
    padding: 12px 16px;
    font-size: 16px;
    text-transform: none;
  }
  .nav-links.mobile-open .nav-link:hover { background: rgba(255,255,255,0.08); color: var(--white); }
  .mobile-overlay.active { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: span 1; max-width: 100%; }
  .hero-stats { gap: 16px; padding-top: 20px; }
  .hero-carousel { height: 240px; }
  .hero-stats-list { gap: 12px; }
  .hero-stat { padding: 20px 24px; }
  .hero-stat-title { font-size: 28px; }
  .trust-bar-inner { gap: 4px; }
  .trust-sep { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .contact-info-card { padding: 36px 28px; }
  .testimonial-featured { padding: 32px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: span 1; }
  .about-img-secondary { display: none; }
  .about-badge-float { left: 0; }
  .why-card-stack { margin-top: 0; }
  .hide-mobile { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 42px; line-height: 0.85; }
  .hero-sub { font-size: 16px; }
  .hero-cta-group { flex-direction: column; gap: 12px; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .why-number-grid { grid-template-columns: 1fr 1fr; }
  .hero-watermark { font-size: 180px; }
}
