@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800&family=Crimson+Pro:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --navy: #0A1628;
  --navy-mid: #0F2040;
  --navy-light: #1A3560;
  --orange: #F4600C;
  --orange-light: #FF7A2E;
  --orange-glow: rgba(244,96,12,0.15);
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --gray-100: #EEF1F7;
  --gray-300: #C8D0E0;
  --gray-500: #7A8BA8;
  --gray-700: #3D4F6B;
  --text-dark: #0A1628;
  --text-mid: #3D4F6B;
  --text-light: #7A8BA8;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.18);
  --shadow-orange: 0 8px 32px rgba(244,96,12,0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ========== TYPOGRAPHY ========== */
.font-display { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; }
.font-serif { font-family: 'Crimson Pro', serif; }

h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 3px; }

/* ========== PAGE LOADER ========== */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  display: flex; align-items: center; gap: 12px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-bar {
  width: 200px; height: 3px; background: var(--navy-light);
  border-radius: 2px; margin-top: 20px; overflow: hidden;
}
.loader-progress {
  height: 100%; background: var(--orange);
  border-radius: 2px;
  animation: loadProgress 1.8s ease forwards;
}
@keyframes loadProgress { from { width: 0%; } to { width: 100%; } }
@keyframes loaderPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.98); }
}

/* ========== NAVBAR ========== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s ease;
  padding: 0;
}
#navbar.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
#navbar .nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 42px; height: 42px; background: var(--orange);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: white;
  letter-spacing: 1px;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text span:first-child {
  font-family: 'Bebas Neue', sans-serif; font-size: 20px;
  color: white; letter-spacing: 2px;
}
.nav-logo-text span:last-child { font-size: 10px; color: var(--gray-300); letter-spacing: 1.5px; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px;
  font-weight: 500; padding: 8px 14px; border-radius: 8px;
  transition: all 0.25s ease; position: relative; display: flex; align-items: center; gap: 5px;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--orange); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; min-width: 200px;
  padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: all 0.25s ease;
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 8px;
  color: rgba(255,255,255,0.8) !important; font-size: 13px !important;
  transition: all 0.2s ease;
}
.nav-dropdown-menu a:hover { color: white !important; background: var(--orange-glow) !important; color: var(--orange) !important; }
.nav-cta {
  background: var(--orange) !important; color: white !important;
  border-radius: 8px !important; font-weight: 600 !important;
  padding: 10px 20px !important;
  box-shadow: var(--shadow-orange);
}
.nav-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; border-radius: 8px; transition: all 0.2s;
}
.hamburger span {
  width: 24px; height: 2px; background: white; border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
#mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--navy); padding: 100px 24px 40px;
  overflow-y: auto;
  transform: translateX(100%); transition: transform 0.35s ease;
}
#mobile-menu.open { transform: translateX(0); }
.mobile-links { list-style: none; }
.mobile-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-links a {
  display: block; padding: 16px 0; color: white; text-decoration: none;
  font-size: 18px; font-weight: 500; transition: color 0.2s;
}
.mobile-links a:hover { color: var(--orange); }
.mobile-submenu { padding-left: 16px; }
.mobile-submenu a { font-size: 15px; color: rgba(255,255,255,0.7) !important; padding: 10px 0 !important; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s ease; border-radius: 10px;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--orange); color: white;
  padding: 14px 28px; font-size: 15px;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(244,96,12,0.35); }
.btn-secondary {
  background: transparent; color: white;
  padding: 13px 28px; font-size: 15px;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: white; transform: translateY(-2px); }
.btn-navy {
  background: var(--navy); color: white;
  padding: 14px 28px; font-size: 15px;
  box-shadow: var(--shadow-md);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px !important; font-size: 13px !important; }
.btn-lg { padding: 18px 36px !important; font-size: 17px !important; }

/* ========== SECTION HELPERS ========== */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.section-title { font-size: clamp(28px, 4vw, 42px); color: var(--navy); margin-bottom: 16px; }
.section-title-white { color: white; }
.section-subtitle { font-size: 17px; color: var(--text-mid); line-height: 1.7; max-width: 600px; }
.section-subtitle-white { color: rgba(255,255,255,0.75); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ========== GRID ========== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0A1628 0%, #0F2040 40%, #1A3560 100%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(255,255,255,0.5) 40px, rgba(255,255,255,0.5) 41px
  );
}
.hero-glow {
  position: absolute; right: -200px; top: 50%; transform: translateY(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,96,12,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-dots {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-dot {
  position: absolute; border-radius: 50%;
  background: rgba(244,96,12,0.4);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-20px) scale(1.1); opacity: 0.7; }
}
.hero-content { position: relative; z-index: 2; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,96,12,0.15); border: 1px solid rgba(244,96,12,0.3);
  border-radius: 100px; padding: 8px 16px;
  font-size: 12px; font-weight: 600; color: var(--orange);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 84px); color: white;
  letter-spacing: 0.03em; line-height: 1.0; margin-bottom: 24px;
}
.hero-title span { color: var(--orange); }
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,0.75);
  line-height: 1.7; max-width: 560px; margin: 0 auto 40px; text-align: center;
}
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; justify-content: center; }
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 36px;
  color: white; letter-spacing: 1px;
}
.hero-stat-num span { color: var(--orange); }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 1px; font-weight: 500; }
.hero-divider { width: 1px; background: rgba(255,255,255,0.12); align-self: stretch; }
.hero-visual {
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  overflow: hidden;
}
.hero-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 40%);
  pointer-events: none;
}
.hero-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.hero-overlay-card {
  position: absolute; bottom: 60px; right: 60px; z-index: 3;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  animation: cardFloat 4s ease-in-out infinite;
}
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.overlay-card-icon { width: 44px; height: 44px; background: var(--orange); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.overlay-card-text span:first-child { display: block; font-size: 18px; font-weight: 700; color: white; }
.overlay-card-text span:last-child { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ========== SERVICE CARDS ========== */
.service-card {
  background: white; border-radius: 16px;
  padding: 32px; border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm); transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  right: 0; height: 3px; background: var(--orange);
  transform: scaleX(0); transition: transform 0.35s ease;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px; background: var(--orange-glow);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 20px; transition: all 0.3s ease;
}
.service-card:hover .service-icon { background: var(--orange); }
.service-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--text-mid); line-height: 1.65; margin-bottom: 20px; }
.service-link { font-size: 14px; font-weight: 600; color: var(--orange); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.service-link:hover { gap: 10px; }

/* ========== WHY CHOOSE US ========== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: white; border-radius: 16px; padding: 28px;
  border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
  display: flex; align-items: flex-start; gap: 20px;
  transition: all 0.3s ease;
}
.why-card:hover { border-color: var(--orange); box-shadow: 0 8px 40px rgba(244,96,12,0.1); transform: translateY(-4px); }
.why-icon { width: 52px; height: 52px; background: var(--navy); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; transition: all 0.3s ease; }
.why-card:hover .why-icon { background: var(--orange); }
.why-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ========== STATISTICS ========== */
.stats-section { background: var(--navy); padding: 80px 0; overflow: hidden; position: relative; }
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.stat-item {
  position: relative; text-align: center; padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 72px); color: white; line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--orange); }
