*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #0d6efd;
  --blue-dk: #0a58ca;
  --teal: #0dcaf0;
  --dark: #0f1c2e;
  --card-bg: #ffffff;
  --text: #1e293b;
  --muted: #64748b;
  --radius: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #f0f6ff;
  color: var(--text);
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  height: 68px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(13, 110, 253, 0.1);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 22px;
}

.nav-brand span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.nav-brand span small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--blue);
}

nav .cta-nav {
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s;
}
nav .cta-nav:hover {
  background: var(--blue-dk);
}

/* ── Hamburger toggle (hidden on desktop) ── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 301;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 700px) {
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 40px;
    gap: 0;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.12);
    transition: right 0.35s ease;
    z-index: 300;
    display: flex;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid #f0f0f0;
  }
  nav .cta-nav {
    display: none;
  }
  .menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 299;
  }
  .menu-overlay.active {
    display: block;
  }
}

/* ══════════════════════════════════════════
   BANNER SLIDER
══════════════════════════════════════════ */
.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  margin-top: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Dark gradient overlay on every slide */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(7, 18, 38, 0.78) 0%,
    rgba(13, 50, 110, 0.55) 60%,
    rgba(0, 0, 0, 0.25) 100%
  );
  z-index: 1;
}

/* Individual slide backgrounds using CSS gradients + SVG patterns as images */
.slide-1 {
  background-image: url("images/slide-1.jpg");
}
.slide-2 {
  background-image: url("images/slide-2.jpg");
}
.slide-3 {
  background-image: url("images/slide-4.jpg");
}
.slide-4 {
  background-image: url("images/slide-4.jpg");
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0 8vw;
  max-width: 780px;
  width: 100%;
  margin-top: 68px;
}

.slide-tag {
  display: inline-block;
  background: rgba(13, 202, 240, 0.22);
  border: 1px solid rgba(13, 202, 240, 0.5);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.slide-content h2 {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
}

.slide-content h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--teal), #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--blue);
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  text-decoration: none;
  padding: 11px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Prev / Next arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
  backdrop-filter: blur(6px);
}
.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}
.slider-arrow.prev {
  left: 24px;
}
.slider-arrow.next {
  right: 24px;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition:
    width 0.3s,
    background 0.3s;
}
.dot.active {
  width: 30px;
  background: var(--teal);
}

/* Floating badges on slider */
.slide-floats {
  position: absolute;
  right: 6vw;
  bottom: 80px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.slide-float-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.slide-float-card .sfc-icon {
  font-size: 1.8rem;
}
.slide-float-card .sfc-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}
.slide-float-card .sfc-text span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 700px) {
  .slide-floats {
    display: none;
  }
  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* ══════════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════════ */
section {
  padding: 90px 6vw;
}

.section-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}

.section-sub {
  text-align: center;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   ABOUT US
══════════════════════════════════════════ */
.about {
  background: #fff;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Left – visual */
.about-visual {
  position: relative;
}

/* About single image */
.about-img {
  width: 100%;
  height: 400px;
  border-radius: 18px;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 28px rgba(13, 110, 253, 0.15);
  transition: transform 0.3s;
}
.about-img:hover {
  transform: scale(1.02);
}

/* Stats badge overlay */
.about-stat-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: 0 8px 32px rgba(13, 110, 253, 0.18);
  border: 1px solid #e2eeff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.about-stat-badge strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
}
.about-stat-badge span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

/* Right – text */
.about-text {
}
.about-text .section-label {
  text-align: left;
}
.about-text .section-title {
  text-align: left;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

.about-text p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 34px;
}

.ah-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ah-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.ah-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.ah-item p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.about-stats-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.as-box {
  text-align: center;
}
.as-box strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
}
.as-box span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

/* ══════════════════════════════════════════
   WHY US
══════════════════════════════════════════ */
.why {
  background: #f0f6ff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #e2eeff;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13, 110, 253, 0.1);
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services {
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: #f8fbff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e2eeff;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(13, 110, 253, 0.06);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13, 110, 253, 0.16);
}

/* Service card image wrapper with overlay */
.service-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.07);
}

/* dark gradient overlay on image */
.service-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 30, 70, 0.55) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* emoji badge pinned on image */
.service-emoji {
  position: absolute;
  bottom: 14px;
  left: 18px;
  z-index: 2;
  font-size: 2.2rem;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.service-body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  gap: 10px;
  flex-wrap: wrap;
}

.service-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.08);
  color: var(--blue);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--blue), #3b82f6);
  color: #fff;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(13, 110, 253, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
}

/* ══════════════════════════════════════════
   BRANDS
══════════════════════════════════════════ */
/* ── Brands Section ── */
.brands {
  background: #f0f6ff;
  overflow: hidden;
}

