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

:root {
  --bg-dark: #0a0c0f;
  --bg-card: #101318;
  --bg-card2: #13171d;
  --cyan: #ffffff;
  --cyan-dark: #cccccc;
  --cyan-glow: rgba(255, 255, 255, 0.07);
  --text: #e8eaf0;
  --text-muted: #7a8394;
  --border: rgba(255, 255, 255, 0.08);
  --white: #ffffff;
  --font: 'Poppins', sans-serif;
  --green: rgb(46, 204, 113);
  --green-dark: rgb(46, 139, 87);
  --btn-gradient: linear-gradient(135deg, rgb(46, 139, 87), rgb(46, 204, 113));
  --btn-shadow: rgba(46, 139, 87, 0.2) 0px 0px 20px;
  --btn-shadow-hover: rgba(46, 139, 87, 0.4) 0px 0px 28px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  font-size: 17px;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.cyan {
  color: var(--cyan);
}

/* ========================
   TOP BAR (Style 2 - Dark Premium)
======================== */
.top-bar {
  background: #060809;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 0;
  z-index: 1001;
}



.top-bar-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-email {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.top-email i {
  color: var(--green);
  font-size: 12px;
}

.top-email:hover {
  color: var(--white);
}

.top-socials {
  display: flex;
  gap: 20px;
}

.top-socials a {
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.3s ease;
}

.top-socials a:hover {
  color: var(--green);
  transform: translateY(-2px);
}

/* ========================
   NAVBAR
======================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: block;
  /* override Bootstrap display:flex on .navbar */
  width: 100%;
  padding: 0;
  /* override Bootstrap padding */
  background: rgba(10, 12, 15, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.navbar.scrolled {
  background: rgba(10, 12, 15, 0.85);
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  padding: 5px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .nav-container {
  height: 70px;
}

.nav-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  /* padding: 0 24px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 85px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links li {
  position: relative;
}

.nav-links>li>a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: color 0.3s, background 0.3s;
}

.nav-links>li>a:hover,
.nav-links>li.active>a {
  color: var(--cyan);
  background: var(--cyan-glow);
}

.nav-links>li>a i {
  font-size: 10px;
  transition: transform 0.3s;
}

.nav-links>li:hover>a i {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.nav-links li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.3s, background 0.3s;
}

.dropdown li a:hover {
  color: var(--cyan);
  background: var(--cyan-glow);
}

.btn-nav-cta {
  padding: 10px 22px;
  background: var(--btn-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  border-radius: 6px;
  white-space: nowrap;
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
  box-shadow: var(--btn-shadow);
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--btn-shadow-hover);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========================
   HERO
======================== */
.hero {
  position: relative;
  min-height: calc(100vh - 106px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: url('../images/herobg.avif') center center / cover no-repeat;
  padding: 0;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(5, 8, 14, 0.82) 0%,
      rgba(5, 8, 14, 0.60) 55%,
      rgba(5, 8, 14, 0.40) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.3;
  }

  90% {
    opacity: 0.08;
  }

  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- LEFT PANEL ---- */
.hero-left-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  animation: fadeInUp 0.9s ease forwards;
}

/* Yellow small-caps label */
.hero-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Playfair Display serif headline */
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
  max-width: 650px;
}

/* Italic last word — like SDM "People" */
.hero-italic {
  font-style: italic;
  color: #fff;
  font-weight: 900;
}

.hero-bold-sub {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.hero-desc {
  font-size: 17px;
  color: #8a93a8;
  line-height: 1.78;
  max-width: 600px;
  margin-bottom: 24px;
}

/* Partner row */
.hero-partner-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.partner-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6b7385;
  font-weight: 500;
}

.partner-badge i {
  font-size: 17px;
  color: #8a93a8;
}

.partner-divider {
  color: #3a3f50;
  font-size: 17px;
}

/* CTA buttons row */
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Blue filled pill */
.btn-hero-blue {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  background: var(--btn-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  border-radius: 50px;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--btn-shadow);
  font-family: var(--font);
}

.btn-hero-blue:hover {
  transform: translateY(-3px);
  box-shadow: var(--btn-shadow-hover);
}

.btn-hero-yellow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: all 0.3s;
  font-family: var(--font);
}

.btn-hero-yellow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}

.hero-right-bg {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: clamp(26px, 3vw, 42px);
}

.hero-right {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* background: #0a0a0a; */
}

/* Left-edge gradient — blends photo into black bg */
.hero-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  /* background: linear-gradient(to right, #000 0%, rgba(0,0,0,0.7) 50%, transparent 100%); */
  z-index: 2;
  pointer-events: none;
}