.stat-label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: 1.5px; text-transform: uppercase; }
.stat-icon { font-size: 32px; margin-bottom: 16px; opacity: 0.3; }

/* ========== HOW IT WORKS ========== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 40px; left: 12.5%; right: 12.5%;
  height: 2px; background: linear-gradient(90deg, var(--orange) 0%, var(--gray-300) 100%);
  z-index: 0;
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.process-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: white; border: 3px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--orange);
  box-shadow: 0 0 0 8px var(--off-white), var(--shadow-md);
  transition: all 0.3s ease;
}
.process-step:hover .process-num { background: var(--orange); color: white; }
.process-step h3 { font-size: 17px; color: var(--navy); margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ========== TESTIMONIALS ========== */
.testimonials-section { background: var(--navy); padding: 96px 0; position: relative; overflow: hidden; }
.testimonials-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #0A1628 0%, #0F2040 100%);
}
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.testimonial-card {
  min-width: 100%; padding: 0 80px;
  position: relative; z-index: 1;
}
.testimonial-inner {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 48px;
  max-width: 800px; margin: 0 auto; text-align: center;
}
.testimonial-stars { font-size: 20px; margin-bottom: 24px; letter-spacing: 4px; color: var(--orange); }
.testimonial-text {
  font-family: 'Crimson Pro', serif; font-size: clamp(18px,2.5vw,24px);
  color: rgba(255,255,255,0.9); line-height: 1.6; font-style: italic;
  margin-bottom: 32px;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.author-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px; color: white;
}
.author-info { text-align: left; }
.author-name { font-size: 16px; font-weight: 600; color: white; }
.author-role { font-size: 13px; color: rgba(255,255,255,0.5); }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: all 0.3s; border: none; }
.slider-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: white; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; z-index: 5; }
.slider-btn:hover { background: var(--orange); border-color: var(--orange); }
.slider-btn-prev { left: 0; }
.slider-btn-next { right: 0; }

