/* ========================
   RESET & BASE
======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  scroll-behavior: smooth; 
  overflow-x: hidden;
  max-width: 100vw;
}
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #1a1a2e;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ========================
   VARIABLES
======================== */
:root {
  --navy: #0a1628;
  --navy2: #0f2044;
  --yellow: #f5a623;
  --yellow-dark: #d4891a;
  --white: #ffffff;
  --gray: #f5f7fb;
  --gray2: #e8ecf4;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --shadow: 0 4px 24px rgba(10,22,40,0.12);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.18);
  --radius: 16px;
  --transition: 0.3s ease;
}

/* ========================
   UTILITIES
======================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.center { text-align: center; }
.text-yellow { color: var(--yellow); }
.section-label {
  display: inline-block;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.section-label.center { display: block; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

/* ========================
   BUTTONS
======================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--yellow);
  color: var(--navy);
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,166,35,0.45); }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 2px solid rgba(255,255,255,0.55);
  color: #fff;
  padding: 0.82rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--yellow);
  color: var(--navy);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(245,166,35,0.4);
}
.btn-yellow:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }

.btn-nav {
  background: var(--yellow);
  color: var(--navy) !important;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: all var(--transition);
}
.btn-nav:hover { background: var(--yellow-dark); }

/* ========================
   TOP BAR
======================== */
.top-bar {
  background: var(--navy);
  color: #aab8d0;
  font-size: 0.83rem;
  padding: 0.5rem 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar-left { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.top-bar-left a { color: #aab8d0; display: flex; align-items: center; gap: 0.3rem; transition: color 0.2s; }
.top-bar-left a:hover { color: var(--yellow); }
.top-bar-right { display: flex; gap: 0.7rem; }
.top-bar-right a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: #aab8d0;
  transition: all 0.2s;
}
.top-bar-right a:hover { background: var(--yellow); color: var(--navy); }

/* ========================
   NAVBAR
======================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10,22,40,0.1);
  transition: all 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(10,22,40,0.18); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  gap: 1rem;
}
.logo { display: flex; align-items: center; gap: 0.7rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.logo-sub { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 1.2rem; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ========================
   HERO
======================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  transform: translateX(100%);
  transition: transform 0.8s ease-in-out;
}
.hero-slide.active {
  transform: translateX(0);
}
.hero-slide.prev {
  transform: translateX(-100%);
}
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }

/* Hero Slider - Vertical */
.hero-vertical {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 5px solid var(--yellow);
}
.hero-slider-vertical {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide-vertical {
  position: absolute;
  inset: 0;
  transform: translateY(-100%);
  transition: transform 0.8s ease-in-out;
}
.hero-slide-vertical.active {
  transform: translateY(0);
}
.hero-slide-vertical.prev {
  transform: translateY(100%);
}
.hero-slide-vertical img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,22,40,0.92) 45%,
    rgba(10,22,40,0.55) 100%
  );
  z-index: 1;
}
.hero-dots {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active { background: var(--yellow); transform: scale(1.3); }

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 4rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  color: #00e5ff; /* Cyan color matching the image */
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-title .highlight { color: var(--yellow); }
.hero-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  width: 100%;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; justify-content: center; width: 100%; }
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--yellow);
  padding-left: 0.75rem;
  text-align: left;
}
.hero-stat .stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--yellow);
}
.hero-stat .stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); }

/* ========================
   ABOUT US SECTION
======================== */
.about-section {
  padding: 8rem 0;
  background: var(--white);
  overflow: hidden;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-images {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-images .img-large {
  width: 80%;
  height: 550px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.about-images .img-small {
  position: absolute;
  right: 0;
  bottom: -3rem;
  width: 50%;
  height: 350px;
  border-radius: var(--radius);
  border: 10px solid var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.about-images:hover img {
  transform: scale(1.05);
}
.experience-badge {
  position: absolute;
  top: -2rem;
  left: 0;
  background: var(--yellow);
  color: var(--navy);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
.experience-badge .exp-num {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.experience-badge .exp-text {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.about-text .section-title { margin-bottom: 1.2rem; }
.about-text .lead-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}
.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.feature-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.fb-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,166,35,0.12);
  color: var(--yellow);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}
.fb-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.fb-content p {
  font-size: 0.85rem;
  margin-bottom: 0;
}
.about-author {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray2);
}
.author-info strong {
  display: block;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 800;
}
.author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========================
   SERVICES
======================== */
.services-section {
  padding: 6rem 0;
  background: var(--gray);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(10,22,40,0.06);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid var(--yellow);
  transition: transform 0.5s ease;
}
.service-content {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: var(--white);
  position: relative;
  z-index: 2;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(10,22,40,0.14);
}
.service-card:hover .service-img {
  transform: scale(1.05);
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.service-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
  margin-top: auto;
}
.service-link:hover { gap: 0.6rem; }
.service-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--yellow);
  color: var(--navy);
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: auto;
  width: 100%;
  transition: all 0.2s;
}
.service-call-btn:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,0.4);
}

