/* ===========================================
   CLEANLINE — MOBILE-FIRST DESIGN SYSTEM
   =========================================== */

@font-face {
  font-family: 'Helvetica Neue LT Geo';
  src: url('fonts/HELVETICA NEUE LT GEO 45 LIGHT.TTF') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue LT Geo';
  src: url('fonts/HELVETICA NEUE LT GEO 45 LIGHT.TTF') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue LT Geo';
  src: url('fonts/HELVETICA NEUE LT GEO 65 MEDIUM.TTF') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue LT Geo';
  src: url('fonts/HELVETICA NEUE LT GEO 75 BOLD.TTF') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue LT Geo';
  src: url('fonts/HELVETICA NEUE LT GEO 85 HEAVY.TTF') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue LT Geo';
  src: url('fonts/HELVETICA NEUE LT GEO 95 BLACK.TTF') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ── TOKENS ── */
:root {
  --blue-deep: #0d4079;
  --blue-mid: #1a6bb5;
  --blue-soft: #81b5ee;
  --blue-pale: #e8f2fd;
  --blue-palest: #f4f8fd;
  --white: #ffffff;
  --charcoal: #111827;
  --gray-dark: #374151;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --gray-bg: #f7faff;

  --r-xs: 6px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 999px;

  --sh-xs: 0 1px 6px rgba(13, 64, 121, .06);
  --sh-sm: 0 4px 16px rgba(13, 64, 121, .09);
  --sh-md: 0 10px 36px rgba(13, 64, 121, .14);
  --sh-lg: 0 24px 64px rgba(13, 64, 121, .20);

  --ease: cubic-bezier(.4, 0, .2, 1);
  --t: .32s;

  --font: 'Helvetica Neue LT Geo', sans-serif;

  /* spacing scale — Golden Standard */
  --sp-xs: 8px;
  --sp-sm: 12px;
  --sp-md: 20px;
  --sp-lg: 32px;
  --sp-xl: 60px;
  /* section padding mobile */
  --sp-2xl: 80px;
  /* section padding desktop */
  --sp-header: 48px;
  /* header to content gap */
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  caret-color: transparent;
}

input,
textarea,
[contenteditable="true"] {
  caret-color: auto;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 40px;
  }
}

/* ── SECTION CHROME ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-mid);
  margin-bottom: 12px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-mid);
  border-radius: 2px;
}

/* unified label-box used in some sections */
.label-box {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-mid);
  background: var(--blue-pale);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(24px, 5vw, 44px);
  font-weight: 800;
  color: var(--blue-deep);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-sub,
.section-subtitle {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  max-width: 580px;
}

@media (min-width: 768px) {

  .section-sub,
  .section-subtitle {
    font-size: 17px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-header);
}

.section-header .section-sub,
.section-header .section-subtitle {
  margin: 0 auto;
}

/* Base Section Padding */
section {
  padding: var(--sp-xl) 0;
}

@media (min-width: 900px) {
  section {
    padding: var(--sp-2xl) 0;
  }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--r-xl);
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--blue-deep);
  color: var(--white);
}

.btn-primary:hover {
  background: #0a325f;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13, 64, 121, .38);
}

.btn-secondary {
  background: transparent;
  color: var(--blue-deep);
  border: 2px solid var(--blue-deep);
}

.btn-secondary:hover {
  background: var(--blue-deep);
  color: white;
  transform: translateY(-2px);
}

.btn-wa {
  background: #25d366;
  color: white;
}

.btn-wa:hover {
  background: #1cb956;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .38);
}

.btn-ms {
  background: linear-gradient(135deg, #0099ff 0%, #a033ff 100%);
  color: white;
}

.btn-ms:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 153, 255, .38);
}

/* ================================================
   HEADER
   ================================================ */
#header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(129, 181, 238, .18);
  transition: box-shadow var(--t) var(--ease);
}