/* ========== PARTNERS ========== */
.partners-section { background: var(--off-white); padding: 64px 0; }
.partners-track { display: flex; align-items: center; gap: 60px; overflow: hidden; }
.partner-logo {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  height: 50px; opacity: 0.4; transition: opacity 0.3s; filter: grayscale(1);
}
.partner-logo:hover { opacity: 0.8; filter: none; }
.partner-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 28px;
  color: var(--navy-light); letter-spacing: 4px; white-space: nowrap;
}

/* ========== CTA BANNER ========== */
.cta-banner { background: var(--orange); padding: 80px 0; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange) 0%, #C8420A 100%);
}
.cta-banner::after {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-content { position: relative; z-index: 1; }
.cta-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px,5vw,56px); color: white; margin-bottom: 16px; letter-spacing: 1px; }
.cta-subtitle { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-white { background: white !important; color: var(--orange) !important; }
.btn-white:hover { background: var(--off-white) !important; transform: translateY(-2px) !important; }
.btn-outline-white { background: transparent !important; color: white !important; border: 2px solid rgba(255,255,255,0.5) !important; }
.btn-outline-white:hover { border-color: white !important; background: rgba(255,255,255,0.08) !important; }

/* ========== FOOTER ========== */
.footer { background: var(--navy); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 60px; }
.footer-brand p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 20px 0 28px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 16px;
  text-decoration: none; transition: all 0.3s;
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: white; transform: translateY(-3px); }
.footer-col h4 { font-size: 14px; font-weight: 700; color: white; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--orange); }
.footer-links a::before { content: '›'; color: var(--orange); font-size: 16px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-icon { width: 36px; height: 36px; background: var(--orange-glow); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-text { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-contact-text strong { color: white; font-size: 13px; display: block; margin-bottom: 2px; }
.newsletter-form { display: flex; gap: 8px; margin-top: 16px; }
.newsletter-input {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 12px 16px; color: white; font-family: 'Outfit', sans-serif;
  font-size: 14px; outline: none; transition: border-color 0.2s;
}
.newsletter-input:focus { border-color: var(--orange); }
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-btn { background: var(--orange); color: white; border: none; border-radius: 8px; padding: 12px 16px; cursor: pointer; transition: all 0.3s; font-size: 18px; }
.newsletter-btn:hover { background: var(--orange-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0; display: flex; align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--orange); text-decoration: none; }

/* ========== PAGE HERO ========== */
.page-hero {
  background: var(--navy); padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #0A1628 0%, #0F2040 100%);
}
.page-hero::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0;
  width: 40%; background: rgba(244,96,12,0.04);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px,6vw,72px); color: white; letter-spacing: 2px; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 540px; line-height: 1.65; margin-bottom: 32px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a, .breadcrumb span { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: var(--orange); }

/* ========== ABOUT PAGE ========== */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; border-radius: 20px; display: block; aspect-ratio: 4/3; object-fit: cover; background: var(--gray-100); }
.about-img-placeholder { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-radius: 20px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 80px; }
.about-badge-card {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--orange); color: white; border-radius: 16px;
  padding: 20px 28px; text-align: center; box-shadow: var(--shadow-orange);
}
.about-badge-card .num { font-family: 'Bebas Neue', sans-serif; font-size: 48px; line-height: 1; display: block; }
.about-badge-card .lbl { font-size: 13px; font-weight: 600; letter-spacing: 1px; opacity: 0.9; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: white; border-radius: 16px; padding: 28px 24px; text-align: center; border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); transition: all 0.3s; }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.value-emoji { font-size: 36px; display: block; margin-bottom: 16px; }
.value-card h3 { font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { background: white; border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); transition: all 0.3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-img { height: 220px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); display: flex; align-items: center; justify-content: center; font-size: 72px; }
.team-info { padding: 24px; }
.team-info h3 { font-size: 18px; color: var(--navy); margin-bottom: 4px; }
.team-info .role { font-size: 13px; color: var(--orange); font-weight: 600; margin-bottom: 12px; }
.team-info p { font-size: 14px; color: var(--text-mid); line-height: 1.55; }