/* Bottom-edge gradient */
.hero-right::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  /* background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%); */
  z-index: 2;
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.9) contrast(1.08) grayscale(10%);
}

/* ---- Google Review Badge ---- */
.hero-google-badge {
  position: absolute;
  bottom: 36px;
  right: 30px;
  z-index: 5;
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 190px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1.3s ease forwards;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.google-badge-title {
  font-size: 12px;
  font-weight: 600;
  color: #222;
  font-family: var(--font);
}

.google-badge-mid {
  display: flex;
  align-items: center;
  gap: 10px;
}

.google-score {
  font-size: 1.7rem;
  font-weight: 800;
  color: #111;
  line-height: 1;
  font-family: var(--font);
}

.google-stars {
  display: flex;
  gap: 2px;
  color: #f5c518;
  font-size: 17px;
}

.google-badge-bot {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #666;
  font-family: var(--font);
}

.hero-contact-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 475px;
  padding: clamp(24px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px;
  background: rgba(19, 24, 28, 0.55);
  backdrop-filter: blur(7px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  animation: fadeInUp 1s ease forwards;
}

.hero-contact-form {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-contact-form input,
.hero-contact-form textarea,
.hero-contact-form button,
.hero-terms {
  pointer-events: auto;
}

.hero-contact-form input:not([type="checkbox"]),
.hero-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  color: #202632;
  font: 500 15px var(--font);
  padding: 15px 16px;
  outline: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.hero-contact-form input:not([type="checkbox"])::placeholder,
.hero-contact-form textarea::placeholder {
  color: #777;
}

.hero-contact-form input:not([type="checkbox"]):focus,
.hero-contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.22);
}

.hero-contact-form textarea {
  min-height: 99px;
  resize: vertical;
}

.hero-terms {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.hero-terms input {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  accent-color: var(--green);
}

.hero-form-submit {
  align-self: flex-start;
  margin-top: 5px;
  padding: 14px 28px;
  border: 0;
  border-radius: 50px;
  background: var(--btn-gradient);
  box-shadow: var(--btn-shadow);
  color: #fff;
  font: 700 15px var(--font);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--btn-shadow-hover);
}

.hero-form-errors {
  margin-bottom: 15px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 123, 123, 0.35);
  border-radius: 10px;
  background: rgba(130, 21, 34, 0.27);
  color: #ffe5e7;
  font-size: 12px;
}

.hero-form-errors p {
  margin: 0;
}

.hero-form-errors p + p {
  margin-top: 4px;
}

.hero-form-success {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  color: #fff;
}

.hero-form-success i {
  color: var(--green);
  font-size: 42px;
}

.hero-form-success strong {
  font-size: 19px;
}

.hero-form-success span {
  color: #d2d7de;
  font-size: 14px;
}

/* ========================
   SECTION COMMON
======================== */
section {
  padding: 90px 0;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  /* max-width: 580px; */
  margin-bottom: 50px;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ========================
   SERVICES
======================== */
.services {
  background: #0d1117;
  text-align: center;
  padding: 100px 0;
}

/* Services grid handled by Bootstrap row/col */

.service-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--cyan);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.08);
}


.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--cyan-glow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--cyan);
  transition: background 0.3s, box-shadow 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.12);
}

.service-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 24px;
  flex: 1;
}

.btn-service {
  display: inline-block;
  padding: 10px 24px;
  background: var(--btn-gradient);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--btn-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-service:hover {
  transform: translateY(-2px);
  box-shadow: var(--btn-shadow-hover);
}

/* ========================
   REGION
======================== */
/* Region section handled by Bootstrap row/col */
.why-us {
  background: #060809;
  padding: 100px 0;
}

.why-us-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 20px 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.why-item:last-child {
  border-bottom: none;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #000;
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-item:hover .why-icon {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(46, 204, 113, 0.4);
}

.why-text h4 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.why-text p {
  font-size: 16.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.why-us-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.why-us-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn-cyan {
  display: inline-block;
  padding: 13px 32px;
  background: var(--btn-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  border-radius: 7px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--btn-shadow);
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: var(--btn-shadow-hover);
}

.map-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  filter: blur(40px);
  bottom: -30px;
  right: -30px;
}

/* ========================
   PROCESS
======================== */
.process {
  background: #0d1117;
  text-align: center;
  padding: 100px 0;
}

/* Process grid handled by Bootstrap row/col */

/* ---- Progress Track ---- */
.step-track {
  position: relative;
  margin: 44px 0 36px;
  display: none;
}

@media (min-width: 992px) {
  .step-track {
    display: block;
  }
}

.step-track-line {
  position: absolute;
  top: 50%;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-50%);
  border-radius: 2px;
}

.step-track-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(46, 139, 87, 0.5);
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.process.in-view .step-track-fill {
  width: 100%;
}

.step-track-dots {
  display: flex;
  justify-content: space-around;
  position: relative;
}

.step-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  transition: background 0.4s ease, border-color 0.4s ease,
    color 0.4s ease, box-shadow 0.4s ease;
}

