/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1a1a2e;
  background: #f4f7ff;
}

/* ── Announcement Banner ── */
.top-banner {
  background: linear-gradient(90deg, #0f3460, #16213e, #0f3460);
  background-size: 200% 100%;
  animation: bannerSlide 6s linear infinite;
  color: #e9e9e9;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.top-banner span {
  color: #e94560;
  font-weight: 700;
}
@keyframes bannerSlide {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* ── Navigation ── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #16213e;
  padding: 14px 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #e94560, #0f3460);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.logo-text {
  color: #fff;
}
.logo-text strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}
.logo-text small {
  font-size: 0.72rem;
  color: #aab4c8;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: #c9d1e0;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e94560;
  transition: width 0.3s;
}
.nav-links a:hover {
  color: #fff;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  background: #e94560;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 25px;
  font-weight: 600 !important;
  transition:
    background 0.2s,
    transform 0.2s !important;
}
.nav-cta:hover {
  background: #c73652 !important;
  transform: scale(1.04);
}
.nav-cta::after {
  display: none !important;
}

/* ── Hero / Banner ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a1a2e 50%, #16213e 100%);
}
/* animated floating circles */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float 12s ease-in-out infinite alternate;
}
.hero::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #e94560, transparent);
  top: -200px;
  left: -200px;
  animation-duration: 14s;
}
.hero::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #0f3460, transparent);
  bottom: -150px;
  right: -150px;
}
@keyframes float {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(60px, 40px) scale(1.1);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 20px;
}
.hero-badge {
  display: inline-block;
  background: rgba(233, 69, 96, 0.18);
  border: 1px solid rgba(233, 69, 96, 0.45);
  color: #e94560;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero h1 .brand {
  color: #e94560;
}
.hero p {
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 36px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, #e94560, #c73652);
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 24px rgba(233, 69, 96, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.5);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-secondary:hover {
  border-color: #e94560;
  background: rgba(233, 69, 96, 0.1);
}

/* hero stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #e94560;
}
.stat-label {
  font-size: 0.8rem;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Section Layout ── */
.section {
  padding: 90px 60px;
}
.section-alt {
  background: #fff;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  color: #e94560;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #16213e;
  margin-bottom: 14px;
}
.section-header p {
  color: #5a6a80;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Marquee Banner ── */
.marquee-section {
  background: linear-gradient(90deg, #e94560, #c73652);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.marquee-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 0 0 28px;
  text-align: center;
  border: 1px solid #e4eaf5;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 52, 96, 0.14);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e94560, #0f3460);
  transform: scaleX(0);
  transition: transform 0.3s;
  z-index: 2;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-img {
  width: 100%;

  background: linear-gradient(135deg, #eef2ff 0%, #fce8ec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px 18px 0 0;
  margin-bottom: 22px;
  overflow: hidden;
  transition: background 0.35s;
}
.service-img svg {
  transition: transform 0.35s;
  filter: drop-shadow(0 4px 10px rgba(15, 52, 96, 0.12));
}
.service-card:hover .service-img {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
}
.service-card:hover .service-img svg {
  transform: scale(1.1);
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #16213e;
  margin: 0 24px 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: #5a6a80;
  line-height: 1.6;
  margin: 0 24px;
}

/* ── Why Choose Us ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8faff, #fff);
  border: 1px solid #e4eaf5;
  transition: box-shadow 0.3s;
}
.feature-card:hover {
  box-shadow: 0 10px 40px rgba(15, 52, 96, 0.1);
}
.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #16213e;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.88rem;
  color: #5a6a80;
  line-height: 1.6;
}

/* ── Process ── */
.process-section {
  background: linear-gradient(135deg, #0d1b2a, #16213e);
}
.process-section .section-header h2 {
  color: #fff;
}
.process-section .section-header p {
  color: #a8b4c8;
}
.process-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.step {
  text-align: center;
  padding: 20px 30px;
  flex: 1;
  min-width: 180px;
  position: relative;
}
.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -10px;
  top: 36px;
  font-size: 1.6rem;
  color: #e94560;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e94560, #c73652);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.85rem;
  color: #a8b4c8;
  line-height: 1.5;
}

/* ── Testimonials Slider ── */
.testimonial-slider-wrapper {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.testimonial-slider {
  overflow: hidden;
  border-radius: 18px;
}
.testimonial-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  min-width: 100%;
  background: #fff;
  border-radius: 18px;
  padding: 44px 44px 36px;
  border: 1px solid #e4eaf5;
  box-shadow: 0 8px 32px rgba(15, 52, 96, 0.1);
  position: relative;
  box-sizing: border-box;
}
.testimonial-card::before {
  content: "\201C";
  font-size: 8rem;
  color: #fce8ec;
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: Georgia, serif;
  line-height: 1;
}
.stars {
  color: #f5a623;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}
.testimonial-card p {
  font-size: 1rem;
  color: #3a4a5e;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e94560, #0f3460);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-info strong {
  display: block;
  font-size: 0.95rem;
  color: #16213e;
}
.reviewer-info small {
  font-size: 0.8rem;
  color: #8a96a8;
}

/* Slider controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e4eaf5;
  color: #16213e;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(15, 52, 96, 0.12);
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
  z-index: 10;
}
.slider-btn:hover {
  background: #e94560;
  border-color: #e94560;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}
.slider-prev {
  left: -60px;
}
.slider-next {
  right: -60px;
}

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d8e8;
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
  padding: 0;
}
.slider-dot.active {
  background: #e94560;
  transform: scale(1.3);
}

/* ── Brand Logo Slider ── */
.brands-section {
  background: #fff;
  padding: 64px 40px;
  overflow: hidden;
}
.brands-section .section-header {
  margin-bottom: 44px;
}
.brands-slider-outer {
  position: relative;
  overflow: hidden;
}
/* fade edges */
.brands-slider-outer::before,
.brands-slider-outer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.brands-slider-outer::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.brands-slider-outer::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}
.brands-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: brandScroll 28s linear infinite;
  width: max-content;
}
.brands-track:hover {
  animation-play-state: paused;
}
.brand-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 44px;
  flex-shrink: 0;
  opacity: 0.65;
  transition:
    opacity 0.3s,
    transform 0.3s;
  cursor: default;
}
.brand-logo-item:hover {
  opacity: 1;
  transform: translateY(-4px);
}
.brand-logo-item img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter 0.3s;
}
.brand-logo-item:hover img {
  filter: grayscale(0) opacity(1);
}
.brand-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #5a6a80;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@keyframes brandScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid #e4eaf5;
  box-shadow: 0 8px 30px rgba(15, 52, 96, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(15, 52, 96, 0.55) 0%,
    rgba(233, 69, 96, 0.2) 100%
  );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 13, 24, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  max-width: min(1000px, 92vw);
  max-height: 88vh;
  text-align: center;
}

.lightbox-inner img {
  width: auto;
  max-width: 100%;
  max-height: 78vh;
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: #f4f7ff;
  margin-top: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  width: 46px;
  height: 46px;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* ── Contact / CTA ── */
.cta-section {
  background: linear-gradient(135deg, #e94560 0%, #c73652 50%, #0f3460 100%);
  text-align: center;
  padding: 90px 60px;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin: 0 auto 40px;
}
.contact-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.contact-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 20px 30px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition:
    background 0.2s,
    transform 0.2s;
  min-width: 200px;
}
.contact-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}
.contact-card-icon {
  font-size: 1.6rem;
}
.contact-card-text strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.75;
}
.contact-card-text span {
  font-size: 1rem;
  font-weight: 700;
}