#header.scrolled {
  box-shadow: var(--sh-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

@media (min-width: 768px) {
  .header-inner {
    height: 72px;
  }
}

/* Logo Image */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 101px;
  /* Suitable height for a header logo while maintaining proportions */
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo-img {
    height: 115px;
  }
}

/* Desktop nav */
#desktop-nav {
  display: none;
  align-items: center;
  gap: 28px;
}

@media (min-width: 900px) {
  #desktop-nav {
    display: flex;
  }
}

#desktop-nav a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-dark);
  position: relative;
  padding: 4px 0;
  transition: color var(--t);
}

#desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-soft);
  border-radius: 2px;
  transition: width var(--t) var(--ease);
}

#desktop-nav a:hover {
  color: var(--blue-deep);
}

#desktop-nav a:hover::after {
  width: 100%;
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Lang toggle */
.lang-toggle {
  display: flex;
  border: 1.5px solid rgba(129, 181, 238, .55);
  border-radius: var(--r-xl);
  overflow: hidden;
  flex-shrink: 0;
}

.lang-btn {
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  transition: all var(--t);
  line-height: 1;
}

.lang-btn.active {
  background: var(--blue-deep);
  color: white;
}

/* Header CTA */
.header-cta {
  display: inline-flex;
  padding: 8px 12px;
  font-size: 11px;
  gap: 6px;
  white-space: nowrap;
}

.header-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 380px) {
  .header-cta {
    padding: 6px 10px;
    font-size: 10px;
    gap: 4px;
  }
  .header-cta svg {
    width: 14px;
    height: 14px;
  }
}

@media (min-width: 640px) {
  .header-cta {
    padding: 14px 26px;
    font-size: 14px;
    gap: 9px;
  }
  .header-cta svg {
    width: 20px;
    height: 20px;
  }
}

/* Ensure mobile nav CTA svg has correct size */
.mobile-nav-cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .header-inner {
    gap: 8px;
  }
  .header-right {
    gap: 8px;
  }
  .lang-btn {
    padding: 5px 8px;
    font-size: 11px;
  }
  .logo {
    margin-left: -8px;
  }
  .logo-img {
    height: 106px;
  }
  /* Scale burger down slightly on mobile to save space */
  .burger {
    width: 34px;
    height: 34px;
    padding: 4px 2px;
  }
}

@media (max-width: 380px) {
  .header-inner {
    gap: 4px;
  }
  .header-right {
    gap: 4px;
  }
  .lang-btn {
    padding: 4px 6px;
    font-size: 10px;
  }
  .logo-img {
    height: 85px;
  }
}

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 4px 3px;
  border-radius: var(--r-xs);
  transition: background var(--t);
}

@media (min-width: 900px) {
  .burger {
    display: none;
  }
}

.burger:hover {
  background: var(--blue-palest);
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-deep);
  border-radius: 2px;
  margin: 0 auto;
  transition: all var(--t) var(--ease);
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
#mobile-nav {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: white;
  z-index: 998;
  padding: 0 20px 20px;
  box-shadow: var(--sh-md);
  transform: translateY(-110%);
  opacity: 0;
  transition: transform .38s var(--ease), opacity .28s var(--ease);
  pointer-events: none;
}

#mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

@media (min-width: 768px) {
  #mobile-nav {
    top: 72px;
  }
}

#mobile-nav a {
  display: flex;
  align-items: center;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  border-bottom: 1px solid var(--blue-pale);
  transition: color var(--t);
}

#mobile-nav a:hover {
  color: var(--blue-deep);
}

#mobile-nav a:last-of-type {
  border-bottom: none;
}

.mobile-nav-cta {
  margin-top: 16px;
  width: 100%;
}

