﻿/* ===============================
   GLOBAL RESET & VARIABLES
   =============================== */

:root {
  --primary: #0b4db8;
  --secondary: #111827;
  --accent: #fbbf24;
  --bg-dark: #0f172a;
  --text-dark: #111827;
  --text-light: #f9fafb;
  --muted: #6b7280;
  --border: #e5e7eb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
video,
iframe {
  max-width: 100%;
  display: block;
}

/* ===============================
   BUTTONS
   =============================== */

.btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  display: inline-block;
  transition: 0.25s ease;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
}

.btn.primary:hover {
  background: #083c92;
}

.btn.secondary {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn.secondary:hover {
  background: var(--primary);
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 1400;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.28);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.back-to-top-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1400;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.back-to-top-float.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.28);
}

.back-to-top-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 769px) and (max-width: 1199px) {
  .whatsapp-float {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    width: 58px;
    height: 58px;
  }

  .back-to-top-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    position: fixed;
    left: 1rem;
    bottom: 20px;
    width: 58px;
    height: 58px;
  }

  .back-to-top-float {
    position: fixed;
    right: 1rem;
    bottom: 20px;
    width: 58px;
    height: 58px;
  }
}
/* ===============================
   HEADER
   =============================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    width: 10%;
}

.nav {
  display: none;
  gap: 1.5rem;
}

.header-actions {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
}

.location {
  font-size: 0.85rem;
  color: var(--muted);
}

.call-btn {
  font-weight: 600;
  color: var(--primary);
}

/* ===============================
   HERO SECTION
   =============================== */