/* ── Footer ── */
footer {
  background: #0d1b2a;
  color: #8a96a8;
  padding: 50px 60px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 40px;
}
.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-col h4 {
  color: #c9d1e0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul a {
  color: #8a96a8;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: #e94560;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 22px;
  text-align: center;
  font-size: 0.82rem;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-bottom span {
  color: #e94560;
}

/* ── Scroll to Top ── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #e94560;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(233, 69, 96, 0.45);
  transition: transform 0.2s;
  z-index: 999;
}
.scroll-top:hover {
  transform: translateY(-4px);
}

/* ── Floating Quick Call Icon ── */
.quick-call-icon {
  position: fixed;
  right: 28px;
  bottom: 86px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
  z-index: 1000;
  animation: quickCallPulse 2.4s ease-in-out infinite;
  transition: transform 0.2s;
}

.quick-call-icon:hover {
  transform: translateY(-4px) scale(1.04);
}

@keyframes quickCallPulse {
  0%,
  100% {
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 12px 34px rgba(37, 211, 102, 0.75);
  }
}

/* ── Floating Call Button ── */
.float-call {
  position: fixed;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  padding: 0 20px 0 0;
  height: 54px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  overflow: hidden;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  animation: floatPulse 2.5s ease-in-out infinite;
}
.float-call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  font-size: 1.4rem;
  flex-shrink: 0;
  animation: ringShake 2.5s ease-in-out infinite;
}
.float-call-label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.float-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.65);
}
@keyframes floatPulse {
  0%,
  100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.85);
  }
}
@keyframes ringShake {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-15deg);
  }
  20% {
    transform: rotate(15deg);
  }
  30% {
    transform: rotate(-10deg);
  }
  40% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  nav {
    padding: 12px 24px;
  }
  .nav-links {
    display: none;
  }
  .section {
    padding: 70px 24px;
  }
  .cta-section {
    padding: 70px 24px;
  }
  footer {
    padding: 40px 24px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  .step:not(:last-child)::after {
    content: "↓";
    right: auto;
    top: auto;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-stats {
    gap: 28px;
  }
  .slider-prev {
    left: -4px;
  }
  .slider-next {
    right: -4px;
  }
  .testimonial-card {
    padding: 36px 24px 28px;
  }
  .gallery-item img {
    height: 200px;
  }
  .lightbox {
    padding: 18px;
  }
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .quick-call-icon {
    right: 20px;
    bottom: 82px;
    width: 50px;
    height: 50px;
  }
  .service-img {
    height: auto;
  }
  .service-img img {
    width: 100%;
    height: auto;
    display: block;
  }
}