/* ================================================
   HERO
   ================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 40px;
  overflow: hidden;
}

@media (min-width: 768px) {
  #hero {
    padding-top: 72px;
    align-items: center;
  }
}

@media (min-width: 900px) {
  #hero {
    height: 100svh;
    max-height: 1080px;
    padding-bottom: 0;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/hero_bg_cleaning.png') center 30%/cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 30, 60, .55) 0%, rgba(8, 30, 60, .72) 100%),
    linear-gradient(90deg, rgba(8, 30, 60, .78) 0%, rgba(8, 30, 60, .2) 60%, transparent 100%);
}

/* Floating bubbles */
.hero-bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  animation: floatUp ease-in-out infinite;
}

.hb1 {
  width: 80px;
  height: 80px;
  bottom: 30%;
  right: 12%;
  animation-duration: 10s;
}

.hb2 {
  width: 140px;
  height: 140px;
  top: 20%;
  right: 22%;
  animation-duration: 14s;
  animation-delay: -4s;
}

.hb3 {
  width: 50px;
  height: 50px;
  top: 55%;
  right: 35%;
  animation-duration: 8s;
  animation-delay: -2s;
}

.hb4 {
  width: 220px;
  height: 220px;
  bottom: -40px;
  right: -30px;
  animation-duration: 18s;
  animation-delay: -8s;
  opacity: .4;
}

.hb5 {
  width: 36px;
  height: 36px;
  top: 28%;
  left: 8%;
  animation-duration: 7s;
  animation-delay: -1s;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-22px) scale(1.04);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 28px 0 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 440px;
    gap: 40px;
    padding: 0;
    align-items: center;
  }
}

.hero-content {
  max-width: 680px;
}

/* Hero Video Box */
.hero-video-box {
  display: block;
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--r-md);
  padding: 8px;
  margin: 16px auto 0;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--sh-md);
  position: relative;
  overflow: hidden;
}

.hero-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--blue-deep);
}

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  pointer-events: none;
}

.play-icon-circle {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px; /* optical center */
}

@media (min-width: 900px) {
  .hero-video-box {
    border-radius: var(--r-lg);
    padding: 12px;
    margin-top: 0;
    margin-bottom: 0;
    box-shadow: var(--sh-lg);
  }

  .hero-video-wrapper {
    aspect-ratio: 4/3;
    border-radius: var(--r-md);
  }

  .play-icon-circle {
    width: 64px;
    height: 64px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--r-xl);
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 16px;
  letter-spacing: .5px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.75);
  }
}

.hero-title {
  font-size: clamp(26px, 5vw, 50px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.hero-title em {
  color: var(--blue-soft);
  font-style: normal;
}

.hero-sub {
  font-size: clamp(13px, 2vw, 15px);
  color: rgba(255, 255, 255, .78);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 767px) {
  .hero-ctas {
    width: 100%;
    max-width: 360px;
  }
  .hero-ctas .btn {
    display: flex !important;
    width: 100% !important;
    height: 56px !important;
    padding: 0 !important;
    font-size: 15px !important;
    justify-content: center !important;
    align-items: center !important;
  }
}

@media (min-width: 768px) {
  .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-ctas .btn {
    width: auto;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.stat {
  text-align: center;
  padding: 0 4px;
}

.stat+.stat {
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.stat-num {
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 800;
  color: var(--blue-soft);
  line-height: 1;
  margin-bottom: 3px;
}

.stat-label {
  font-size: 10px;
  color: rgba(255, 255, 255, .6);
  font-weight: 500;
}

/* ================================================
   TRUST / WHY US
   ================================================ */
#trust {
  background: var(--gray-bg);
  position: relative;
  overflow: hidden;
}

.trust-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.trust-deco-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(129, 181, 238, .12) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}

.trust-deco-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(13, 64, 121, .06) 0%, transparent 70%);
  bottom: -80px;
  left: -60px;
}

/* removed obsolete trust-header */

/* removed obsolete trust-header .section-sub */

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 auto;
  }
}

.trust-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 24px 20px;
  box-shadow: var(--sh-xs);
  border: 1px solid rgba(129, 181, 238, .14);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  position: relative;
  overflow: hidden;
  text-align: center;
}

