/* =============================
   RESET & BASE
============================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --accent: #f59e0b;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --dark-3: #334155;
  --mid: #64748b;
  --light: #f1f5f9;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* =============================
   TYPOGRAPHY HELPERS
============================= */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(37,99,235,0.1);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-header p {
  color: var(--mid);
  font-size: 1.05rem;
}

/* =============================
   BUTTONS
============================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,99,235,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,99,235,0.45);
}
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-nav {
  background: var(--gradient);
  color: var(--white);
  padding: 9px 20px;
  font-size: 0.88rem;
  box-shadow: 0 2px 12px rgba(37,99,235,0.3);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(37,99,235,0.4); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* =============================
   NAVBAR
============================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
}
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}
.navbar.scrolled .logo-img {
  filter: none;
}
.footer-logo-img {
  height: 70px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.88);
  padding: 7px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--dark-3); }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.15); }
.navbar.scrolled .nav-links a:hover { color: var(--primary); background: rgba(37,99,235,0.08); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }

/* =============================
   HERO
============================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
/* Hero Slideshow — 11 slides × 6 s = 66 s cycle */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlide 66s linear infinite;
  will-change: opacity;
}
.hero-slide:nth-child(1)  { animation-delay:  0s; }
.hero-slide:nth-child(2)  { animation-delay:  6s; }
.hero-slide:nth-child(3)  { animation-delay: 12s; }
.hero-slide:nth-child(4)  { animation-delay: 18s; }
.hero-slide:nth-child(5)  { animation-delay: 24s; }
.hero-slide:nth-child(6)  { animation-delay: 30s; }
.hero-slide:nth-child(7)  { animation-delay: 36s; }
.hero-slide:nth-child(8)  { animation-delay: 42s; }
.hero-slide:nth-child(9)  { animation-delay: 48s; }
.hero-slide:nth-child(10) { animation-delay: 54s; }
.hero-slide:nth-child(11) { animation-delay: 60s; }
@keyframes heroSlide {
  0%     { opacity: 0; }
  1.52%  { opacity: 1; }
  7.58%  { opacity: 1; }
  9.09%  { opacity: 0; }
  100%   { opacity: 0; }
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.80) 0%, rgba(30,58,138,0.50) 50%, rgba(15,23,42,0.80) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,0.15);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 1; transform: scaleY(1) translateY(0); }
  100% { opacity: 0; transform: scaleY(0.5) translateY(20px); }
}

/* =============================
   SERVICES — card grid (home page preview)
============================= */
.services {
  padding: 100px 0;
  background: var(--light);
}

/* =============================
   SERVICES — alternating rows (services.html)
============================= */

/* Photo variant — replaces the gradient panel with a real image */
.srv-img--photo {
  padding: 0;
  background: var(--dark);
}
.srv-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.srv-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.45) 0%, rgba(15,23,42,0.1) 100%);
  pointer-events: none;
}
.srv-section {
  background: var(--white);
}

.srv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}

.srv-row--reverse .srv-img  { order: 2; }
.srv-row--reverse .srv-body { order: 1; }

/* Alternating body backgrounds */
.srv-row:nth-child(odd)  .srv-body { background: var(--white); }
.srv-row:nth-child(even) .srv-body { background: var(--light); }

/* Image panel */
.srv-img {
  position: relative;
  background: linear-gradient(145deg, var(--c1), var(--c2));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 40px;
}

/* Subtle dot-grid pattern overlay */
.srv-img-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

/* Large service icon */
.srv-img-icon {
  position: relative;
  z-index: 1;
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  backdrop-filter: blur(4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.srv-img-icon svg {
  width: 88px;
  height: 88px;
}

/* Large number watermark */
.srv-img-num {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* Body / content panel */
.srv-body {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.srv-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(37,99,235,0.08);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  width: fit-content;
}

.srv-body h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.srv-desc {
  font-size: 0.97rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 480px;
}

.srv-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin-bottom: 28px;
}
.srv-list li {
  font-size: 0.88rem;
  color: var(--dark-3);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
}
.srv-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.srv-btn {
  align-self: flex-start;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  cursor: default;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37,99,235,0.2);
}
.service-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.06);
}
.service-card-body {
  padding: 22px 24px;
}
.service-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.65;
}