.hero {
  position: relative;
  height: 85vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-video {
  height: 100%;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-content p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===============================
   LEAD STRIP
   =============================== */

.lead-strip {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 2rem 1.25rem;
  text-align: center;
}

.lead-strip h2 {
  margin-bottom: 1.25rem;
}

.lead-form {
    display: grid;
    gap: 0.75rem;
    max-width: 92%;
    margin: auto;
}

.lead-form input,
.lead-form select {
  padding: 0.75rem;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}

/* ===============================
   BRAND GALLERY
   =============================== */

.brands {
  padding: 3rem 1.25rem;
  background: #f9fafb;
  text-align: center;
}

.brands h2 {
  margin-bottom: 2rem;
}

.brand-card {
  background: #fff;
  padding: 1.75rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.brand-card h3 {
  margin-bottom: 0.5rem;
}

.brand-card p {
  color: var(--muted);
  margin-bottom: 1rem;
}

/* ===============================
   VISIT US SECTION
   =============================== */

.visit {
  padding: 3rem 1.25rem;
  display: grid;
  gap: 2rem;
}

.visit-text h2 {
  margin-bottom: 1rem;
}

.visit-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 10px;
}

/* ===============================
   FAQ
   =============================== */

.faq {
  padding: 3rem 1.25rem;
  max-width: 900px;
  margin: auto;
}

.faq h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

details {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

summary {
  font-weight: 600;
  cursor: pointer;
}

details p {
  margin-top: 0.75rem;
  color: var(--muted);
}

/* ===============================
   FOOTER
   =============================== */

.footer {
    background: var(--secondary);
    color: #fff;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

/* ===============================
   MOBILE STICKY BAR
   =============================== */

.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-top: 1px solid var(--border);
  z-index: 999;
}

.mobile-bar a {
  padding: 1rem;
  text-align: center;
  font-weight: 700;
}

.mobile-bar a:first-child {
  color: var(--primary);
}

.mobile-bar a:last-child {
  background: var(--primary);
  color: #fff;
}

/* ===============================
   TABLET & DESKTOP
   =============================== */

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .lead-form {
    grid-template-columns: repeat(4, 1fr);
  }

  .brands {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: left;
  }

  .brands h2 {
    grid-column: span 2;
    text-align: center;
  }

  .visit {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .mobile-bar {
    display: none;
  }
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .hero {
    height: 90vh;
  }
}


/* ===============================
   MICRO ANIMATIONS & INTERACTIONS
   =============================== */

/* Global smoothness */
* {
  transition: background-color 0.25s ease, color 0.25s ease,
    transform 0.25s ease, box-shadow 0.25s ease;
}

/* Button lift */
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Brand card hover */
.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* FAQ smooth open */
details[open] summary {
  color: var(--primary);
}

/* Section fade-in (performance safe) */
.section {
  opacity: 0;
  transform: translateY(20px);
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sticky header shadow on scroll */
.header.scrolled {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Mobile CTA tap feedback */
.mobile-bar a:active {
  transform: scale(0.97);
}

/* ===============================
   HERO SLIDER
   =============================== */

.hero-slider {
  position: relative;
  height: 85vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: #000;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.2)
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 3rem;
  max-width: 600px;
}

.slide-content h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.slide-content p {
  margin-bottom: 1.5rem;
}



/* ===============================
   TESTIMONIALS
   =============================== */

.testimonials {
  padding: 3rem 1.25rem;
  /* background: #f9fafb; */
  text-align: center;
}

.testimonial-card {
    max-width: 88%;
    margin: 0 auto 1.5rem;
    background: #efefef;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 20px;
}
.testimonial-card strong {
    font-size: 22px;
}
.badge {
    font-weight: 700;
    color: var(--primary);
    font-size: 18px;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 768px) {
  .slide {
    grid-template-columns: 1fr;
  }

  .slide img {
    position: absolute;
    inset: 0;
  }

  .slide-content {
    padding: 2rem 1.25rem;
  }

  .slide-content h1 {
    font-size: 1.8rem;
  }
}

@media (min-width: 768px) {
  .advantage-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ===============================
   SLIDER ARROWS (HERO + TESTIMONIAL)
   =============================== */

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.slider-arrow:hover {
  background: var(--primary);
  color: #fff;
}

.slider-arrow.prev {
  left: 1rem;
}

.slider-arrow.next {
  right: 1rem;
}

/* Testimonials specific */
.testimonials {
  position: relative;
}

.testimonial-wrapper {
  position: relative;
  min-height: 200px;
}

.testimonial-card {
  display: none;
}

.testimonial-card.active {
  display: block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }
}

/* ===============================
   ABOUT US SECTION
   =============================== */

.about-us {
  padding: 3.5rem 1.25rem;
  background: #ffffff;
}
.call {
	background-color: #0b4db8;
	color: #fff;
	font-weight: 600;
	padding: 0.75rem 1.5rem;
	border-radius: 6px;
}
.pper-p {
	margin-bottom: 10px;
}
.about-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.about-us h2 {
  margin-bottom: 1.25rem;
}

.about-intro {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.about-us p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.about-highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.75rem;
}

.about-highlights li {
  font-weight: 600;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
  .about-highlights {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===============================
   TRUST SHOWCASE SECTION
   =============================== */

.trust-showcase {
  padding: 5.25rem 1.5rem 5rem;
  background: linear-gradient(180deg, #fff 0%, #f8f3eb 100%);
}

.trust-showcase-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr) minmax(0, 0.92fr);
  gap: 2.25rem;
  align-items: end;
}

.trust-showcase-visual {
  display: grid;
  gap: 1.9rem;
}

.trust-showcase-main {
  transform: translateY(-2.5rem);
}

.trust-showcase-main img {
  width: 100%;
  aspect-ratio: 1 / 0.92;
  object-fit: cover;
  border-radius: 28px 28px 0 28px;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.08);
}

.trust-showcase-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  max-width: 28rem;
  padding-left: 1rem;
  margin-top: -0.25rem;
}

.trust-showcase-icon {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    border-radius: 50%;
    background: #0b4db8;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 32px rgba(183, 154, 104, 0.22);
}

.trust-showcase-icon svg, .trust-showcase-mark svg {
    width: 43px;
    height: 40px;
    fill: none;
    stroke: rgb(255 255 255);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-showcase-note h3 {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.trust-showcase-note p {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.8;
}

.trust-showcase-tall {
  height: 100%;
}

.trust-showcase-tall img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.1);
}

.trust-showcase-copy {
  align-self: center;
  max-width: 26rem;
  padding-bottom: 1.5rem;
}

.trust-showcase-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(183, 154, 104, 0.14);
  color: #b79a68;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.trust-showcase-copy h2 {
  font-size: clamp(2.5rem, 4vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.interior {
    background-color: #0b4db8;
    color: #fff;
    padding: 7px 12px;
    font-size: 26px;
}
.trust-showcase-copy h2 span {
    color: #0b4db8;
}

.trust-showcase-copy p {
    color: #313131;
    font-size: 22px;
    line-height: 1.8;
    max-width: 23rem;
    margin-bottom: 1.6rem;
}

.trust-showcase-btn {
    background: #0b4db8;
    color: #fff;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    box-shadow: 0 16px 34px rgba(242, 181, 1, 0.24);
}

.trust-showcase-btn:hover {
  background: #0b4db8;
}

@media (max-width: 1024px) {
  .trust-showcase {
    padding-top: 4rem;
  }

  .trust-showcase-inner {
    grid-template-columns: 1fr 0.95fr;
    align-items: start;
  }

  .trust-showcase-main {
    transform: none;
  }

  .trust-showcase-copy {
    grid-column: 1 / -1;
    max-width: 42rem;
    padding-bottom: 0;
  }

  .trust-showcase-tall img {
    min-height: 460px;
  }
}

@media (max-width: 768px) {
  .trust-showcase {
    padding: 3rem 1rem;
  }

  .trust-showcase-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-showcase-main {
    transform: none;
  }

  .trust-showcase-main img {
    aspect-ratio: 4 / 3;
    border-radius: 24px;
  }

  .trust-showcase-note {
    padding-left: 0;
    margin-top: 0;
  }

  .trust-showcase-tall img {
    min-height: 340px;
    max-height: 500px;
  }

  .trust-showcase-copy h2 {
    font-size: clamp(2rem, 11vw, 3.3rem);
  }
}
/* ===============================
   HOW IT WORKS SECTION
   =============================== */

.how-it-works {
  padding: 3.5rem 1.25rem;
  background: #f9fafb;
  text-align: center;
}

.how-it-works h2 {
  margin-bottom: 0.5rem;
}

.section-intro {
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.steps-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto 2.5rem;
    margin-top: 25px;
}

.step {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.step-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.step h4 {
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
  }
}


/* ===============================
   PINNED SERVICES (FULL SCREEN)
   =============================== */

.services-pin {
  height: 400vh; /* scroll space */
  position: relative;
}

.services-pin-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4rem;
  background: #000;
  color: #fff;
}

.services-pin-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-pin-left h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-tagline {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
}

.services-pin-right {
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
}

.service-item {
  position: absolute;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  max-width: 420px;
}

.service-item.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile: disable pin */
@media (max-width: 768px) {
  .services-pin {
    height: auto;
  }

  .services-pin-inner {
    position: relative;
    height: auto;
    grid-template-columns: 1fr;
  }

  .service-item {
    position: relative;
    opacity: 1;
    transform: none;
    margin-bottom: 2rem;
  }
}
/* ===============================
   STACKED STICKY SERVICES
   =============================== */

.services-stack {
  padding: 4rem 1.25rem;
  background: #fff;
}

.services-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  line-height: 1.3;
}
.visit-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}
.visit-text h2 span {
    color: #0b4db8;
}
/* Each service block */
.service-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: stretch;
	min-height: 430px;
	position: sticky;
	top: 100px;
	margin-bottom: 5rem;
	background: #fff;
	padding: 2rem 2rem;
	border-radius: 30px;
	box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.service-one {
    background-color: #d8e2ed;
}
.service-two {
    background-color: #90a3ff;
}
.service-two {
    background-color: #90a3ff;
    border-radius: 30px;
}
.visit-text {
    margin-left: 30px;
}
.service-media img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Alternate layout */
.service-row.reverse {
  direction: rtl;
}

.service-row.reverse > * {
  direction: ltr;
}

/* Text */
.service-text h3 {
    font-weight: 800;
    font-size: 33px;
    margin-bottom: 8px;
}

.service-text p {
    max-width: 100%;
    color: #000;
    line-height: 1.6;
    text-align: justify;
    font-size: 16px;
}

/* Image / Video placeholder */
.service-text,
.service-media {
  height: 100%;
}

.service-media {
  width: 100%;
  height: 100%;
  min-height: 260px;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
}

/* Mobile */
@media (max-width: 768px) {
  .service-row {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
    min-height: auto;
  }

  .service-row.reverse {
    direction: ltr;
  }

  .services-title {
    font-size: 2rem;
  }
}

/* ===============================
   CONTACT SECTION (LIGHT)
   =============================== */

.contact-section {
  padding: 4rem 1.25rem;
  background: #f9fafb;
}

.contact-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  gap: 3rem;
}

/* LEFT FORM */
.contact-form h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.contact-form form {
  display: grid;
  gap: 1rem;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    background: #fff;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.contact-btn {
  margin-top: 0.5rem;
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  width: fit-content;
}

.contact-btn:hover {
  background: #1e4fd6;
}

/* RIGHT INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-item {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  font-size: 1rem;
}

.info-item span {
  font-size: 1.25rem;
}

.contact-info hr {
  border: none;
  border-top: 1px solid #e5e7eb;
}

/* SOCIAL ICONS */
.socials {
  display: flex;
  gap: 1rem;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: stretch;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  color: #111;
}

/* .socials a:hover {
  background: #2563eb;
  color: #fff;
} */

/* DESKTOP */
@media (min-width: 768px) {
  .contact-container {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}
/* ===============================
   PROMO HERO BANNER
   =============================== */

.promo-hero {
    position: relative;
    height: 85vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: stretch;
    color: #fff;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-left: 20px;
}

/* Dark overlay for readability */
.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15)
  );
  z-index: 1;
}