@media (min-width: 768px) {
  .trust-card {
    padding: 30px 24px;
  }
}

.trust-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue-soft));
  transform: scaleX(0);
  transition: transform var(--t) var(--ease);
  transform-origin: left;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.trust-card:hover::after {
  transform: scaleX(1);
}

.trust-icon {
  width: 64px;
  height: 64px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  transition: background var(--t), transform var(--t);
}

.trust-card:hover .trust-icon {
  background: var(--blue-deep);
  transform: scale(1.1) rotate(-5deg);
}

.trust-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--blue-deep);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.trust-desc {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.65;
}

/* ================================================
   SERVICES
   ================================================ */
#services {
  background: white;
}

.services-header {
  margin-bottom: var(--sp-header);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .services-grid {
    gap: 18px;
  }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.service-card {
  background: white;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  border: 1px solid rgba(129, 181, 238, .15);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  display: flex;
  flex-direction: row;
}

@media (min-width: 640px) {
  .service-card {
    flex-direction: column;
  }
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}

.service-img {
  aspect-ratio: 1/1;
  width: 120px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  background: var(--blue-pale);
}

@media (min-width: 640px) {
  .service-img {
    aspect-ratio: 4/3;
    width: 100%;
  }
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.service-card:hover .service-img img {
  transform: scale(1.07);
}

.service-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #e8f2fd 0%, #c8dff7 100%);
  font-size: clamp(28px, 6vw, 52px);
  flex-direction: column;
  gap: 8px;
}

.service-img-placeholder span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--blue-deep);
  opacity: .55;
  text-transform: uppercase;
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 64, 121, .45) 100%);
}

.service-body {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .service-body {
    padding: 22px;
  }
}

.service-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .service-title {
    font-size: 16px;
  }
}

.service-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 640px) {
  .service-desc {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    line-height: 1.55;
    margin-bottom: 12px;
  }
}

.service-tag {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue-deep);
  border-radius: var(--r-xl);
  padding: 4px 11px;
  font-size: 11px;
  font-weight: 700;
}

/* Specific inner card classes recently added to HTML */
.svc-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: white;
  border-top: 1px solid rgba(13, 64, 121, 0.05);
}

@media (min-width: 768px) {
  .svc-card-body {
    padding: 22px 24px;
  }
}

.svc-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .svc-card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}

.svc-card-price {
  font-size: 12px;
  font-weight: 500;
  color: #0d4079;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(232, 242, 253, 0.9) 0%, rgba(200, 223, 247, 0.5) 100%);
  border: 1px solid rgba(129, 181, 238, 0.4);
  padding: 4px 10px;
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(13, 64, 121, 0.05);
  transition: transform var(--t), box-shadow var(--t);
}

@media (min-width: 768px) {
  .svc-card-price {
    font-size: 13.5px;
    padding: 5px 12px;
  }
}

.svc-card:hover .svc-card-price {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 64, 121, 0.08);
}

.svc-card-disclaimer {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
  border-top: 1px dashed rgba(13, 64, 121, 0.15);
  padding-top: 12px;
  margin-top: auto;
}

/* ================================================
   GALLERY
   ================================================ */
#gallery {
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.project-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--sh-xs, 0 1px 2px 0 rgba(0, 0, 0, 0.05));
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  cursor: pointer;
}

@media (min-width: 768px) {
  .project-card {
    border-radius: 16px;
  }
}

.project-card:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: var(--sh-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06));
}

.project-card:hover .project-img::after {
  opacity: 1;
}

.project-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--blue-pale);
  position: relative;
}

/* Subtle overlay on hover to indicate clickability */
.project-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 64, 121, 0.1);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
  pointer-events: none;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.project-card:hover .project-img img {
  transform: scale(1.05);
}

/* ================================================
   FB TRUST BAR
   ================================================ */
.fb-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: white;
  border-radius: var(--r-xl);
  padding: 16px 20px;
  box-shadow: var(--sh-xs);
  border: 1px solid rgba(129, 181, 238, .14);
  margin: 32px auto 0;
  width: 100%;
  max-width: 320px;
}