/* Marquee track */
.brands-marquee {
  position: relative;
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.brands-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.brands-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Individual brand card */
.brand-card {
  background: #fff;
  border: 1.5px solid #e2eeff;
  border-radius: 16px;
  padding: 18px 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 140px;
  box-shadow: 0 2px 12px rgba(13, 110, 253, 0.06);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
  flex-shrink: 0;
}
.brand-card:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 12px 30px rgba(13, 110, 253, 0.16);
  border-color: #93c5fd;
}

.brand-logo-wrap {
  width: 90px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo-wrap img {
  max-width: 90px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%) opacity(0.85);
  transition: filter 0.25s;
}
.brand-card:hover .brand-logo-wrap img {
  filter: grayscale(0%) opacity(1);
}

.brand-name {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact {
  background: linear-gradient(135deg, #0a1628 0%, #0d3270 50%, #0a1628 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Floating background shapes */
.contact-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.contact-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  filter: blur(60px);
}
.contact-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--teal);
  top: -120px;
  right: -100px;
  animation: floatShape 8s ease-in-out infinite;
}
.contact-shape-2 {
  width: 350px;
  height: 350px;
  background: var(--blue);
  bottom: -80px;
  left: -60px;
  animation: floatShape 10s ease-in-out infinite reverse;
}
.contact-shape-3 {
  width: 200px;
  height: 200px;
  background: #93c5fd;
  top: 50%;
  left: 50%;
  animation: floatShape 12s ease-in-out infinite;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -20px) scale(1.1);
  }
}

.contact .section-label {
  color: var(--teal);
  position: relative;
}
.contact .section-title {
  color: #fff;
  position: relative;
}
.contact .section-sub {
  color: rgba(255, 255, 255, 0.6);
  position: relative;
}

/* Wrapper: 2-column layout */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 860px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ── Contact Info Cards ── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.contact-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 202, 240, 0.12) 0%,
    rgba(13, 110, 253, 0.08) 100%
  );
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

a.contact-card:hover {
  border-color: rgba(13, 202, 240, 0.4);
  transform: translateX(6px);
  box-shadow:
    0 8px 32px rgba(13, 110, 253, 0.2),
    0 0 0 1px rgba(13, 202, 240, 0.15);
}

a.contact-card:hover .contact-card-glow {
  opacity: 1;
}

a.contact-card:hover .contact-arrow {
  opacity: 1;
  transform: translateX(0);
}

a.contact-card:hover .ci {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(13, 202, 240, 0.35);
}

.contact-card .ci {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  transition: all 0.35s;
}

.ci-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
}

.contact-card-content {
  flex: 1;
  min-width: 0;
}

.contact-card-content h4 {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-card-content p {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  margin: 0;
  word-break: break-word;
}

.contact-hint {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--teal);
  opacity: 0.7;
  margin-top: 4px;
  font-weight: 500;
}

.contact-arrow {
  font-size: 1.3rem;
  color: var(--teal);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.35s;
  flex-shrink: 0;
}

/* Address card (no arrow, slightly different) */
.contact-card-address {
  background: rgba(255, 255, 255, 0.03);
  border-style: dashed;
}

/* ── Right Column ── */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Hours Card */
.contact-hours-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 28px;
  backdrop-filter: blur(10px);
}

.chc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.chc-header .chc-icon {
  font-size: 1.5rem;
}

.chc-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.chc-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}

.chc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.chc-row span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.chc-row strong {
  font-size: 0.9rem;
  color: var(--teal);
  font-weight: 700;
}

.chc-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.chc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* Quick Action Card */
.contact-quick-action {
  background: linear-gradient(
    135deg,
    rgba(13, 110, 253, 0.25) 0%,
    rgba(13, 202, 240, 0.15) 100%
  );
  border: 1px solid rgba(13, 202, 240, 0.25);
  border-radius: 20px;
  padding: 30px 28px;
  text-align: center;
}

.contact-quick-action h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.contact-quick-action p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 22px;
}

.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow:
    0 6px 24px rgba(13, 202, 240, 0.3),
    0 0 0 0 rgba(13, 202, 240, 0);
  transition: all 0.3s;
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow:
      0 6px 24px rgba(13, 202, 240, 0.3),
      0 0 0 0 rgba(13, 202, 240, 0.2);
  }
  50% {
    box-shadow:
      0 8px 32px rgba(13, 202, 240, 0.4),
      0 0 0 10px rgba(13, 202, 240, 0);
  }
}

.contact-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(13, 202, 240, 0.45);
}

/* ══════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════ */
.cta-strip {
  background:
    linear-gradient(
      90deg,
      rgba(13, 110, 253, 0.85) 0%,
      rgba(59, 130, 246, 0.8) 50%,
      rgba(13, 202, 240, 0.85) 100%
    ),
    url("images/slide-1.jpg") center / cover no-repeat;
  text-align: center;
  padding: 70px 6vw;
  color: #fff;
}
.cta-strip h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.cta-strip p {
  opacity: 0.85;
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.cta-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--blue);
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}
.cta-strip a:hover {
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: #070f1a;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 28px 6vw;
  font-size: 0.85rem;
}
footer strong {
  color: rgba(255, 255, 255, 0.75);
}