/* Content */
.promo-content {
    position: relative;
    z-index: 2;
    padding-left: 4rem;
    max-width: 750px;
}

.promo-content h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.promo-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Buttons */
.promo-actions {
  display: flex;
  gap: 1rem;
}

.btn.light {
  background: #fff;
  color: #000;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

.btn.ghost {
  border: 1px solid #fff;
  color: #fff;
  padding: 0.75rem 1.5rem;
}

/* Arrows */
.promo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: #fff;
  color: #000;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  border: none;
  cursor: pointer;
}

.promo-arrow.prev { left: 20px; }
.promo-arrow.next { right: 20px; }

/* Dots */
.promo-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.promo-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.promo-dots span.active {
  background: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .promo-content {
    padding: 1.5rem;
  }
}
/* ===============================
   ABOUT US â€“ SPLIT SECTION
   =============================== */

.about-split {
  padding: 4rem 1.5rem;
  background: #ffffff;
}

.about-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  gap: 3rem;
  align-items: stretch;
}
.pper-p {
    margin-top: 10px;
    color: #732d21 !important;
    text-decoration: underline;
    margin-bottom: 20px;
}
.pper-p span {
    font-style: italic;
}
/* LEFT */
.about-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #2563eb;
  background: #eaf0ff;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.service-text img {
    width: 20%;
    margin-bottom: 15px;
    border-radius: 10px;
}
.title-sec {
    text-align: center;
}
.services-title span {
    color: #0b4db8;
}
.about-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.about-left h2 span {
    color: #0b4db8;
}