/* ========================
   BEFORE & AFTER
======================== */
.before-after-section {
  padding: 6rem 0;
  background: var(--white);
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.ba-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--gray);
  transition: transform var(--transition);
}
.ba-card:hover { transform: translateY(-4px); }
.ba-slider-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
  user-select: none;
}
.ba-img-before,
.ba-img-after {
  position: absolute;
  inset: 0;
}
.ba-img-before img,
.ba-img-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-img-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.05s;
}
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
}
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: #fff;
  z-index: 8;
  pointer-events: none;
  transition: left 0.05s;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--shadow);
}
.ba-label {
  position: absolute;
  top: 1rem;
  z-index: 9;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}
.before-label { left: 1rem; background: rgba(10,22,40,0.75); color: #fff; }
.after-label { right: 1rem; background: var(--yellow); color: var(--navy); }
.ba-desc {
  padding: 1.2rem 1.5rem;
}
.ba-desc strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.ba-desc p { font-size: 0.88rem; color: var(--text-muted); }

/* ========================
   WHY US
======================== */
.why-us-section {
  padding: 7rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-us-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.why-card:hover {
  background: rgba(245,166,35,0.1);
  border-color: rgba(245,166,35,0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.why-card:hover::after { transform: scaleX(1); }
.why-card-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(245,166,35,0.15);
  border-radius: 14px;
  color: var(--yellow);
  margin: 0 auto 1.2rem;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
}
.why-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.why-stats-row {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 3rem;
  flex-wrap: wrap;
}
.why-stat-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.why-stat-item:last-child { border-right: none; }
.why-stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.why-stat-item span:last-child {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================
   PROCESS
======================== */
.process-section {
  padding: 6rem 0;
  background: var(--gray);
}
.process-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}
.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(10,22,40,0.07);
  position: relative;
  transition: all var(--transition);
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-num {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 32px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon {
  font-size: 1.4rem;
  margin: 0.8rem auto 0.8rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,166,35,0.12);
  border-radius: 12px;
  color: var(--yellow);
}
.process-step h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.process-connector {
  display: flex;
  align-items: center;
  padding: 2.5rem 0.5rem 0;
  color: var(--yellow);
  font-size: 1.5rem;
  font-weight: 700;
}

/* ========================
   FAQ SECTION
======================== */
.faq-section-standalone {
  padding: 7rem 0;
  background: var(--white);
}
.faq-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.faq-col { }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.faq-item {
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item.active { border-color: var(--yellow); box-shadow: 0 4px 20px rgba(245,166,35,0.12); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-q::after { content: '+'; font-size: 1.3rem; font-weight: 300; transition: transform 0.3s; }
.faq-item.active .faq-q { background: rgba(245,166,35,0.07); }
.faq-item.active .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 1.5rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.active .faq-a { display: block; }

/* FAQ Image */
.faq-image-col { }
.faq-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.faq-img-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
}
.faq-img-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--yellow);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow);
  text-align: center;
}
.faq-badge-num {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.faq-img-badge span:last-child {
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 0.2rem;
}

/* ========================
   TESTIMONIALS (Grid)
======================== */
.test-section-standalone {
  padding: 7rem 0;
  background: var(--gray);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card-new {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 5px solid var(--yellow);
  box-shadow: 0 4px 20px rgba(10,22,40,0.06);
  transition: all 0.3s;
}
.testimonial-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10,22,40,0.12);
}
.test-stars { font-size: 1.1rem; margin-bottom: 0.8rem; }
.testimonial-card-new p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 0.8rem; }
.test-avatar {
  width: 44px; height: 44px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.test-author strong { display: block; font-size: 0.95rem; color: var(--navy); }
.test-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ========================
   CONTACT
======================== */
.contact-section {
  padding: 6rem 0;
  background: #f8f9fb;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info .section-label { color: var(--navy); }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-ico { font-size: 1.4rem; }
.contact-detail div { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-detail strong { color: var(--navy); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-detail a,
.contact-detail span { color: var(--text-muted); font-size: 0.95rem; }
.contact-detail a:hover { color: var(--yellow); }
.map-placeholder { margin-top: 1.5rem; border-radius: var(--radius); overflow: hidden; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray2);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--yellow); }
.form-group textarea { resize: vertical; }
.form-success {
  display: none;
  text-align: center;
  color: #16a34a;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1rem;
}

/* ========================
   FOOTER
======================== */
.footer { background: #05101f; padding: 4rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-about { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; margin: 1rem 0 1.2rem; }
.footer-socials { display: flex; gap: 0.6rem; }
.footer-socials a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  font-weight: 700;
  transition: all 0.2s;
}
.footer-socials a:hover { background: var(--yellow); color: var(--navy); }
.footer-col h4 {
  color: var(--yellow);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.footer-col ul li a::before { content: '›'; color: var(--yellow); }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-contact-block {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact-block p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.5; }
.footer-bottom {
  background: #020d1a;
  padding: 1.2rem 0;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

/* ========================
   CALL FLOAT
======================== */
.call-float {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  z-index: 9999;
  width: 58px; height: 58px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(245,166,35,0.45);
  animation: pulseCall 2.5s infinite;
  transition: transform 0.2s;
  color: var(--navy);
}
.call-float:hover { transform: scale(1.12); }
@keyframes pulseCall {
  0%, 100% { box-shadow: 0 6px 24px rgba(245,166,35,0.45); }
  50% { box-shadow: 0 6px 40px rgba(245,166,35,0.7); }
}

/* ========================
   WHATSAPP FLOAT
======================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  animation: pulse 2.5s infinite;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.12); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1024px) {
  .about-inner,
  .contact-inner { gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 0.9rem; }
  .why-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-inner,
  .faq-test-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .about-images { margin-bottom: 4rem; margin-top: 1rem; }
  .why-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .why-stats-row { gap: 1.5rem; }
  .why-stat-item { border-right: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Hamburger */
  .hamburger { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.2rem;
    box-shadow: 0 10px 30px rgba(10,22,40,0.15);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.35s ease-in-out;
    pointer-events: none;
    display: flex;
  }
  .nav-links.open { 
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: all;
  }
  .nav-links a { color: var(--navy); font-size: 1.1rem; width: 100%; border-bottom: 1px solid var(--gray2); padding-bottom: 0.8rem; font-weight: 600; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }
  .nav-links .btn-nav { background: var(--yellow); color: var(--navy) !important; padding: 0.75rem 2rem; font-size: 1rem; border-bottom: none; width: 100%; text-align: center; margin-top: 0.5rem; justify-content: center; }

  .hero { min-height: 100svh; }
  .hero-content { padding-top: 2rem; padding-bottom: 6rem; }
  .hero-stats { gap: 1.2rem; }

  .process-grid { flex-direction: column; align-items: center; gap: 2rem; }
  .process-connector { display: none; }
  .process-step { max-width: 100%; min-width: unset; width: 100%; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .top-bar-inner {
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 0;
  }
  .top-bar-left {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .top-bar-right {
    display: none;
  }
  .top-bar-left a span { display: inline-flex; }

  .form-row { grid-template-columns: 1fr; }

  .ba-grid { grid-template-columns: 1fr; }

  .why-us-stats { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .faq-test-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .faq-with-image { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-cards-grid { grid-template-columns: 1fr; }
}

/* Active nav link */
.nav-links a.active-nav { color: var(--yellow) !important; }
.nav-links a.active-nav::after { width: 100% !important; }

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; }
  .contact-form-wrap { padding: 1.5rem; }
  .top-bar-left { gap: 0.8rem; }
  .about-features { grid-template-columns: 1fr; }
  .about-author { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  section { padding: 4rem 0; }
}