/* ========== SERVICE DETAIL PAGES ========== */
.service-detail-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 96px 0; }
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.benefit-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: var(--off-white); border-radius: 12px; transition: all 0.3s; }
.benefit-item:hover { background: white; box-shadow: var(--shadow-sm); }
.benefit-check { width: 28px; height: 28px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.benefit-text strong { display: block; font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.benefit-text span { font-size: 13px; color: var(--text-mid); }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.industry-card { background: white; border: 1px solid var(--gray-100); border-radius: 14px; padding: 24px; text-align: center; box-shadow: var(--shadow-sm); transition: all 0.3s; }
.industry-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.industry-icon { font-size: 32px; margin-bottom: 12px; display: block; }
.industry-card span { font-size: 14px; font-weight: 600; color: var(--navy); }

/* ========== CONTACT PAGE ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info-card { background: var(--navy); border-radius: 20px; padding: 40px; }
.contact-info-card h3 { font-size: 24px; color: white; margin-bottom: 8px; }
.contact-info-card > p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-detail-icon { width: 48px; height: 48px; background: var(--orange-glow); border: 1px solid rgba(244,96,12,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-detail-text label { display: block; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.contact-detail-text a, .contact-detail-text p { font-size: 15px; color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; line-height: 1.5; }
.contact-detail-text a:hover { color: var(--orange); }
.whatsapp-btn { width: 100%; margin-top: 32px; background: #25D366; color: white; padding: 16px; border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 16px; font-weight: 600; text-decoration: none; transition: all 0.3s; border: none; cursor: pointer; }
.whatsapp-btn:hover { background: #20BA5A; transform: translateY(-2px); }
.contact-form-card { background: white; border-radius: 20px; padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); }
.contact-form-card h3 { font-size: 24px; color: var(--navy); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; letter-spacing: 0.3px; }
input, select, textarea {
  width: 100%; background: var(--off-white); border: 1.5px solid var(--gray-100);
  border-radius: 10px; padding: 13px 16px; font-family: 'Outfit', sans-serif;
  font-size: 15px; color: var(--text-dark); outline: none;
  transition: all 0.25s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--orange); background: white; box-shadow: 0 0 0 3px rgba(244,96,12,0.08); }
input::placeholder, textarea::placeholder { color: var(--gray-500); }
textarea { resize: vertical; min-height: 120px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A8BA8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; cursor: pointer; }
.form-success { background: #ECFDF5; border: 1.5px solid #6EE7B7; border-radius: 12px; padding: 20px; text-align: center; display: none; }
.form-success.show { display: block; animation: fadeIn 0.3s ease; }
.form-success p { color: #065F46; font-weight: 600; }
.map-placeholder { height: 400px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px; }
.map-placeholder span { font-size: 48px; }
.map-placeholder p { color: rgba(255,255,255,0.6); font-size: 16px; }

/* ========== QUOTE PAGE ========== */
.quote-form-wrap { background: white; border-radius: 24px; padding: 48px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100); }
.quote-sidebar { background: var(--navy); border-radius: 20px; padding: 36px; height: fit-content; }
.quote-sidebar h3 { font-size: 22px; color: white; margin-bottom: 20px; }
.quote-feature { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.quote-feature-icon { width: 40px; height: 40px; background: var(--orange-glow); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.quote-feature-text strong { display: block; font-size: 14px; color: white; margin-bottom: 3px; }
.quote-feature-text span { font-size: 13px; color: rgba(255,255,255,0.55); }
.form-divider { font-size: 12px; font-weight: 700; color: var(--gray-500); letter-spacing: 2px; text-transform: uppercase; margin: 28px 0 24px; display: flex; align-items: center; gap: 12px; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-100); }

/* ========== BLOG PAGE ========== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: white; border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); transition: all 0.35s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 56px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.blog-body { padding: 28px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-cat { font-size: 11px; font-weight: 700; color: var(--orange); background: var(--orange-glow); padding: 4px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 1px; }
.blog-date { font-size: 12px; color: var(--text-light); }
.blog-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 12px; line-height: 1.4; }
.blog-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 20px; }
.read-more { font-size: 14px; font-weight: 600; color: var(--orange); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.read-more:hover { gap: 10px; }
.blog-featured { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; margin-bottom: 48px; }
.blog-featured-card { background: var(--navy); border-radius: 20px; overflow: hidden; }
.blog-featured-img { height: 300px; display: flex; align-items: center; justify-content: center; font-size: 80px; background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%); }
.blog-featured-body { padding: 32px; }
.blog-featured-body h2 { font-size: 24px; color: white; margin-bottom: 12px; line-height: 1.3; }
.blog-featured-body p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 24px; }

/* ========== FAQ PAGE ========== */
.faq-accordion { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: white; border-radius: 14px; border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: transparent; border: none; cursor: pointer;
  text-align: left; font-family: 'Outfit', sans-serif;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--off-white); }
.faq-item.open .faq-question { background: var(--off-white); }
.faq-question span { font-size: 16px; font-weight: 600; color: var(--navy); flex: 1; padding-right: 16px; }
.faq-icon { width: 32px; height: 32px; background: var(--orange-glow); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 20px; flex-shrink: 0; transition: all 0.3s; }
.faq-item.open .faq-icon { background: var(--orange); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-answer-inner { padding: 0 24px 24px; font-size: 15px; color: var(--text-mid); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 500px; }

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ========== FLOATING BUTTONS ========== */
.floating-btns { position: fixed; bottom: 32px; right: 32px; z-index: 998; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.float-whatsapp {
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 26px; box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  text-decoration: none; transition: all 0.3s; animation: floatPulse 2s ease infinite;
}
.float-whatsapp:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }
@keyframes floatPulse {
  0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.1); }
}
#scroll-top {
  width: 44px; height: 44px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px; cursor: pointer; border: none;
  box-shadow: var(--shadow-md); transition: all 0.3s;
  opacity: 0; visibility: hidden;
}
#scroll-top.show { opacity: 1; visibility: visible; }
#scroll-top:hover { background: var(--orange); transform: translateY(-3px); }