.fb-link {
  margin-top: 4px;
  font-size: 13px;
  color: var(--blue-soft);
  font-weight: 600;
  text-decoration: none;
  background: rgba(13, 64, 121, 0.05);
  padding: 8px 16px;
  border-radius: 20px;
  transition: background 0.2s;
}

.fb-link:hover {
  background: rgba(13, 64, 121, 0.1);
}

@media (min-width: 768px) {
  .fb-bar {
    flex-direction: row;
    text-align: left;
    gap: 16px;
    padding: 16px 28px;
    width: fit-content;
    max-width: none;
  }

  .fb-link {
    margin-top: 0;
    margin-left: auto;
    font-size: 12px;
    background: transparent;
    padding: 0;
    border-radius: 0;
  }

  .fb-link:hover {
    background: transparent;
    text-decoration: underline;
  }
}

/* ================================================
   LIGHTBOX
   ================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  cursor: pointer;
}

#lightbox-img {
  position: relative;
  z-index: 1001;
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  user-select: none;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 1002;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1002;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
  line-height: 1;
  padding-bottom: 4px;
  /* Optical center adjustment */
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-btn.prev {
  left: 16px;
}

.lightbox-btn.next {
  right: 16px;
}

@media (min-width: 768px) {
  .lightbox-close {
    top: 32px;
    right: 40px;
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .lightbox-btn {
    width: 56px;
    height: 56px;
    font-size: 32px;
  }

  .lightbox-btn.prev {
    left: 40px;
  }

  .lightbox-btn.next {
    right: 40px;
  }
}

/* ================================================
   TESTIMONIALS
   ================================================ */
#testimonials {
  background: var(--gray-bg);
  overflow: hidden;
}

.testi-header {
  text-align: center;
  margin-bottom: var(--sp-header);
}

.testi-header .section-sub {
  margin: 0 auto;
}

.carousel-track-outer {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform .5s var(--ease);
}

@media (min-width: 768px) {
  .carousel-track {
    gap: 20px;
  }
}

.testi-card {
  flex-shrink: 0;
  width: calc(100vw - 32px);
  background: white;
  border-radius: var(--r-lg);
  padding: 22px 20px;
  box-shadow: var(--sh-xs);
  border: 1px solid rgba(129, 181, 238, .15);
  transition: box-shadow var(--t);
}

.testi-card:hover {
  box-shadow: var(--sh-md);
}

@media (min-width: 640px) {
  .testi-card {
    width: calc(50vw - 40px);
  }
}

@media (min-width: 900px) {
  .testi-card {
    width: 360px;
    padding: 32px 28px;
  }
}

.stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .testi-text {
    font-size: 15px;
  }
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  color: var(--blue-deep);
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
}

.author-loc {
  font-size: 12px;
  color: var(--gray);
  margin-top: 1px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(13, 64, 121, .25);
  background: white;
  color: var(--blue-deep);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
  line-height: 1;
}

.carousel-btn:hover {
  background: var(--blue-deep);
  color: white;
  border-color: var(--blue-deep);
}

.dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-soft);
  opacity: .4;
  transition: all var(--t);
  cursor: pointer;
  border: none;
}

.dot.active {
  opacity: 1;
  width: 22px;
  border-radius: 4px;
  background: var(--blue-deep);
}

.google-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 16px 24px;
  background: white;
  border-radius: var(--r-lg);
  width: fit-content;
  margin: 36px auto 0;
  box-shadow: var(--sh-xs);
  border: 1px solid rgba(129, 181, 238, .18);
}

.google-bar-stars {
  color: #f59e0b;
  font-size: 15px;
}

.google-bar-score {
  font-size: 20px;
  font-weight: 800;
  color: var(--charcoal);
  margin-right: 2px;
}

.google-bar-label {
  font-size: 12px;
  color: var(--gray);
}