.process.in-view .step-dot:nth-child(1) {
  transition-delay: 0.15s;
}

.process.in-view .step-dot:nth-child(2) {
  transition-delay: 0.45s;
}

.process.in-view .step-dot:nth-child(3) {
  transition-delay: 0.75s;
}

.process.in-view .step-dot:nth-child(4) {
  transition-delay: 1.05s;
}

.process.in-view .step-dot {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #000;
  box-shadow: 0 0 18px rgba(46, 139, 87, 0.45);
}

/* ---- Step Cards ---- */
@keyframes iconPop {
  0% {
    transform: scale(0.3) rotate(-15deg);
    opacity: 0;
  }

  65% {
    transform: scale(1.18) rotate(5deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes topBorderDraw {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s, box-shadow 0.3s;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  border-radius: 14px 14px 0 0;
  transform: scaleX(0);
  transform-origin: left;
}

.step-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 50px rgba(255, 255, 255, 0.06);
}

/* Staggered card entry */
.process.in-view .col-lg-3:nth-child(1) .step-card {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}

.process.in-view .col-lg-3:nth-child(2) .step-card {
  opacity: 1;
  transform: none;
  transition-delay: 0.3s;
}

.process.in-view .col-lg-3:nth-child(3) .step-card {
  opacity: 1;
  transform: none;
  transition-delay: 0.5s;
}

.process.in-view .col-lg-3:nth-child(4) .step-card {
  opacity: 1;
  transform: none;
  transition-delay: 0.7s;
}

/* Top border draws in after card appears */
.process.in-view .col-lg-3:nth-child(1) .step-card::before {
  animation: topBorderDraw 0.5s ease forwards 0.6s;
}

.process.in-view .col-lg-3:nth-child(2) .step-card::before {
  animation: topBorderDraw 0.5s ease forwards 0.8s;
}

.process.in-view .col-lg-3:nth-child(3) .step-card::before {
  animation: topBorderDraw 0.5s ease forwards 1.0s;
}

.process.in-view .col-lg-3:nth-child(4) .step-card::before {
  animation: topBorderDraw 0.5s ease forwards 1.2s;
}

.step-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  user-select: none;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--green);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #000;
  margin: 0 auto 20px;
  opacity: 0;
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
}

/* Icon pops in after card slides up */
.process.in-view .col-lg-3:nth-child(1) .step-icon {
  animation: iconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.45s;
}

.process.in-view .col-lg-3:nth-child(2) .step-icon {
  animation: iconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.65s;
}

.process.in-view .col-lg-3:nth-child(3) .step-icon {
  animation: iconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.85s;
}

.process.in-view .col-lg-3:nth-child(4) .step-icon {
  animation: iconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1.05s;
}

.step-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 17px;
}

/* Global section containment */
section {
  width: 100%;
  max-width: 100vw;
}

/* ========================
   FLOATING BUBBLES
======================== */
.has-bubbles {
  position: relative;
  overflow: hidden;
}

.bubble-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: bubbleFloat linear infinite;
  opacity: 0;
}

@keyframes bubbleFloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-120px) scale(1.08);
    opacity: 0;
  }
}

/* Keep section content above bubbles */
.has-bubbles>.container,
.has-bubbles>.bubble-layer+* {
  position: relative;
  z-index: 1;
}

/* ========================
   WHAT YOU CAN EXPECT
======================== */
.expect-section {
  background: var(--bg-dark);
  padding: 100px 0;
}

.expect-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 60px 56px;
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.03), inset 0 0 60px rgba(255, 255, 255, 0.01);
  position: relative;
  z-index: 1;
}

.expect-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 36px;
  line-height: 1.2;
}

.expect-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.expect-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.expect-section.in-view .expect-list li:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}

.expect-section.in-view .expect-list li:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.22s;
}

.expect-section.in-view .expect-list li:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.34s;
}

.expect-section.in-view .expect-list li:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.46s;
}

.expect-section.in-view .expect-list li:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.58s;
}

.expect-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #000;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.35);
}

.expect-list li div {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
}

.expect-list li div strong {
  color: var(--white);
  font-weight: 700;
  margin-right: 4px;
}