/* =============================
   WHY US
============================= */
.why-us {
  padding: 100px 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.why-content .section-tag { margin-bottom: 14px; }
.why-content h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.why-intro {
  color: var(--mid);
  font-size: 1.02rem;
  margin-bottom: 36px;
}
.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--gradient);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.why-item h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.why-item p {
  font-size: 0.88rem;
  color: var(--mid);
}
.why-visual {
  position: relative;
  height: 420px;
}
.visual-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  animation: float 4s ease-in-out infinite;
}
.visual-card:hover { transform: scale(1.04); }
.vc-icon { font-size: 1.4rem; }
.vc-1 { top: 10%; left: 0; animation-delay: 0s; }
.vc-2 { top: 10%; right: 0; animation-delay: 1s; }
.vc-3 { bottom: 15%; left: 0; animation-delay: 2s; }
.vc-4 { bottom: 15%; right: 0; animation-delay: 0.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.visual-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(37,99,235,0.4);
}
.vc-center-text {
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}
.big-num {
  font-size: 2.4rem;
  font-weight: 800;
}
.vc-center-text span:last-child {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.85;
}

/* =============================
   CONTACT
============================= */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1e3a8a 100%);
}
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.6); }
.light-tag {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.contact-grid--4 {
  grid-template-columns: repeat(2, 1fr);
}
.contact-link--email {
  font-size: 0.88rem;
  word-break: break-all;
}
.contact-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.featured-card {
  background: rgba(37,99,235,0.25);
  border-color: rgba(37,99,235,0.5);
}
.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--white);
}
.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.contact-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}
.contact-link:hover { color: var(--white); }
.cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 30px 36px;
  flex-wrap: wrap;
}
.cta-bar p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  flex: 1;
  min-width: 200px;
}

/* =============================
   FOOTER
============================= */
.footer {
  background: var(--dark);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer .logo-text { color: var(--white); }
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
}
.footer-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  padding: 5px 12px;
  border-radius: 6px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.footer-email {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  word-break: break-all;
  transition: var(--transition);
}
.footer-email:hover { color: var(--primary); }
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* =============================
   ACTIVE NAV LINK
============================= */
.nav-links .nav-active {
  color: var(--accent) !important;
  font-weight: 700;
}
.navbar.scrolled .nav-links .nav-active {
  color: var(--primary) !important;
}
.nav-active-btn {
  outline: 2px solid var(--accent) !important;
  outline-offset: 2px;
}

/* =============================
   PAGE BANNER (inner pages)
============================= */
.page-banner {
  position: relative;
  padding: 130px 0 70px;
  overflow: hidden;
  background: var(--dark);
}
/* Banner Slideshow — reuses heroSlide keyframes */
.banner-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.banner-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlide 66s linear infinite;
  will-change: opacity;
}
.banner-slide:nth-child(1)  { animation-delay:  0s; }
.banner-slide:nth-child(2)  { animation-delay:  6s; }
.banner-slide:nth-child(3)  { animation-delay: 12s; }
.banner-slide:nth-child(4)  { animation-delay: 18s; }
.banner-slide:nth-child(5)  { animation-delay: 24s; }
.banner-slide:nth-child(6)  { animation-delay: 30s; }
.banner-slide:nth-child(7)  { animation-delay: 36s; }
.banner-slide:nth-child(8)  { animation-delay: 42s; }
.banner-slide:nth-child(9)  { animation-delay: 48s; }
.banner-slide:nth-child(10) { animation-delay: 54s; }
.banner-slide:nth-child(11) { animation-delay: 60s; }
.banner-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(30,58,138,0.60) 50%, rgba(15,23,42,0.88) 100%);
  z-index: 1;
}
.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-banner-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin: 10px 0 14px;
  line-height: 1.15;
}
.page-banner-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto 20px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb a:hover { color: var(--white); }