.about-desc {
    color: #000;
    max-width: 95%;
    margin-bottom: 2rem;
}

/* FEATURES */
.about-features {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.about-features li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.about-features .icon {
    background: #0b4db8;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    font-size: 0.85rem;
    margin-top: 2px;
}

.about-features strong {
  display: block;
  margin-bottom: 0.25rem;
}

.about-features p {
  font-size: 0.9rem;
  color: #666;
}

/* RIGHT IMAGE */
.about-right img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  height: 460px;
}

/* DESKTOP */
@media (min-width: 768px) {
  .about-container {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
/* ===============================
   NERITA ADVANTAGE â€“ CARD STYLE
   =============================== */

.advantage-cards {
    padding: 2.5rem 1.5rem;
    background: #f9fafb;
}

.advantage-header {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.advantage-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.advantage-header p {
  color: #555;
  font-size: 1.05rem;
}

/* Grid */
.advantage-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  gap: 1.5rem;
}

/* Card base */
.adv-card {
  border-radius: 22px;
  padding: 2.5rem 2rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.adv-card h3 {
    font-size: 32px;
    margin-bottom: 1rem;
}

.adv-card p {
    color: #000;
    font-size: 17px;
    line-height: 1.6;
}

/* Color themes (Wix-style soft tones) */
.card-orange {
  background: #ffb26b;
}

.card-green {
  background: #d9eddc;
}

.card-blue {
  background: #9fb1ff;
}

.card-purple {
  background: #e7dbff;
}

/* Desktop layout */
@media (min-width: 768px) {
  .advantage-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .adv-card:nth-child(4) {
    grid-column: span 3;
    min-height: 200px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .adv-card {
    min-height: auto;
  }
}

.after-service-btn {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.after-service-btn h4 {
	width: 100%;
	text-align: center;
}
/* ===============================
   POPUP FORM
   =============================== */

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: stretch;
  justify-content: center;
  z-index: 9999;
}

.popup-overlay.active {
    display: flex;
    align-items: center;
}

.popup-box {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  position: relative;
}

.popup-box h2 {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 24px;
}

.popup-box form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.btn.primary {
    background: var(--primary);
    color: #fff;
    border: none;
}
.popup-box input {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.popup-box select {
    padding: 10px 5px;
    font-size: 15px;
    border: 1px solid #ccc;
    color: #607060;
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
}
/* ===============================
   RESPONSIVE OVERRIDES
   =============================== */
body {
  overflow-x: hidden;
}

.logo {
	min-width: 150px;
}

.header-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 72px;
  }

  .header {
    padding: 0.85rem 1rem;
    gap: 0.85rem;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .logo {
    width: clamp(96px, 24vw, 128px);
  }

  .header-actions {
    flex: 1 1 220px;
    gap: 0.5rem;
  }

  .header-actions .btn {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    text-align: center;
  }

  .services-stack {
    padding: 3rem 1rem;
  }

  .service-row {
    position: sticky;
    top: 90px;
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
    gap: 1.5rem;
    padding: 1.25rem;
    border-radius: 24px;
  }

  .service-row.reverse {
    direction: ltr;
  }

  .services-title {
    font-size: 2rem;
  }

  .service-text img {
    width: 110px;
  }

  .service-text h3 {
    font-size: 1.7rem;
    line-height: 1.2;
  }

  .service-text p {
    text-align: left;
  }

  .service-media {
    height: 220px;
  }

  .promo-hero {
    min-height: 400px;
    height: 400px;
    max-height: 400px;
    padding-left: 0;
    align-items: flex-end;
  }

  .promo-content {
    padding: 1.5rem 1rem 4.5rem;
    max-width: 100%;
  }

  .promo-content h1 {
	font-size: 24px;
	line-height: 1.15;
}

  .promo-content p {
    font-size: 16px;
  }

  .promo-actions {
    flex-wrap: wrap;
  }

  .promo-actions .btn {
    width: 100%;
    text-align: center;
  }

  .promo-arrow {
    width: 36px;
    height: 36px;
    top: auto;
    bottom: 76px;
    transform: none;
  }

  .about-split {
    padding: 3rem 1rem;
  }

  .about-container {
    gap: 2rem;
  }

  .about-desc {
    max-width: 100%;
  }

  .about-right img {
    height: 320px;
  }

  .visit {
    padding: 3rem 1rem;
  }

  .visit-text {
    margin-left: 0;
  }

  .visit-text h2 {
    font-size: 2rem;
  }

  .visit-map iframe {
    height: 280px;
  }

  .contact-section {
    padding: 3rem 1rem;
  }

  .contact-btn {
    width: 100%;
  }

  .info-item {
    align-items: flex-start;
  }

  .testimonials {
    padding: 3rem 1rem;
  }

  .testimonial-card {
    max-width: 100%;
    padding: 1.5rem;
  }

  .testimonial-card p {
    font-size: 1rem;
  }

  .testimonial-card strong,
  .badge {
    font-size: 1rem;
  }

  .after-service-btn {
    margin-top: 2.25rem;
    row-gap: 0.9rem;
    padding-top: 0.6rem;
  }

  .after-service-btn h4 {
    margin: 0;
    line-height: 1.4;
  }

  .after-service-btn .btn {
	width: 44%;
	text-align: center;
}

  .footer {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem 1rem 5.5rem;
  }
}

@media (max-width: 767px) {
  .adv-card {
    min-height: auto;
    padding: 2rem 1.25rem;
  }

  .adv-card h3 {
    font-size: 1.7rem;
  }

  .adv-card p {
    font-size: 1rem;
  }
}

/* ===============================
   MOBILE HEADER NAV
   =============================== */
.header-top {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--secondary);
  border-radius: 999px;
  transform-origin: center;
}

@media (max-width: 768px) {
  .services-stack > .after-service-btn {
    position: relative;
    z-index: 7;
  }

  .header {
    display: grid;
    grid-template-columns: 1fr;
  }

  .header-top {
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    order: 2;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
    padding-top: 0.5rem;
    margin-top: 0.25rem;
  }

  .header.nav-open .nav {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0;
    font-weight: 600;
  }

  .header-actions {
    width: 100%;
    justify-content: stretch;
  }

  .header-actions .btn {
    flex: 1 1 0;
  }

  .header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (min-width: 769px) {
  .header-top {
    flex: 0 0 auto;
  }
}

/* ===============================
   MOBILE HERO TUNING
   =============================== */
@media (max-width: 768px) {
  .promo-hero {
    min-height: 400px;
    height: 400px;
    max-height: 400px;
    align-items: stretch;
  }

  .promo-content {
    padding: 1.25rem 1rem 4.25rem;
  }

  .promo-arrow {
	width: 30px;
	height: 30px;
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

  .promo-arrow.prev {
	left: 10px;
}

  .promo-arrow.next {
    right: 12px;
  }

  .promo-actions {
    padding-inline: 2.75rem;
  }
}

/* ===============================
   MOBILE HERO TIGHTER SPACING
   =============================== */
@media (max-width: 768px) {
  .promo-hero {
    min-height: 400px;
    height: 400px;
    max-height: 400px;
  }

  .promo-content {
    padding: 0.75rem 1rem 2.5rem;
  }
}

/* ===============================
   MOBILE BAR OFF + OVERFLOW FIX
   =============================== */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .mobile-bar {
    display: none !important;
  }

  body {
    padding-bottom: 0;
  }

  .header,
  .promo-hero,
  .lead-strip,
  .about-split,
  .trust-showcase,
  .services-stack,
  .visit,
  .advantage-cards,
  .testimonials,
  .contact-section,
  .footer {
    overflow-x: hidden;
  }
}

/* ===============================
   LEAD FORM LAYOUT FIXES
   =============================== */
.lead-form {
  width: 100%;
}

.lead-form input,
.lead-form select,
.lead-form button {
  width: 100%;
  min-width: 0;
}

@media (max-width: 768px) {
  .lead-strip {
    padding: 2rem 1rem;
  }

  .lead-form {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .lead-form {
    grid-template-columns: 1fr 1fr 1fr 1.35fr auto;
    align-items: stretch;
    max-width: 100%;
  }

  .lead-form .btn {
    white-space: nowrap;
    width: auto;
    min-width: 220px;
  }
}

  .big-word-wrapper {
    position: static;
  }
}

/* ===============================
   SERVICE STICKY RESTORE
   =============================== */
.services-stack {
  overflow: visible !important;
}

@media (max-width: 768px) {
  .services-stack {
    overflow: visible !important;
  }

  .service-row {
    position: sticky !important;
    top: 90px;
    z-index: 2;
  }
}

/* ===============================
   STACKED SERVICE CARD EFFECT
   =============================== */
.services-stack {
  position: relative;
  overflow: visible !important;
}

.service-row {
  position: sticky !important;
  top: 96px;
  overflow: visible;
}

.services-stack .service-row:nth-of-type(1) { z-index: 1; }
.services-stack .service-row:nth-of-type(2) { z-index: 2; }
.services-stack .service-row:nth-of-type(3) { z-index: 3; }
.services-stack .service-row:nth-of-type(4) { z-index: 4; }
.services-stack .service-row:nth-of-type(5) { z-index: 5; }

@media (max-width: 768px) {
  .service-row {
    position: sticky !important;
    top: 82px;
  }
}

/* ===============================
   SERVICE STICKY FINAL FIX
   =============================== */
.services-stack.section, .services-stack.section.visible {
	opacity: 1 !important;
	transform: none !important;
	position: relative;
}

.services-stack {
  position: relative;
  overflow: visible !important;
}

.services-stack .service-row {
  position: sticky !important;
  top: 96px !important;
  overflow: visible;
}

@media (max-width: 768px) {
  .services-stack .service-row {
    top: 82px !important;
  }


}

/* ===============================
   FIREFOX STICKY COMPAT FIX
   =============================== */
html,
body {
  overflow-x: clip !important;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden !important;
  }
}

.services-stack,
.services-stack.section,
.services-stack.section.visible,
.services-stack .service-row {
  overflow: visible !important;
}

/* ===============================
   SERVICE STACK ORDER FIX
   =============================== */
.services-stack > .title-sec {
  position: relative;
  z-index: 0;
}

.services-stack > .service-row {
  z-index: 1;
}

.services-stack > .service-row:nth-of-type(2) { z-index: 1; }
.services-stack > .service-row:nth-of-type(3) { z-index: 2; }
.services-stack > .service-row:nth-of-type(4) { z-index: 3; }
.services-stack > .service-row:nth-of-type(5) { z-index: 4; }
.services-stack > .service-row:nth-of-type(6) { z-index: 5; }



/* ===============================
   MOBILE HEADER NON-STICKY
   =============================== */
@media (max-width: 768px) {
  .header {
    position: relative;
    top: auto;
  }
  .services-stack > .after-service-btn {
	z-index: 7;
	position: absolute;
	bottom: -30px;
	right: 7px;
}
}

/* ===============================
   TESTIMONIAL ARROW TUNING
   =============================== */
.testimonials .slider-arrow {
  top: 50%;
  width: 52px;
  height: 52px;
  background: #ffffff;
  color: #111827;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
}

.testimonials .slider-arrow.prev {
  left: 1.5rem;
}

.testimonials .slider-arrow.next {
  right: 1.5rem;
}

@media (max-width: 768px) {
  .testimonials .slider-arrow {
    top: auto;
    bottom: 2rem;
    transform: none;
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }

  .testimonials .slider-arrow.prev {
    left: calc(50% - 56px);
  }

  .testimonials .slider-arrow.next {
    right: calc(50% - 56px);
  }

  .testimonial-wrapper {
    min-height: 260px;
    padding-bottom: 4.5rem;
  }
}

/* ===============================
   TESTIMONIAL ARROWS ON CARD
   =============================== */
@media (max-width: 768px) {
  .testimonial-wrapper {
    min-height: 220px;
    padding: 0 3.5rem;
    padding-bottom: 0;
  }

  .testimonials .slider-arrow {
    top: 42%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .testimonials .slider-arrow.prev {
    left: 0.35rem;
  }

  .testimonials .slider-arrow.next {
    right: 0.35rem;
  }
}

/* ===============================
   TESTIMONIAL FULL WIDTH MOBILE
   =============================== */
@media (max-width: 768px) {
  .testimonials {
    padding: 3rem 1rem;
  }

  .testimonial-wrapper {
    min-height: 220px;
    padding: 0;
  }

  .testimonial-card {
    max-width: 100%;
    width: 100%;
  }

  .testimonials .slider-arrow {
    top: 50%;
    transform: translateY(-50%);
  }

  .testimonials .slider-arrow.prev {
    left: 0.25rem;
  }

  .testimonials .slider-arrow.next {
    right: 0.25rem;
  }
}

/* ===============================
   TESTIMONIAL ARROW CENTER FIX
   =============================== */
@media (max-width: 768px) {
  .testimonials {
    position: relative;
  }

  .testimonial-wrapper {
    position: relative;
    min-height: 240px;
  }

  .testimonials .slider-arrow {
    top: 50%;
    margin-top: -22px;
    transform: none;
  }
}

/* ===============================
   TESTIMONIAL ARROW LOWER ALIGN
   =============================== */
@media (max-width: 768px) {
  .testimonials .slider-arrow {
    top: 58%;
    margin-top: -22px;
  }
}

/* ===============================
   FOOTER MOBILE BOTTOM SPACE FIX
   =============================== */
@media (max-width: 768px) {
  .footer {
    padding: 1.25rem 1rem;
  }
}





@media (min-width: 769px) and (max-width: 1199px) {
  .header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.9rem 1rem;
    padding: 0.85rem 1.25rem;
  }

  .header-top {
    min-width: 0;
    width: auto;
    justify-content: flex-start;
    align-items: center;
    gap: 0.8rem;
  }

  .logo {
    width: clamp(150px, 18vw, 190px);
  }

  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
    padding-top: 0.5rem;
    margin-top: 0.25rem;
  }

  .header.nav-open .nav {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0;
    font-size: 0.98rem;
    font-weight: 600;
  }

  .header-actions {
    justify-self: end;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.65rem;
  }

  .header-actions .btn {
    padding: 0.8rem 1.15rem;
    font-size: 0.95rem;
    white-space: nowrap;
  }
}
/* ===============================
   DESKTOP HEADER NAV CENTER
   =============================== */
@media (min-width: 1200px) {
  .header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
  }

  .header-top {
    justify-self: start;
  }

  .nav {
    justify-self: center;
    display: flex;
    gap: 2rem;
  }

  .header-actions {
    justify-self: end;
    flex-wrap: nowrap;
  }
}













/* ===============================
   THANK YOU PAGE
   =============================== */

.thank-you-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.thank-you-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) 1.25rem;
}

.thank-you-card {
  width: min(100%, 840px);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(11, 77, 184, 0.12);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.08);
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.thank-you-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(11, 77, 184, 0.08);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thank-you-card h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  color: var(--secondary);
}

.thank-you-card p {
  max-width: 540px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: #334155;
}

.thank-you-actions {
  margin-top: 2rem;
}

.thank-you-page .footer {
  margin-top: auto;
}