/* ========== BACKGROUND SECTIONS ========== */
.bg-navy { background: var(--navy); }
.bg-light { background: var(--off-white); }
.bg-white { background: white; }

/* ========== TAGS / CHIPS ========== */
.tag { display: inline-block; background: var(--orange-glow); color: var(--orange); font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 100px; letter-spacing: 0.5px; }
.tag-navy { background: rgba(10,22,40,0.08); color: var(--navy); }

/* ========== INFO BOXES ========== */
.info-box { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); border-radius: 20px; padding: 40px; color: white; }
.info-box h3 { font-size: 22px; margin-bottom: 12px; }
.info-box p { color: rgba(255,255,255,0.7); line-height: 1.65; margin-bottom: 24px; }

/* ========== PAGE NAVIGATION ========== */
.page-nav { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.page-nav-btn {
  padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.2s;
  background: var(--gray-100); color: var(--text-mid);
}
.page-nav-btn:hover, .page-nav-btn.active { background: var(--orange); color: white; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-story { grid-template-columns: 1fr; gap: 48px; }
  .about-badge-card { position: static; margin-top: 20px; display: inline-block; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #mobile-menu { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 0 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .hero-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: flex-start; }
  .section { padding: 64px 0; }
  .service-detail-header { grid-template-columns: 1fr; gap: 40px; padding: 64px 0; }
  .hero-overlay-card { display: none; }
  .floating-btns { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 0 16px; }
  .testimonial-inner { padding: 28px 20px; }
  .quote-form-wrap { padding: 24px; }
  .contact-form-card { padding: 24px; }
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ========== NAVBAR TRANSPARENT ON HERO ========== */
#navbar:not(.scrolled) {
  background: linear-gradient(180deg, rgba(10,22,40,0.85) 0%, transparent 100%);
}

/* ========== SIDEBAR FAQ RESPONSIVE ========== */
@media (max-width: 900px) {
  #page-faq .container > div,
  .faq-sidebar-grid {
    grid-template-columns: 1fr !important;
  }
  #page-faq [style*="position:sticky"] {
    position: static !important;
  }
}

/* ========== QUOTE FORM RESPONSIVE ========== */
@media (max-width: 900px) {
  .quote-form-wrap + div,
  [style*="grid-template-columns:1fr 340px"] {
    grid-template-columns: 1fr !important;
  }
}

/* ========== BLOG FEATURED RESPONSIVE ========== */
@media (max-width: 900px) {
  .blog-featured {
    grid-template-columns: 1fr !important;
  }
}

/* ========== ABOUT STORY GRID ========== */
@media (max-width: 900px) {
  .about-story {
    grid-template-columns: 1fr !important;
  }
  .about-badge-card {
    position: static !important;
    margin-top: 16px;
    display: inline-block;
  }
}

/* ========== WHY SECTION GRIDS ========== */
.why-outer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 900px) {
  .why-outer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .why-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ========== HERO RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding: 80px 0 60px;
    display: flex;
    align-items: center;
  }
  .hero-title {
    font-size: clamp(40px, 10vw, 56px) !important;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta .btn {
    text-align: center;
    justify-content: center;
  }
}