/* =============================
   VIEW ALL WRAP
============================= */
.view-all-wrap {
  text-align: center;
  margin-top: 48px;
}

/* =============================
   WHY US TEASER (home page)
============================= */
.why-teaser {
  padding: 80px 0;
  background: var(--white);
}
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.teaser-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.teaser-item:hover {
  border-color: rgba(37,99,235,0.2);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.teaser-icon { font-size: 2rem; margin-bottom: 12px; }
.teaser-item h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; }
.teaser-item p { font-size: 0.88rem; color: var(--mid); }

/* =============================
   CTA STRIP
============================= */
.cta-strip {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1e3a8a 100%);
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-strip p {
  color: rgba(255,255,255,0.65);
  font-size: 0.98rem;
}
.cta-strip-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
  white-space: nowrap;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* =============================
   STANDALONE CONTACT (contact.html)
============================= */
.standalone-contact {
  background: linear-gradient(135deg, var(--dark) 0%, #1e3a8a 100%);
  padding: 80px 0;
}

/* =============================
   INFO STRIP (contact.html)
============================= */
.info-strip {
  padding: 50px 0;
  background: var(--light);
}
.info-strip-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  min-width: 140px;
}
.info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid);
}
.info-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}
a.info-value:hover { color: var(--primary); }
.info-value--email { font-size: 0.82rem; word-break: break-all; }
.info-divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.12);
}

/* =============================
   EXTRA REASONS (why-us.html)
============================= */
.extra-reasons {
  padding: 80px 0;
  background: var(--light);
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reason-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37,99,235,0.15);
}
.reason-num {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(37,99,235,0.15);
  line-height: 1;
  margin-bottom: 12px;
}
.reason-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.reason-card p {
  font-size: 0.88rem;
  color: var(--mid);
}

/* =============================
   CALL HERO (call.html)
============================= */
.call-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.call-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a2e5a 50%, #0f172a 100%);
}
.call-hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
}
.call-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.call-logo-wrap {
  margin-bottom: 30px;
}
.call-logo {
  height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.call-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.4);
  color: #4ade80;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.call-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.call-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.1;
}
.call-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.call-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--gradient);
  color: var(--white);
  text-decoration: none;
  padding: 20px 44px;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(37,99,235,0.45);
  transition: var(--transition);
  margin-bottom: 50px;
}
.call-btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 50px rgba(37,99,235,0.55);
}
.call-btn-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.call-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.call-btn-label {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.call-btn-number {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.15;
}
.call-info-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.call-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
}
.call-info-item svg { flex-shrink: 0; }
.ci-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
}
.ci-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
a.ci-value--link {
  font-size: 0.8rem;
  word-break: break-all;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
}
a.ci-value--link:hover { color: var(--primary); }
.call-info-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}
.call-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.reassure-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.reassure-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* =============================
   HOW IT WORKS STEPS (call.html)
