/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.85) 0%,
    rgba(10, 22, 40, 0.65) 50%,
    rgba(0, 86, 179, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 180, 216, 0.15);
  border: 1px solid rgba(0, 180, 216, 0.4);
  color: var(--aqua-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 8px; height: 8px;
  background: var(--aqua);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0,180,216,0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,180,216,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(0,180,216,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,180,216,0); }
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: white;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
}

.hero-line {
  display: block;
  animation: slideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-line:nth-child(2) { animation-delay: 0.15s; }

.hero-accent {
  color: var(--aqua);
  text-shadow: 0 0 60px rgba(0,180,216,0.4);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
  padding-bottom: 100px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-stars { color: var(--gold-bright); font-size: 0.95rem; }
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.25); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 1.5s 1.5s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.scroll-indicator {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px; height: 8px;
  background: var(--aqua);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

/* ─── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 0 40px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 40px 0;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-num {
  font-family: 'Baloo 2', cursive;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--aqua);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-sep {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
}

/* ─── ABOUT ───────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.img-stack {
  position: relative;
  height: 520px;
}

.img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 80%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 50%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}

.img-badge {
  position: absolute;
  top: 30px; right: 0;
  background: var(--aqua);
  color: var(--navy);
  padding: 14px 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  z-index: 2;
}

.img-badge strong { display: block; font-size: 0.9rem; font-weight: 700; }
.img-badge span { font-size: 0.78rem; }

.about-points { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }

.about-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.point-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--light-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.about-point strong { display: block; font-size: 1rem; margin-bottom: 4px; color: var(--navy); }
.about-point p { font-size: 0.9rem; color: var(--text-muted); }

/* ─── SERVICES ────────────────────────────────────────────── */
.services-section { background: var(--off-white); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-subtitle { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  text-decoration: none;
  color: inherit;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.service-card.featured {
  grid-column: span 1;
}

.service-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img img { transform: scale(1.07); }

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.6) 0%, transparent 60%);
}

.service-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon { font-size: 1.5rem; margin-bottom: 10px; }
.service-body h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.service-body p { font-size: 0.9rem; color: var(--text-muted); flex: 1; line-height: 1.6; }

.service-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: color 0.3s, gap 0.3s;
}
.service-card:hover .service-link { color: var(--aqua); }

/* ─── BEFORE / AFTER ──────────────────────────────────────── */
.before-after-section { background: white; }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ba-pair {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 8px;
}

.ba-item {
  flex: 1;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.ba-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.ba-label {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ba-before { background: rgba(220,38,38,0.85); color: white; }
.ba-after { background: rgba(5,150,105,0.85); color: white; }

.ba-arrow {
  font-size: 1.8rem;
  color: var(--aqua);
  flex-shrink: 0;
  font-weight: 700;
}

/* ─── REVIEWS — PREMIUM DESIGN ────────────────────────────── */
.reviews-section {
  background: linear-gradient(160deg, var(--navy) 0%, #0b2444 100%);
  position: relative;
  overflow: hidden;
}

.reviews-bg-glow {
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,180,216,0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.reviews-section .section-title { color: white; }
.reviews-section .section-tag {
  background: rgba(0,180,216,0.15);
  border-color: rgba(0,180,216,0.35);
}

.reviews-header { text-align: center; margin-bottom: 48px; }

.reviews-rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.reviews-stars-lg {
  color: var(--gold-bright);
  font-size: 1.5rem;
  letter-spacing: 3px;
}

.reviews-score {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-right: 8px;
}

.reviews-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

/* ─── FEATURED REVIEW ─────────────────────────────────────── */
.reviews-featured {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 52px 56px 44px;
  margin-bottom: 28px;
  backdrop-filter: blur(16px);
  transition: opacity 0.32s ease, transform 0.32s ease;
  cursor: default;
}

.reviews-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(0,180,216,0.2);
  pointer-events: none;
}

.rf-quote-mark {
  font-family: 'Baloo 2', cursive;
  font-size: 6rem;
  color: var(--aqua);
  opacity: 0.35;
  line-height: 0.6;
  margin-bottom: 20px;
  display: block;
  user-select: none;
}

.rf-text {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,0.92);
  line-height: 1.8;
  font-style: italic;
  max-width: 820px;
  margin-bottom: 36px;
}

.rf-author {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.rf-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.88rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(0,180,216,0.25);
}

.rf-meta { flex: 1; }
.rf-meta strong { display: block; color: white; font-size: 1rem; font-weight: 700; }
.rf-meta span { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

.rf-stars {
  color: var(--gold-bright);
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-left: auto;
}

/* ─── THUMBNAIL CARDS ─────────────────────────────────────── */
.reviews-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.rv-thumb {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 22px 20px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rv-thumb:hover {
  background: rgba(0,180,216,0.1);
  border-color: rgba(0,180,216,0.35);
  transform: translateY(-4px);
}

.rv-thumb-stars {
  color: var(--gold-bright);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.rv-thumb p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  font-style: italic;
  flex: 1;
}

.rv-thumb-author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 12px;
  margin-top: auto;
}

.rv-thumb-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.68rem;
  flex-shrink: 0;
}

.rv-thumb-author strong { display: block; color: white; font-size: 0.8rem; }
.rv-thumb-author span { color: rgba(255,255,255,0.45); font-size: 0.72rem; }

/* ─── DOTS ────────────────────────────────────────────────── */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.rv-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
}

.rv-dot.active {
  background: var(--aqua);
  width: 28px;
  border-radius: 4px;
}

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

/* ─── WHY US ──────────────────────────────────────────────── */
.whyus-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0d3b6e 100%);
  position: relative;
  overflow: hidden;
}