/* ========== CONTACT GRID RESPONSIVE ========== */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ========== CTA BANNER RESPONSIVE ========== */
@media (max-width: 768px) {
  .cta-banner .container > div[style*="grid"] {
    grid-template-columns: 1fr !important;
  }
}

/* ========== FOOTER BOTTOM RESPONSIVE ========== */
@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ========== SERVICE DETAIL GRID RESPONSIVE ========== */
@media (max-width: 768px) {
  .service-detail-header {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 48px 0 !important;
  }
}

/* ========== PROCESS GRID RESPONSIVE ========== */
@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr !important;
  }
  .process-grid::before {
    display: none !important;
  }
}

/* ========== INDUSTRIES GRID RESPONSIVE ========== */
@media (max-width: 480px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ========== STATS RESPONSIVE ========== */
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    padding: 28px 20px !important;
  }
}

/* ========== TEAM GRID RESPONSIVE ========== */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ========== VALUES GRID RESPONSIVE ========== */
@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ========== BLOG GRID RESPONSIVE ========== */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ========== PARTNERS RESPONSIVE ========== */
@media (max-width: 600px) {
  .partner-logo .partner-name {
    font-size: 20px !important;
  }
}

/* ========== FORM SUCCESS ========== */
@keyframes slideIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-success.show {
  animation: slideIn 0.4s ease forwards;
}

/* ========== MOBILE MENU Z-INDEX FIX ========== */
#mobile-menu {
  z-index: 999;
}

/* ========== SMOOTH PAGE REVEAL ========== */
.page {
  animation: pageFadeIn 0.4s ease;
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========== LINK HOVER UNDERLINE ========== */
.footer-links a::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  margin-top: 2px;
}
.footer-links a:hover::after {
  transform: scaleX(1);
}

/* ========== SCROLL INDICATOR ========== */
.hero::after {
  content: '';
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  z-index: 10;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  z-index: 11;
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80%      { transform: translateX(-50%) translateY(10px); opacity: 0; }
}