/* ================================================
   FAQ
   ================================================ */
#faq {
  background: white;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .faq-layout {
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: start;
  }
}

.faq-header {
  margin-bottom: 28px;
}

.faq-item {
  border-bottom: 1px solid rgba(129, 181, 238, .25);
}

.faq-item:first-child {
  border-top: 1px solid rgba(129, 181, 238, .25);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 0;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  transition: color var(--t);
  background: none;
  border: none;
  font-family: var(--font);
  cursor: pointer;
}

@media (min-width: 768px) {
  .faq-q {
    font-size: 16px;
    padding: 20px 0;
  }
}

.faq-q:hover {
  color: var(--blue-deep);
}

.faq-q-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(129, 181, 238, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--blue-deep);
  transition: all var(--t) var(--ease);
  font-weight: 300;
  line-height: 1;
}

.faq-item.open .faq-q-icon {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: white;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s var(--ease);
}

.faq-a-inner {
  padding-bottom: 18px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
}

@media (min-width: 768px) {
  .faq-a-inner {
    font-size: 15px;
  }
}

.faq-item.open .faq-a {
  max-height: 260px;
}

/* CTA side card */
.faq-cta {
  background: linear-gradient(145deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  color: white;
}

@media (min-width: 900px) {
  .faq-cta {
    position: sticky;
    top: 90px;
    padding: 44px 36px;
  }
}

.faq-cta-emoji {
  font-size: 44px;
  margin-bottom: 18px;
}

.faq-cta h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .faq-cta h3 {
    font-size: 22px;
  }
}

.faq-cta p {
  font-size: 14px;
  opacity: .85;
  margin-bottom: 24px;
  line-height: 1.65;
}

.faq-cta .btn {
  width: 100%;
  background: white;
  color: var(--blue-deep);
}

.faq-cta .btn.btn-ms {
  background: linear-gradient(135deg, #0099ff 0%, #a033ff 100%);
  color: white;
  border: none;
}

.faq-cta .btn.btn-wa {
  background: #25d366;
  color: white;
}

.faq-cta .btn:hover {
  background: var(--blue-pale);
  transform: translateY(-2px);
}

.faq-cta .btn.btn-ms:hover,
.faq-cta .btn.btn-wa:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}



/* ================================================
   FOOTER
   ================================================ */
footer {
  background: linear-gradient(180deg, #111827 0%, #080f1e 100%);
  padding: 48px 0 24px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(129, 181, 238, 0.3), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 80px;
  }
}

@media (min-width: 900px) {
  .footer-top {
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 120px;
  }
}

/* Footer Contact Info */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  text-decoration: none;
  transition: color var(--t);
}

.footer-contact-item:hover {
  color: white;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--t) var(--ease);
}

.footer-contact-item:hover .footer-contact-icon {
  background: var(--blue-soft);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(129, 181, 238, 0.2);
}

/* Footer Socials */
.footer-social-wrapper {
  display: flex;
  flex-direction: column;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--t) var(--ease);
}

.footer-social-btn:hover {
  background: var(--blue-soft);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(129, 181, 238, 0.2);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 20px;
}



.footer-links-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 12px;
  text-decoration: none;
  transition: color var(--t);
}

.footer-links-col a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: center;
    text-align: center;
  }
}

.footer-nav {
  display: none;
}

@media (min-width: 768px) {
  .footer-nav {
    display: block;
  }
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  margin-top: 10px;
}

/* Hover extensions for socials */
.hover-fb:hover {
  background: #1877F2 !important;
  color: white !important;
}

.hover-ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  color: white !important;
}


/* ================================================
   FLOATING WIDGETS
   ================================================ */
.float-widgets {
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .float-widgets {
    bottom: 28px;
    right: 24px;
  }
}

.float-btn {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .22);
  text-decoration: none;
  transition: transform var(--t) var(--ease), box-shadow var(--t);
  overflow: visible;
}