.whyus-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,180,216,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.whyus-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.feature-item:hover {
  background: rgba(0,180,216,0.1);
  border-color: rgba(0,180,216,0.3);
  transform: translateY(-3px);
}

.feature-icon { font-size: 1.6rem; flex-shrink: 0; }
.feature-item h4 { color: white; font-size: 0.95rem; margin-bottom: 6px; }
.feature-item p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.6; }

/* ─── GALLERY STRIP ───────────────────────────────────────── */
.gallery-strip {
  overflow: hidden;
  height: 240px;
  background: var(--navy);
}

.gallery-inner {
  display: flex;
  height: 100%;
  width: max-content;
  animation: galleryScroll 28s linear infinite;
}

.gallery-inner img {
  height: 100%;
  width: 320px;
  object-fit: cover;
  object-position: center center;
  flex-shrink: 0;
  display: block;
  filter: saturate(1.1) brightness(0.95);
  transition: filter 0.3s;
}

.gallery-inner img:hover {
  filter: saturate(1.4) brightness(1.05);
}

@keyframes galleryScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .whyus-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .img-stack { height: 340px; }
  .reviews-featured { padding: 40px 36px 32px; }
}

@media (max-width: 768px) {
  /* ── Hero layout ── */
  .hero {
    height: auto;
    min-height: 100svh; /* use small viewport height on mobile */
    padding-bottom: 0;
    align-items: flex-start;
  }

  .hero-content {
    padding: 96px 20px 120px; /* top: clears nav; bottom: clears scroll indicator */
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  /* Badge — tighten up */
  .hero-badge {
    font-size: 0.72rem;
    padding: 6px 14px;
    margin-bottom: 16px;
    max-width: 100%;
    white-space: normal;
    text-align: left;
  }

  /* Heading */
  .hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
    margin-bottom: 16px;
  }

  /* Body copy */
  .hero p {
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 100%;
  }

  /* Action buttons */
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  /* Trust row — horizontal scroll if needed, no overlap with scroll indicator */
  .hero-trust {
    margin-top: 24px;
    padding-bottom: 0; /* remove the 100px — let content flow naturally */
    gap: 12px 20px;
    justify-content: flex-start;
  }

  .trust-divider { display: none; }

  /* Scroll indicator — hide on mobile to avoid overlap */
  .hero-scroll { display: none; }

  /* Stats bar */
  .stats-bar { padding: 0 16px; }
  .stats-inner {
    flex-wrap: wrap;
    gap: 0;
    padding: 28px 0;
    justify-content: center;
  }
  .stat-item {
    flex: 0 0 50%;
    padding: 16px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-sep { display: none; }
  .stat-num { font-size: 2.2rem; }
  .stat-label { font-size: 0.72rem; }

  /* About section */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-images { order: -1; }
  .img-stack { height: 260px; }
  .img-badge { top: 12px; right: 0; font-size: 0.8rem; }
  .img-badge svg { width: 20px; height: 20px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-img { height: 180px; }

  /* Before/After */
  .ba-grid { grid-template-columns: 1fr; }
  .ba-pair { flex-direction: column; }
  .ba-arrow { transform: rotate(90deg); }

  /* Reviews */
  .reviews-featured { padding: 32px 20px 24px; }
  .rf-text { font-size: 0.98rem; }
  .rf-stars { display: none; } /* cleaner on small screens */
  .reviews-thumbs { grid-template-columns: 1fr; gap: 10px; }

  /* Why us */
  .whyus-grid { grid-template-columns: 1fr; gap: 36px; }
  .whyus-features { grid-template-columns: 1fr; gap: 12px; }

  /* Gallery strip */
  .gallery-strip { height: 180px; }
  .gallery-inner img { width: 240px; }

  /* Misc */
  .section-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .section-subtitle { font-size: 0.92rem; }
}

@media (max-width: 480px) {
  .hero-content { padding: 88px 16px 40px; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero p { font-size: 0.9rem; }
  .services-grid { grid-template-columns: 1fr; }
  .whyus-features { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-pair { flex-direction: column; }
  .ba-arrow { transform: rotate(90deg); }
  .reviews-featured { padding: 24px 18px 22px; }
  .rf-quote-mark { font-size: 4rem; }
  .reviews-thumbs { grid-template-columns: 1fr; gap: 12px; }
  .gallery-strip { height: 150px; }
  .gallery-inner img { width: 200px; }
}