============================= */
.call-steps {
  padding: 90px 0;
  background: var(--light);
}
.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.step-card {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37,99,235,0.15);
}
.step-num {
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.step-card h3 { font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.86rem; color: var(--mid); }
.step-arrow {
  font-size: 2rem;
  color: rgba(37,99,235,0.3);
  padding: 0 8px;
  font-weight: 300;
  flex-shrink: 0;
}

/* =============================
   SCROLL ANIMATIONS
============================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================
   MOBILE MENU OVERLAY
   Always a direct child of <body> so it is never trapped inside
   a stacking context created by the navbar.
============================= */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: rgba(10,16,30,0.97);
  padding-top: 70px;
}
.mobile-menu a {
  display: block;
  text-decoration: none;
  font-family: var(--font);
  font-weight: 500;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  padding: 14px 40px;
  border-radius: 12px;
  width: 260px;
  text-align: center;
  transition: var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.mobile-menu .mobile-active { color: var(--accent); background: rgba(245,158,11,0.1); }
.mobile-menu .mobile-menu-cta {
  margin-top: 10px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}
.mobile-menu .mobile-menu-cta:hover { background: var(--primary-dark); }

/* =============================
   RESPONSIVE — 1024px (tablet landscape)
============================= */
@media (max-width: 1024px) {
  .why-grid { gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }

  /* Service rows — tighten body padding */
  .srv-body { padding: 48px 40px; }
  .srv-img-icon { width: 130px; height: 130px; }
  .srv-img-icon svg { width: 70px; height: 70px; }
}

/* =============================
   RESPONSIVE — 768px (tablet / large phone)
============================= */
@media (max-width: 768px) {
  /* --- Hamburger button --- */
  .hamburger { display: flex; }
  .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* Hide desktop nav links on mobile — the dedicated mobile-menu is used instead */
  .nav-links { display: none; }

  /* Dedicated mobile overlay — always a direct body child, no stacking traps */
  .mobile-menu.open {
    display: flex;
  }

  /* Navbar stays on top of overlay and shows dark bg + white logo when open */
  .navbar.menu-open {
    z-index: 9999 !important;
    background: rgba(10,16,30,0.97) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }
  .navbar.menu-open .logo-img { filter: brightness(0) invert(1) !important; }
  .navbar.menu-open .hamburger span { background: var(--white) !important; }

  /* --- Logo --- */
  .logo-img { height: 42px; }

  /* --- Hero --- */
  .hero-content { padding: 100px 20px 60px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub { font-size: 1rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-cta .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-stats { gap: 18px; }
  .stat-num { font-size: 1.6rem; }
  .hero-scroll { display: none; }

  /* --- Section padding --- */
  .services { padding: 60px 0; }
  .why-us { padding: 60px 0; }
  .contact { padding: 60px 0; }
  .extra-reasons { padding: 60px 0; }
  .why-teaser { padding: 60px 0; }
  .cta-strip { padding: 55px 0; }
  .call-steps { padding: 60px 0; }
  .standalone-contact { padding: 60px 0; }
  .info-strip { padding: 40px 0; }

  /* --- Section headers --- */
  .section-header { margin-bottom: 40px; }
  .section-header p { font-size: 0.95rem; }

  /* --- Services grid --- */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .service-card-img { height: 170px; }
  .service-card-body { padding: 18px 18px; }

  /* --- Why Us --- */
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { display: none; }

  /* --- Service rows (services.html) --- */
  .srv-row {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .srv-row--reverse .srv-img  { order: 0; }
  .srv-row--reverse .srv-body { order: 0; }
  .srv-img {
    min-height: 260px;
    padding: 48px 30px;
  }
  .srv-img-icon { width: 110px; height: 110px; }
  .srv-img-icon svg { width: 60px; height: 60px; }
  .srv-img-num { font-size: 3.5rem; }
  .srv-body { padding: 36px 28px; }
  .srv-list { grid-template-columns: 1fr 1fr; gap: 8px 16px; }
  .srv-btn { width: 100%; justify-content: center; }

  /* --- Contact grid --- */
  .contact-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 30px; }
  .contact-card { padding: 28px 22px; }
  .cta-bar { flex-direction: column; text-align: center; padding: 24px 20px; gap: 18px; }
  .cta-bar p { min-width: unset; }
  .cta-bar .btn { width: 100%; justify-content: center; }

  /* --- Page banner --- */
  .page-banner { padding: 110px 0 55px; }
  .page-banner-content h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .page-banner-content p { font-size: 0.95rem; }

  /* --- Teaser grid --- */
  .teaser-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .teaser-item { padding: 22px 16px; }

  /* --- CTA strip --- */
  .cta-strip-inner { flex-direction: column; text-align: center; gap: 24px; }
  .cta-strip-btns { justify-content: center; width: 100%; flex-direction: column; align-items: center; gap: 12px; }
  .cta-strip-btns .btn,
  .cta-strip-btns .btn-outline-white { width: 100%; max-width: 300px; justify-content: center; }

  /* --- Reasons grid --- */
  .reasons-grid { grid-template-columns: 1fr; gap: 16px; }

  /* --- Steps --- */
  .step-arrow { display: none; }
  .steps-grid { gap: 16px; flex-direction: column; align-items: center; }
  .step-card { min-width: unset; max-width: 100%; width: 100%; }

  /* --- Info strip --- */
  .info-strip-grid { flex-direction: column; gap: 20px; }
  .info-divider { display: none; }

  /* --- Call hero --- */
  .call-hero-content { padding: 100px 20px 60px; }
  .call-logo { height: 80px; }
  .call-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .call-sub { font-size: 0.98rem; margin-bottom: 32px; }
  .call-btn-main {
    width: 100%;
    max-width: 340px;
    padding: 18px 24px;
    gap: 14px;
    margin-bottom: 36px;
  }
  .call-btn-icon { width: 44px; height: 44px; }
  .call-btn-number { font-size: 1.5rem; }
  .call-info-row { flex-direction: column; gap: 14px; align-items: flex-start; padding: 0 10px; }
  .call-info-divider { display: none; }
  .call-reassurance { flex-direction: column; gap: 10px; align-items: flex-start; padding: 0 10px; }

  /* --- View all wrap --- */
  .view-all-wrap .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* --- Service list on small screens --- */
  .srv-list { grid-template-columns: 1fr; }
}

/* =============================
   RESPONSIVE — 480px (small phones)
============================= */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* --- Navbar --- */
  .logo-img { height: 36px; }
  .navbar { padding: 12px 0; }
  .navbar.scrolled { padding: 8px 0; }

  /* --- Hero --- */
  .hero-content { padding: 90px 16px 50px; }
  .hero h1 { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  .hero-badge { font-size: 0.72rem; padding: 5px 12px; }
  .hero-stats { gap: 12px; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: 0.7rem; }
  .stat-divider { height: 28px; }

  /* --- Services --- */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card-img { height: 180px; }
  .service-card-body { padding: 18px 16px; }

  /* --- Teaser --- */
  .teaser-grid { grid-template-columns: 1fr; gap: 12px; }

  /* --- Page banner --- */
  .page-banner { padding: 95px 0 45px; }

  /* --- Call hero --- */
  .call-hero-content { padding: 90px 16px 50px; }
  .call-btn-main { padding: 16px 18px; gap: 12px; }
  .call-btn-icon { width: 40px; height: 40px; }
  .call-btn-number { font-size: 1.3rem; }
  .call-logo { height: 70px; }

  /* --- CTA bar --- */
  .cta-bar { padding: 22px 16px; }

  /* --- Buttons --- */
  .btn-lg { padding: 14px 24px; font-size: 0.95rem; }

  /* --- Service rows tiny screens --- */
  .srv-img { min-height: 220px; padding: 36px 20px; }
  .srv-img-icon { width: 90px; height: 90px; border-radius: 22px; }
  .srv-img-icon svg { width: 50px; height: 50px; }
  .srv-body { padding: 28px 16px; }
  .srv-body h2 { font-size: 1.4rem; }
}

/* =============================
   RESPONSIVE — 360px (very small phones)
============================= */
@media (max-width: 360px) {
  .hero h1 { font-size: 1.65rem; }
  .call-btn-number { font-size: 1.15rem; }
  .nav-links a { width: 220px; font-size: 1.1rem !important; }
  .nav-links .btn-nav { width: 220px; font-size: 1rem !important; }
}