@media (min-width: 768px) {
  .float-btn {
    width: 56px;
    height: 56px;
  }
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: ring 2.8s ease-out infinite;
}

.float-wa-btn {
  background: #25d366;
}

.float-ms-btn {
  background: linear-gradient(135deg, #0099ff, #a033ff);
}

.float-ph-btn {
  background: var(--blue-deep);
}

.float-wa-btn .float-pulse {
  background: rgba(37, 211, 102, .5);
}

.float-ms-btn .float-pulse {
  background: rgba(0, 153, 255, .4);
}

.float-ph-btn .float-pulse {
  background: rgba(13, 64, 121, .5);
}

@keyframes ring {
  0% {
    transform: scale(1);
    opacity: .8;
  }

  80% {
    transform: scale(1.8);
    opacity: 0;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.float-label {
  position: absolute;
  right: 64px;
  background: rgba(17, 24, 39, .9);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: all var(--t) var(--ease);
  pointer-events: none;
  font-family: var(--font);
}

.float-btn:hover .float-label {
  opacity: 1;
  transform: translateX(0);
}

/* ================================================
   SCROLL-TO-TOP
   ================================================ */
#scroll-top {
  position: fixed;
  bottom: 24px;
  right: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid rgba(13, 64, 121, .2);
  color: var(--blue-deep);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--t) var(--ease);
  pointer-events: none;
}

@media (min-width: 768px) {
  #scroll-top {
    bottom: 32px;
    right: 24px;
    width: 64px;
    height: 64px;
    font-size: 28px;
  }
}

#scroll-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: all;
}

#scroll-top:hover {
  background: var(--blue-deep);
  color: white;
}

/* Call Button Base */
.btn-call {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all var(--t) var(--ease);
}

.btn-call:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Play Overlay on Video */
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  pointer-events: none;
  /* Passes clicks downward if needed */
}

.hero-video-box:hover .video-play-overlay {
  background: rgba(0, 0, 0, 0.4);
}

/* Hide play button when video is playing */
.hero-video-box.playing .video-play-overlay {
  opacity: 0;
  visibility: hidden;
}

.play-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  /* visually center play triangle */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.hero-video-box:hover .play-icon-circle {
  transform: scale(1.1);
}

/* ===================== TESTIMONIALS — card layout ===================== */
.testi-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.testi-card .testi-text {
  flex: 1;
}

.testi-card .testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(129, 181, 238, .14);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-svc {
  font-size: 12px;
  color: var(--blue-soft);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ===================== SERVICES HORIZONTAL SCROLL ===================== */
.services-scroll-container {
  position: relative;
  width: 100%;
}

.svc-nav-btn {
  display: none;
}

.services-scroll-wrapper {
  width: auto;
  margin-left: -20px;
  margin-right: calc(-50vw + 50%);
  padding: 1rem 20px 2rem;
  scroll-padding-inline-start: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
  scroll-snap-type: x mandatory;
}

@media (min-width: 768px) {
  .services-scroll-wrapper {
    margin-left: -64px;
    margin-right: calc(-50vw + 50%);
    padding: 1rem 64px 2rem;
    scroll-padding-inline-start: 64px;
  }
}

@media (min-width: 1024px) {
  .services-scroll-wrapper {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 1rem 0 2rem;
    scroll-padding-inline-start: 0;
    overflow-x: visible;
  }
}

.services-scroll-wrapper::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Edge */
}

.services-scroll-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0;
}

@media (min-width: 1024px) {
  .services-scroll-track {
    width: 100%;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.services-scroll-track .svc-card {
  width: 75vw;
  max-width: 280px;
  /* Flexible width for horizontal scrolling */
  flex-shrink: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media (min-width: 1024px) {
  .services-scroll-track .svc-card {
    width: calc((100% - (2 * 1.5rem)) / 3);
    flex-shrink: 0;
    scroll-snap-align: none;
  }
}

.svc-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.svc-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.svc-card:hover .svc-card-img img {
  transform: scale(1.05);
}