.expect-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.expect-section.in-view .expect-img-wrap {
  opacity: 1;
  transform: none;
}

.expect-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 767px) {
  .expect-card {
    padding: 36px 24px;
  }
}

/* ========================
   SCALE SECTION
======================== */
.scale-section {
  background: #060809;
  padding: 100px 0;
}

.scale-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.scale-section.in-view .scale-img-wrap {
  opacity: 1;
  transform: none;
}

.scale-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.scale-content {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s ease 0.15s, transform 0.75s ease 0.15s;
}

.scale-section.in-view .scale-content {
  opacity: 1;
  transform: none;
}

.scale-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.scale-intro {
  color: var(--text-muted);
  font-size: 16.5px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.scale-bold {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 36px;
  letter-spacing: 0.2px;
}

.scale-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.scale-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.scale-section.in-view .scale-step:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.35s;
}

.scale-section.in-view .scale-step:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.55s;
}

.scale-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: #000;
  font-size: 16.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(46, 204, 113, 0.4);
}

.scale-step-text h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.scale-step-text p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ========================
   SECTION 7 — FINAL CTA
======================== */
.cta-section {
  background: var(--bg-dark);
  padding: 110px 0;
  border-top: 1px solid var(--border);
}

.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.cta-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-cta-primary {
  display: inline-block;
  padding: 16px 38px;
  background: var(--btn-gradient);
  color: #fff;
  font-weight: 800;
  font-size: 16.5px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--btn-shadow);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--btn-shadow-hover);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-weight: 700;
  font-size: 16.5px;
  border-radius: 10px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--white);
  transform: translateY(-3px);
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  margin-bottom: 48px;
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16.5px;
  color: var(--text-muted);
}

.cta-trust span i {
  color: var(--cyan);
  font-size: 16.5px;
}

.cta-quote-box {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 32px 40px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.03);
}

.cta-quote-box p {
  font-size: 17px;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin: 0;
}

/* ========================
   FOOTER
======================== */
.footer {
  background: #060809;
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-logo-img {
  height: 95px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16.5px;
  transition: all 0.3s;
}

.footer-socials a:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  background: var(--cyan-glow);
}

.footer-email {
  color: var(--text-muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.3s;
}

.footer-email:hover {
  color: var(--cyan);
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  color: var(--text-muted);
  font-size: 17px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a::before {
  content: '›';
  color: var(--cyan);
  font-size: 17px;
}

.footer-links li a:hover {
  color: var(--cyan);
}

.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-inner a:hover {
  color: var(--cyan);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--cyan);
}

.btn-footer-cta {
  display: inline-block;
  margin-top: 4px;
  padding: 12px 28px;
  background: var(--btn-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 16.5px;
  border-radius: 7px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--btn-shadow);
}

.btn-footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--btn-shadow-hover);
}

/* ========================
   RESPONSIVE
======================== */

@media (max-width: 991px) {
  .top-bar {
    display: none;
  }

  .nav-links,
  .btn-nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    height: auto !important;
    background: rgba(10, 12, 15, 0.98);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
    z-index: 9999;
  }

  .nav-links.open li {
    width: 100%;
    text-align: left;
  }

  .nav-links.open>li>a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    padding: 12px 20px;
  }

  .nav-links.open .btn-nav-cta {
    display: inline-block;
    margin-top: 10px;
    text-align: center;
  }

  .dropdown {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 20px;
  }

  .nav-links li.open-dropdown .dropdown {
    display: block;
  }

  /* Hero mobile: stack vertically */
  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-right-bg {
    width: 100%;
    justify-content: center;
    padding: 0 12px 42px;
  }

  .hero-contact-card {
    max-width: 540px;
    animation: none;
  }

  .hero-left {
    flex: none;
    padding: 70px 24px 40px;
  }

  .hero-right {
    flex: none;
    width: 100%;
    height: 340px;
  }

  .hero-right::before {
    width: 100%;
    background: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
  }

  .hero-google-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin: 20px 0 0;
    max-width: fit-content;
    animation: none;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-hero-blue,
  .btn-hero-yellow {
    justify-content: center;
  }

  section {
    padding: 65px 0;
  }
}
/* ========================
   INNER PAGES
======================== */
.page-hero {
  background: var(--bg-dark);
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

.page-section {
  padding: 100px 0;
  background: var(--bg-dark);
}

.page-section--alt {
  background: #060809;
}

.page-body-text {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.page-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.page-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.page-checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  color: var(--text);
}

.page-checklist li i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--btn-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  flex-shrink: 0;
}

.why-stats-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.why-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.why-stat-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
