html {
  scrollbar-gutter: stable;
}

body {
  font-family: "Poppins", sans-serif;
}

/* ====================== */
/* HERO SECTION           */
/* ====================== */

.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: #0a1f44;
}

/* Background Slides */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroKenBurns 12s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.08) translate(-1%, -1%);
  }
}

/* Dark Overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      rgba(10, 31, 68, 0.95) 0%,
      rgba(10, 31, 68, 0.85) 35%,
      rgba(10, 31, 68, 0.65) 65%,
      rgba(10, 31, 68, 0.45) 100%);
  z-index: 1;
}

/* Content Layer */
.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 16px;
}

.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3.5rem 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .hero__content {
    padding: 0 64px;
  }

  .hero__inner {
    padding: 4.5rem 0 4rem;
  }
}

/* Tag */
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: heroFadeIn 0.6s 0.3s ease forwards;
}

.hero__tag-line {
  display: block;
  width: 28px;
  height: 2px;
  background: #00b4d8;
  border-radius: 2px;
  animation: heroLineGrow 0.8s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: left;
  transform: scaleX(0);
}

.hero__tag-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00b4d8;
}

/* Title - Word by Word */
.hero__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 1rem;
  max-width: 100%;
  text-align: center;
}

.hero__title-line {
  display: block;
  white-space: nowrap;
}

.hero__title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) rotateX(15deg);
  animation: heroWordReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  margin-right: 0.25em;
}

.hero__title-word:nth-child(1) {
  animation-delay: 0.4s;
}

.hero__title-word:nth-child(2) {
  animation-delay: 0.48s;
}

.hero__title-word:nth-child(3) {
  animation-delay: 0.56s;
}

.hero__title-word:nth-child(4) {
  animation-delay: 0.64s;
}

.hero__title-word:nth-child(5) {
  animation-delay: 0.72s;
}

.hero__title-word:nth-child(6) {
  animation-delay: 0.78s;
}

.hero__title-word:nth-child(7) {
  animation-delay: 0.84s;
}

.hero__title-word:nth-child(8) {
  animation-delay: 0.9s;
}

.hero__title-word:nth-child(9) {
  animation-delay: 0.96s;
}

.hero__title-word:nth-child(10) {
  animation-delay: 1.02s;
}

.hero__title-word:nth-child(11) {
  animation-delay: 1.08s;
}

.hero__title-word:nth-child(12) {
  animation-delay: 1.14s;
}

.hero__title-accent {
  color: #00b4d8;
}

@keyframes heroWordReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

/* Description - 2 lines, expand on hover */
.hero__desc-wrapper {
  position: relative;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: heroFadeIn 0.8s 1.2s ease forwards;
}

.hero__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.hero__desc-toggle {
  display: none;
}

/* CTA Buttons */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: heroFadeIn 0.8s 1.5s ease forwards;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.hero__btn--primary {
  color: #0a1f44;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.hero__btn--primary:hover {
  background: #00b4d8;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 180, 216, 0.35);
}

.hero__btn--primary:active {
  transform: translateY(0) scale(0.96);
}

.hero__btn--outline {
  color: #ffffff;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.hero__btn--outline:hover {
  border-color: #00b4d8;
  background: rgba(0, 180, 216, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 4px 18px rgba(0, 180, 216, 0.15);
}

.hero__btn--outline:active {
  transform: translateY(0) scale(0.96);
}

/* Dot Indicators with Progress Ring */
.hero__indicators {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  animation: heroFadeIn 0.6s 1.8s ease forwards;
}

.hero__dot {
  position: relative;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero__dot:hover::before {
  background: #00b4d8;
  transform: scale(1.3);
}

.hero__dot.is-active::before {
  background: #ffffff;
}

.hero__dot-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.hero__dot-ring circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 2;
  transition: stroke 0.3s ease;
}

.hero__dot.is-active .hero__dot-ring circle {
  stroke: #00b4d8;
  stroke-dasharray: 100.53;
  stroke-dashoffset: 100.53;
  animation: heroRingProgress 5s linear forwards;
}

@keyframes heroRingProgress {
  to {
    stroke-dashoffset: 0;
  }
}

/* General hero keyframes */
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@keyframes heroLineGrow {
  to {
    transform: scaleX(1);
  }
}

/* ====================== */
/* ABOUT SECTION          */
/* ====================== */

.about-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: #ffffff;
}

.about-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(0, 180, 216, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 80%, rgba(10, 31, 68, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.about-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-section__content--centered {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .about-section {
    padding: 6rem 0;
  }

  .about-section__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
  }

  .about-section .about-section__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Tag */
.about-section__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00b4d8;
}

.about-section__tag-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #00b4d8;
  border-radius: 2px;
}

/* Heading */
.about-section__heading {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.about-section__heading span {
  position: relative;
}

.about-section__heading span::after {
  content: none;
}

/* Text */
.about-section__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.about-section__content--centered .about-section__link {
  margin: 0 auto;
}

.about-section__text p {
  font-size: 1rem;
  line-height: 1.75;
  color: #475569;
}

/* Link */
.about-section__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a1f44;
  padding: 0.7rem 1.4rem;
  border: 2px solid #0a1f44;
  border-radius: 0.5rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section__link:hover {
  background: #0a1f44;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 31, 68, 0.2);
}

/* Visual / Image */
.about-section__visual {
  position: relative;
  padding: 20px 20px 20px 20px;
}

.about-section .about-section__visual {
  display: none;
}

.about-section__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 80%;
  border: 3px solid #0a1f44;
  border-radius: 14px;
  z-index: 0;
  animation: aboutFrameFloat 6s ease-in-out infinite;
}

.about-section__image-wrap {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 31, 68, 0.18), 0 8px 24px rgba(10, 31, 68, 0.1);
  animation: aboutImageFloat 8s ease-in-out infinite;
}

.about-section__image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-section__image-wrap:hover .about-section__image {
  transform: scale(1.04);
}

/* Secondary blueprint overlay image */
.about-section__secondary {
  position: absolute;
  bottom: 60px;
  right: -10px;
  width: 40%;
  max-width: 180px;
  z-index: 3;
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 12px 40px rgba(10, 31, 68, 0.25);
  animation: aboutSecondaryFloat 7s ease-in-out infinite 0.5s;
}

.about-section__secondary-img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.6) brightness(0.4);
}

.about-section__secondary-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 31, 68, 0.85) 0%, rgba(10, 31, 68, 0.7) 100%);
}

.about-section__secondary-overlay::after {
  content: '';
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 14px 14px;
}

.about-section__secondary-overlay::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 40%;
  transform: translate(-50%, -50%);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.08), 0 0 0 16px rgba(255, 255, 255, 0.04);
}

/* Stats */
.about-section__stats {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.about-section__stat {
  text-align: center;
  padding: 1.2rem 0.5rem;
  background: #f8fafc;
  border: 1px solid rgba(10, 31, 68, 0.06);
  border-radius: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section__stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10, 31, 68, 0.08);
}

.about-section__stat-number {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a1f44;
  line-height: 1.2;
}

.about-section__stat-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #64748b;
  margin-top: 0.3rem;
}

/* Scroll reveal animation for about section */
.about-section__content,
.about-section__visual {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-section__visual {
  transition-delay: 0.2s;
}

.about-section.is-visible .about-section__content,
.about-section.is-visible .about-section__visual {
  opacity: 1;
  transform: translateY(0);
}

/* ====================== */
/* WHY CHOOSE US          */
/* ====================== */

.why-choose-section {
  padding: 5.5rem 0;
  background:
    radial-gradient(circle at top right, rgba(0, 180, 216, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.why-choose-section__header {
  max-width: 52rem;
  margin: 0 auto 2.8rem;
  text-align: center;
}

.why-choose-section__eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00b4d8;
}

.why-choose-section__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: #0a1f44;
  margin-bottom: 1rem;
}

.why-choose-section__intro {
  font-size: 1rem;
  line-height: 1.8;
  color: #64748b;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .why-choose-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.why-choose-card {
  height: 100%;
  padding: 1.6rem 1.35rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: 1.1rem;
  box-shadow: 0 14px 34px rgba(10, 31, 68, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-choose-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 180, 216, 0.2);
  box-shadow: 0 22px 48px rgba(10, 31, 68, 0.1);
}

.why-choose-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0a1f44;
  margin-bottom: 0.65rem;
}

.why-choose-card__text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #64748b;
}

/* ====================== */
/* SERVICE CARDS          */
/* ====================== */

.service-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid rgba(10, 31, 68, 0.06);
  border-radius: 1rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
  text-align: center;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 31, 68, 0.1);
  border-color: rgba(0, 180, 216, 0.2);
}

.service-card__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.3rem;
  border-radius: 0.75rem;

  background: rgba(0, 188, 212, 0.12);
  border: 1px solid rgba(0, 188, 212, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 188, 212, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-card__icon {
  transform: scale(1.1);
  box-shadow: 0 14px 30px rgba(0, 188, 212, 0.24);
}

.service-card__icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.service-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 0.6rem;
}

.service-card__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #64748b;
  flex-grow: 1;
}

.home-services-section {
  background: linear-gradient(180deg, #0a1f44 0%, #102f64 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-services-section__heading {
  color: #ffffff;
}

.home-services-section .service-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.home-services-section .service-card:hover {
  border-color: rgba(0, 180, 216, 0.35);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

.home-services-section .service-card__title {
  color: #ffffff;
}

.home-services-section .service-card__desc {
  color: rgba(255, 255, 255, 0.78);
}

/* ====================== */
/* CTA / CONTACT SECTION  */
/* ====================== */

.cta-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.cta-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #0a1f44;
}

.cta-card__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-card__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.cta-card__glow--1 {
  width: 300px;
  height: 300px;
  background: #00b4d8;
  top: -80px;
  right: -60px;
  animation: ctaGlowFloat 6s ease-in-out infinite alternate;
}

.cta-card__glow--2 {
  width: 250px;
  height: 250px;
  background: #0a1f44;
  bottom: -80px;
  left: -60px;
  animation: ctaGlowFloat 8s ease-in-out infinite alternate-reverse;
}

@keyframes ctaGlowFloat {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(20px, -20px);
  }
}

.cta-card__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .cta-card__inner {
    grid-template-columns: 1.2fr 1fr;
  }
}

.cta-card__left {
  padding: 3rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
  .cta-card__left {
    padding: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .cta-card__left {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }
}

/* Tag */
.cta-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00b4d8;
  margin-bottom: 0.8rem;
}

.cta-card__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00b4d8;
  animation: ctaDotPulse 2s ease-in-out infinite;
}

@keyframes ctaDotPulse {

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

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.cta-card__heading {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 2rem;
}

/* Contact Items */
.cta-card__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.cta-contact-item:hover {
  background: rgba(0, 180, 216, 0.08);
  border-color: rgba(0, 180, 216, 0.2);
  transform: translateX(4px);
}

.cta-contact-item--static {
  cursor: default;
}

.cta-contact-item--static:hover {
  transform: none;
}

.cta-contact-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-contact-item:hover .cta-contact-item__icon {
  background: #00b4d8;
  transform: scale(1.08);
}

.cta-contact-item__icon .material-symbols-outlined {
  color: #00b4d8;
  font-size: 20px;
  transition: color 0.3s ease;
}

.cta-contact-item:hover .cta-contact-item__icon .material-symbols-outlined {
  color: #ffffff;
}

.cta-contact-item__info {
  flex: 1;
  min-width: 0;
}

.cta-contact-item__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.2rem;
}

.cta-contact-item__value {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.cta-contact-item__arrow {
  color: rgba(255, 255, 255, 0.2);
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.cta-contact-item:hover .cta-contact-item__arrow {
  color: #00b4d8;
  transform: translateX(4px);
}

/* Right Side - WhatsApp */
.cta-card__right {
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .cta-card__right {
    padding: 3.5rem;
  }
}

.cta-whatsapp {
  text-align: center;
  max-width: 320px;
}

.cta-whatsapp__icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ctaWhatsappPulse 3s ease-in-out infinite;
}

@keyframes ctaWhatsappPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.2);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.cta-whatsapp__icon {
  width: 28px;
  height: 28px;
  fill: #25d366;
}

.cta-whatsapp__title {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.cta-whatsapp__text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.5rem;
}

.cta-whatsapp__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: #25d366;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 0.7rem;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.25);
}

.cta-whatsapp__btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.cta-whatsapp__btn:active {
  transform: translateY(0) scale(0.97);
}

.cta-whatsapp__hours {
  margin-top: 0.8rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.text-label-caps {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 0.875rem;
}

.blueprint-bg,
.blueprint-grid {
  background-image:
    linear-gradient(to right, #e2e8f0 1px, transparent 1px),
    linear-gradient(to bottom, #e2e8f0 1px, transparent 1px);
  background-size: 32px 32px;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
}

.hero-overlay {
  background-color: rgba(10, 31, 68, 0.85);
  backdrop-filter: blur(2px);
}

.hero-bg {
  background-color: #0a1f44;
  position: relative;
}

.hero-pattern {
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 24px 24px;
}

.navbar-header {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(10, 31, 68, 0.06);
  z-index: 9999;
}

.navbar-header.scrolled {
  box-shadow: 0 4px 24px rgba(10, 31, 68, 0.12);
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.6rem;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  background: #0a1f44;
  border-radius: 0.6rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(10, 31, 68, 0.2);
}

.nav-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00b4d8, #0a1f44);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(10, 31, 68, 0.25);
}

.nav-cta-btn:hover::before {
  opacity: 1;
}

.nav-cta-btn:active {
  transform: translateY(0) scale(0.97);
}

.nav-cta-btn span,
.nav-cta-btn {
  position: relative;
  z-index: 1;
}

.mobile-nav-link {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #0a1f44;
  padding: 0.85rem 0.75rem;
  border-radius: 0.6rem;
  transition: background-color 0.2s ease, padding-left 0.3s ease;
}

.mobile-nav-link:hover {
  background: rgba(10, 31, 68, 0.04);
  padding-left: 1.1rem;
}

.breadcrumb-clip {
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.nav-link {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a1f44;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, #0a1f44, #00b4d8);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-link:hover {
  color: #0a1f44;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-dropdown:hover .nav-dropdown-trigger::after {
  width: 100%;
}

.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger {
  color: #0a1f44;
}

.nav-link:focus-visible {
  outline: 2px solid rgba(10, 31, 68, 0.2);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav-link-active {
  color: #0a1f44;
}

.nav-link-active::after {
  width: 100% !important;
  background: linear-gradient(90deg, #0a1f44, #00b4d8);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown-trigger .material-symbols-outlined {
  font-size: 16px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown:hover .nav-dropdown-trigger .material-symbols-outlined,
.nav-dropdown:focus-within .nav-dropdown-trigger .material-symbols-outlined {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  min-width: 300px;
  padding: 0.75rem;
  background: #ffffff;
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: 1rem;
  box-shadow:
    0 20px 60px rgba(10, 31, 68, 0.12),
    0 4px 12px rgba(10, 31, 68, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.25s;
  z-index: 60;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-left: 1px solid rgba(10, 31, 68, 0.08);
  border-top: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: 2px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.7rem 1rem;
  border-radius: 0.6rem;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.3s ease;
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus-visible {
  background: rgba(10, 31, 68, 0.04);
  color: #0a1f44;
  padding-left: 1.3rem;
}

.mobile-subnav-group {
  padding: 0.5rem 0 0.75rem 1.25rem;
  margin-top: 0;
  border-bottom: 1px solid rgba(10, 31, 68, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-subnav-link {
  color: #4c535e;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  padding-left: 12px;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.mobile-subnav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0a1f44;
  opacity: 0.3;
  transition: opacity 0.25s ease, width 0.25s ease, border-radius 0.25s ease;
}

.mobile-subnav-link:hover {
  color: #0a1f44;
  padding-left: 16px;
}

.mobile-subnav-link:hover::before {
  width: 8px;
  border-radius: 4px;
  opacity: 1;
}

.mobile-menu-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  border-bottom-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.mobile-menu-panel.open {
  max-height: 520px;
  opacity: 1;
}

.rounded-lg {
  border-radius: 1rem !important;
}

.rounded-md {
  border-radius: 0.85rem !important;
}

.rounded-xl {
  border-radius: 1.35rem !important;
}

.rounded-DEFAULT {
  border-radius: 1.1rem !important;
}

.site-logo-image {
  height: 68px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* ====================== */
/* FOOTER                 */
/* ====================== */

.site-footer {
  position: relative;
  background: linear-gradient(180deg, #081835 0%, #0a1f44 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3.8rem 0 0;
  overflow: hidden;
}

.site-footer__glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(0, 180, 216, 0.08), transparent 70%);
  pointer-events: none;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

/* Brand */
.site-footer__logo {
  height: 70px;
  width: auto;
  display: block;
  margin-bottom: 1.2rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px;
}

.site-footer__brand-text {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 280px;
}

/* Column Titles - Silver Shimmer */
.site-footer__col-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
  color: #00b4d8;
  background: linear-gradient(90deg, #00b4d8, #5ce1f5, #00b4d8);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: footerShimmer 3s ease-in-out infinite;
}

@keyframes footerShimmer {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

/* Links */
.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.site-footer__links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-left: 0;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.site-footer__links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, #00b4d8, transparent);
  transition: width 0.3s ease;
}

.site-footer__links a:hover {
  color: #ffffff;
  padding-left: 14px;
}

.site-footer__links a:hover::before {
  width: 10px;
}

.site-footer__links--icons a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0;
}

.site-footer__links--icons a::before {
  display: none;
}

.site-footer__links--icons a .material-symbols-outlined {
  font-size: 16px;
  color: #00b4d8;
  transition: transform 0.3s ease;
}

.site-footer__links--icons a:hover {
  padding-left: 0;
}

.site-footer__links--icons a:hover .material-symbols-outlined {
  transform: scale(1.2);
}

/* Bottom Bar */
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.8rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.site-footer__copyright {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__legal {
  display: flex;
  gap: 1.5rem;
}

.site-footer__legal a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer__legal a:hover {
  color: #ffffff;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(18, 140, 126, 0.28);
  z-index: 80;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover {
  background: #128c7e;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 22px 44px rgba(18, 140, 126, 0.32);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(0, 180, 216, 0.35);
  outline-offset: 4px;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@media (min-width: 768px) {
  .site-logo-image {
    height: 82px;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: calc(100svh - 80px);
  }

  .hero__inner {
    padding: 2.5rem 0 2.5rem;
  }

  .hero__overlay {
    background: rgba(10, 31, 68, 0.88);
  }

  .hero__title {
    font-size: clamp(1.1rem, 5vw, 1.6rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .hero__title-line {
    white-space: normal;
  }

  .hero__desc {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__btn {
    width: 100%;
    padding: 0.95rem 1.5rem;
    font-size: 12px;
  }

  .hero__indicators {
    gap: 0.5rem;
  }

  .hero__dot {
    width: 30px;
    height: 30px;
  }

  .about-section {
    padding: 3.5rem 0;
  }

  .about-section__visual {
    padding: 16px 16px 16px 16px;
  }

  .about-section__frame {
    width: 80%;
    height: 75%;
  }

  .about-section__secondary {
    bottom: 50px;
    right: -5px;
    width: 38%;
    max-width: 140px;
  }

  .about-section__stats {
    gap: 0.6rem;
  }

  .about-section__stat {
    padding: 1rem 0.3rem;
  }

  .about-section__stat-number {
    font-size: 1.2rem;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }

  .about-cta__inner {
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
  }
}

/* ====================== */
/* ABOUT PAGE             */
/* ====================== */

/* --- About Hero (Compact) --- */
.about-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: aboutHeroZoom 18s ease-in-out infinite alternate;
}

@keyframes aboutHeroZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.06);
  }
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 31, 68, 0.92) 0%, rgba(10, 31, 68, 0.78) 50%, rgba(10, 31, 68, 0.6) 100%);
}

.about-hero__content {
  position: relative;
  z-index: 10;
  padding: 3.5rem 1rem 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(0, 188, 212, 0.15);
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-radius: 50px;
  color: #00bcd4;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(4px);
  animation: aboutFadeUp 0.6s ease-out both;
}

.about-hero__title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
  animation: aboutFadeUp 0.7s ease-out 0.15s both;
}

.about-hero__subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
  animation: aboutFadeUp 0.8s ease-out 0.3s both;
}

@keyframes aboutFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* --- About Narrative --- */
.about-narrative {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1rem;
}

.about-narrative__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-narrative__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00bcd4;
  margin-bottom: 1rem;
}

.about-narrative__tag-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #00bcd4;
  border-radius: 2px;
}

.about-narrative__heading {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #0a1f44;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-narrative__heading span {
  color: #00bcd4;
}

.about-narrative__body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-narrative__body p {
  font-size: 1rem;
  line-height: 1.75;
  color: #4c535e;
}

.about-narrative__visual {
  position: relative;
  padding: 20px 0 40px 20px;
}

/* Main image */
.about-narrative__image-wrap {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 31, 68, 0.18), 0 8px 24px rgba(10, 31, 68, 0.1);
  animation: aboutImageFloat 8s ease-in-out infinite;
}

@keyframes aboutImageFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.about-narrative__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-narrative__image-wrap:hover .about-narrative__image {
  transform: scale(1.04);
}

/* Secondary smaller image - bottom right overlay */
.about-narrative__secondary {
  position: absolute;
  bottom: 0;
  right: -10px;
  width: 45%;
  max-width: 200px;
  z-index: 3;
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 12px 40px rgba(10, 31, 68, 0.25);
  animation: aboutSecondaryFloat 7s ease-in-out infinite 0.5s;
}

@keyframes aboutSecondaryFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-5px) scale(1.02);
  }
}

.about-narrative__secondary-img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.6) brightness(0.4);
}

/* Philosophy */
.about-philosophy {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(10, 31, 68, 0.06);
}

.about-philosophy__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 0.8rem;
}

.about-philosophy__content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4c535e;
  margin-bottom: 0.8rem;
}

.about-philosophy__highlight {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-left: 1.5rem;
  border-left: 4px solid #00bcd4;
}

.about-philosophy__big {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #0a1f44;
}

.about-philosophy__small {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4c535e;
}

/* --- Core Values Section --- */
.about-values {
  background: linear-gradient(160deg, #0a1f44 0%, #0d2b5e 40%, #102a52 70%, #0a1f44 100%);
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

.about-values::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(0, 188, 212, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 500px 300px at 80% 30%, rgba(0, 188, 212, 0.04) 0%, transparent 70%);
  pointer-events: none;
  animation: aboutValuesGlow 10s ease-in-out infinite alternate;
}

@keyframes aboutValuesGlow {
  0% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

.about-values__inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-values--five .about-values__inner {
  max-width: 1400px;
}

.about-values__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.about-values__tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00bcd4;
  margin-bottom: 0.8rem;
}

.about-values__heading {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.about-values__line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00bcd4, #5ce1f5);
  margin: 0 auto;
  border-radius: 3px;
  animation: aboutLineShimmer 3s ease-in-out infinite;
}

@keyframes aboutLineShimmer {

  0%,
  100% {
    width: 60px;
    opacity: 1;
  }

  50% {
    width: 80px;
    opacity: 0.8;
  }
}

.about-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.about-values--home .about-values__heading {
  text-transform: uppercase;
}

.about-value-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.about-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.05), transparent);
  transition: left 0.7s ease;
}

.about-value-card:hover::before {
  left: 100%;
}

.about-value-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 188, 212, 0.12), 0 0 0 1px rgba(0, 188, 212, 0.2);
  border-color: rgba(0, 188, 212, 0.35);
}

.about-value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-value-card__icon .material-symbols-outlined {
  font-size: 24px;
  color: #00bcd4;
  transition: all 0.4s ease;
}

.about-value-card:hover .about-value-card__icon {
  background: linear-gradient(135deg, #00bcd4, #26c6da);
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(0, 188, 212, 0.3);
}

.about-value-card:hover .about-value-card__icon .material-symbols-outlined {
  color: #0a1f44;
}

.about-value-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.about-value-card__text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

.about-footer-bridge {
  position: relative;
  padding: 2.6rem 1rem 3rem;
  background: linear-gradient(180deg, #0d2b5e 0%, #081835 100%);
  overflow: hidden;
}

.about-footer-bridge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 188, 212, 0.12), transparent 42%);
  pointer-events: none;
}

.about-footer-bridge__line {
  position: relative;
  z-index: 1;
  width: min(140px, 32vw);
  height: 3px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 188, 212, 0.18), #5ce1f5, rgba(0, 188, 212, 0.18));
  box-shadow: 0 0 18px rgba(0, 188, 212, 0.22);
}

/* --- CTA Section --- */
.about-cta {
  background: linear-gradient(135deg, #f0fdff 0%, #e0f7fa 30%, #f5f5f5 70%, #e8f5e9 100%);
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.08) 0%, transparent 70%);
  animation: aboutCtaOrb1 12s ease-in-out infinite;
}

.about-cta::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 31, 68, 0.05) 0%, transparent 70%);
  animation: aboutCtaOrb2 10s ease-in-out infinite 2s;
}

@keyframes aboutCtaOrb1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, 20px) scale(1.1);
  }
}

@keyframes aboutCtaOrb2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-20px, -15px) scale(1.05);
  }
}

.about-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 3.5rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(10, 31, 68, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(10, 31, 68, 0.06);
}

.about-cta__heading {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 1rem;
}

.about-cta__text {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #4c535e;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.about-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 200px;
}

.about-cta__btn--primary {
  background: linear-gradient(135deg, #0a1f44 0%, #0d2b5e 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(10, 31, 68, 0.25);
}

.about-cta__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(10, 31, 68, 0.35);
}

.about-cta__btn--secondary {
  background: transparent;
  color: #0a1f44;
  border: 2px solid #0a1f44;
  box-shadow: none;
}

.about-cta__btn--secondary:hover {
  background: #0a1f44;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(10, 31, 68, 0.2);
}

/* --- Scroll Reveal Animation --- */
.anim-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--delay, 0s);
}

.anim-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====================== */
/* SERVICES PAGE          */
/* ====================== */

/* --- Services Hero --- */
.svc-hero {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.svc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.svc-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: aboutHeroZoom 18s ease-in-out infinite alternate;
}

.svc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 31, 68, 0.92) 0%, rgba(10, 31, 68, 0.8) 50%, rgba(10, 31, 68, 0.65) 100%);
}

.svc-hero__content {
  position: relative;
  z-index: 10;
  padding: 3rem 1rem 3.5rem;
  max-width: 850px;
  margin: 0 auto;
}

.svc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(0, 188, 212, 0.15);
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-radius: 50px;
  color: #00bcd4;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
  animation: aboutFadeUp 0.6s ease-out both;
}

.svc-hero__title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  animation: aboutFadeUp 0.7s ease-out 0.15s both;
}

.svc-hero__subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 2rem;
  animation: aboutFadeUp 0.8s ease-out 0.3s both;
}

.svc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: aboutFadeUp 0.9s ease-out 0.45s both;
}

.svc-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svc-hero__btn--primary {
  background: #00bcd4;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 188, 212, 0.3);
}

.svc-hero__btn--primary:hover {
  background: #fff;
  color: #0a1f44;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.svc-hero__btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.svc-hero__btn--outline:hover {
  background: #fff;
  color: #0a1f44;
  border-color: #fff;
  transform: translateY(-2px);
}

/* --- Value Callouts --- */
.svc-callouts {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 2.5rem 1rem;
}

.svc-callouts__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.svc-callout {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.svc-callout:hover {
  background: #f8fafc;
}

.svc-callout__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: #f0fdff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.svc-callout__icon .material-symbols-outlined {
  font-size: 22px;
  color: #0a1f44;
  transition: color 0.3s ease;
}

.svc-callout:hover .svc-callout__icon {
  background: #00bcd4;
}

.svc-callout:hover .svc-callout__icon .material-symbols-outlined {
  color: #fff;
}

.svc-callout__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 0.15rem;
}

.svc-callout__text {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
}

/* --- Service Blocks --- */
.svc-block {
  padding: 5rem 1rem;
}

.svc-block--light {
  background: #fff;
}

.svc-block--alt {
  background: #f8fafb;
}

.svc-block__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.svc-block__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.svc-block__header--inline {
  margin-bottom: 1.5rem;
}

.svc-block__tag-line {
  display: inline-block;
  width: 4px;
  min-height: 28px;
  background: linear-gradient(180deg, #00bcd4, #0097a7);
  border-radius: 4px;
  margin-top: 4px;
}

.svc-block__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #0a1f44;
  letter-spacing: -0.01em;
}

.svc-block__subtitle {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 0.4rem;
}

.svc-block__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Service images */
.svc-block__image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: none;
}

.svc-block__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 280px;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(10, 31, 68, 0.12);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svc-block__image:hover img {
  transform: scale(1.02);
}

.svc-block__image--stacked {
  overflow: visible;
  box-shadow: none;
  background: none;
  border: none;
  padding: 0;
}

.svc-block__image--framed {
  padding: 0;
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
}

.svc-block__image--framed:hover {
  border: none;
  box-shadow: none;
}

.svc-block__frame {
  display: none;
}

.svc-block__img-main {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  min-height: 280px;
  box-shadow: 0 8px 32px rgba(10, 31, 68, 0.1);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease;
  position: relative;
  z-index: 1;
}

.svc-block__image--framed:hover .svc-block__img-main {
  transform: translate(-6px, -5px) scale(1.005);
  box-shadow: 0 16px 40px rgba(10, 31, 68, 0.16);
}

.svc-block__img-secondary {
  position: relative;
  z-index: 2;
  width: 60%;
  margin-left: auto;
  margin-top: -3rem;
  margin-right: -0.5rem;
  border-radius: 12px;
  border: 4px solid #fff;
  box-shadow: 0 8px 28px rgba(10, 31, 68, 0.15);
  object-fit: cover;
  min-height: 170px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease;
}

.svc-block__image--framed:hover .svc-block__img-secondary {
  transform: translate(8px, 6px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 188, 212, 0.22);
}

/* Service text */
.svc-block__text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.svc-block__text p {
  font-size: 1rem;
  line-height: 1.75;
  color: #4c535e;
}

/* Services list card */
.svc-block__services {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(160deg, #0a1f44 0%, #0d2b5e 42%, #102a52 72%, #0a1f44 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(10, 31, 68, 0.2), 0 6px 18px rgba(0, 188, 212, 0.08);
  position: relative;
  overflow: hidden;
}

.svc-block__services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 520px 300px at 18% 40%, rgba(0, 188, 212, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 420px 260px at 82% 22%, rgba(0, 188, 212, 0.05) 0%, transparent 72%);
  pointer-events: none;
}

.svc-block--alt .svc-block__services {
  background: linear-gradient(160deg, #0a1f44 0%, #0d2b5e 42%, #102a52 72%, #0a1f44 100%);
}

.svc-block__services-title {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}

.svc-block__services-title::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #00bcd4;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
  flex-shrink: 0;
}

.svc-block__services-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-left: 1.4rem;
  position: relative;
  z-index: 1;
}

.svc-block__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  counter-reset: svc-item;
}

.svc-block__list li {
  counter-increment: svc-item;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.3rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.svc-block__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.12), rgba(0, 188, 212, 0.03));
  transition: width 0.4s ease;
}

.svc-block--alt .svc-block__list li {
  background: rgba(255, 255, 255, 0.06);
}

.svc-block__list li:hover {
  transform: translateY(-2px) translateX(2px);
  border-color: rgba(0, 188, 212, 0.38);
  box-shadow: 0 10px 28px rgba(0, 188, 212, 0.16), 0 4px 14px rgba(10, 31, 68, 0.12);
}

.svc-block__list li:hover::before {
  width: 100%;
}

.svc-block__list li .material-symbols-outlined {
  font-size: 20px;
  color: #00bcd4;
  flex-shrink: 0;
  background: rgba(0, 188, 212, 0.14);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.svc-block__list li:hover .material-symbols-outlined {
  background: #00bcd4;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
}

/* Column layout for MEP services */
.svc-block__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.svc-block__column {
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.svc-block__column::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
  border-radius: 0 16px 0 0;
  transition: all 0.4s ease;
}

.svc-block__column:hover {
  box-shadow: 0 14px 36px rgba(0, 188, 212, 0.14), 0 6px 14px rgba(10, 31, 68, 0.12);
  transform: translateY(-4px);
  border-color: rgba(0, 188, 212, 0.34);
}

.svc-block__column:hover::after {
  width: 100px;
  height: 100px;
  opacity: 0.8;
}

.svc-block__column-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, #00bcd4, rgba(0, 188, 212, 0.2)) 1;
}

.svc-block__column-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.svc-block__column-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  padding: 0.4rem 0;
  transition: color 0.3s ease;
}

.svc-block__column-list li:hover {
  color: #ffffff;
}

.svc-block__column-list li .material-symbols-outlined {
  font-size: 16px;
  color: #00bcd4;
  margin-top: 3px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.svc-block__column-list li:hover .material-symbols-outlined {
  transform: scale(1.2);
}

/* --- Services CTA --- */
.svc-cta {
  background: linear-gradient(135deg, #f0fdff 0%, #e0f7fa 30%, #f5f5f5 70%, #e8f5e9 100%);
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.svc-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 3.5rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(10, 31, 68, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(10, 31, 68, 0.06);
}

.svc-cta__heading {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 1rem;
}

.svc-cta__text {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #4c535e;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.svc-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.svc-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 220px;
}

.svc-cta__btn--primary {
  background: linear-gradient(135deg, #0a1f44 0%, #0d2b5e 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(10, 31, 68, 0.25);
}

.svc-cta__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(10, 31, 68, 0.35);
}

.svc-cta__btn--secondary {
  background: #00bcd4;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 188, 212, 0.25);
}

.svc-cta__btn--secondary:hover {
  background: #0097a7;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 188, 212, 0.3);
}

/* --- Services Page Responsive --- */
@media (min-width: 768px) {
  .svc-hero {
    min-height: 280px;
  }

  .svc-hero__content {
    padding: 3.5rem 2rem 4rem;
  }

  .svc-callouts__inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .svc-block {
    padding: 5rem 2rem;
  }

  .svc-block__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
  }

  .svc-block__list {
    grid-template-columns: 1fr 1fr;
  }

  .svc-block__columns {
    grid-template-columns: repeat(3, 1fr);
  }

  .svc-cta {
    padding: 6rem 2rem;
  }

  .svc-cta__buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .svc-hero {
    min-height: 300px;
  }

  .svc-block__list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .svc-block__text p {
    font-size: 1.05rem;
  }
}

@media (max-width: 767px) {
  .svc-block__services {
    padding: 1.5rem;
  }

  .svc-cta__inner {
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
  }

  .svc-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .svc-hero__btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ====================== */
/* CONTACT PAGE           */
/* ====================== */

.contact-hero {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: aboutHeroZoom 18s ease-in-out infinite alternate;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 31, 68, 0.92) 0%, rgba(10, 31, 68, 0.78) 50%, rgba(10, 31, 68, 0.65) 100%);
}

.contact-hero__content {
  position: relative;
  z-index: 10;
  padding: 3rem 1rem 3.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(0, 188, 212, 0.15);
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-radius: 50px;
  color: #00bcd4;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(4px);
  animation: aboutFadeUp 0.6s ease-out both;
}

.contact-hero__title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
  animation: aboutFadeUp 0.7s ease-out 0.15s both;
}

.contact-hero__subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  animation: aboutFadeUp 0.8s ease-out 0.3s both;
}

/* Contact Cards Section */
.contact-cards {
  padding: 4rem 1rem;
  background: #fff;
}

.contact-cards__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.contact-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #f8fafb;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00bcd4, #0097a7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(10, 31, 68, 0.08);
  border-color: rgba(0, 188, 212, 0.2);
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 188, 212, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: all 0.4s ease;
}

.contact-card__icon .material-symbols-outlined {
  font-size: 24px;
  color: #00bcd4;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card__icon {
  background: #00bcd4;
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 188, 212, 0.25);
}

.contact-card:hover .contact-card__icon .material-symbols-outlined {
  color: #fff;
}

.contact-card__icon--whatsapp {
  background: rgba(37, 211, 102, 0.1);
}

.contact-card__icon--whatsapp .material-symbols-outlined {
  color: #25D366;
}

.contact-card:hover .contact-card__icon--whatsapp {
  background: #25D366;
}

.contact-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 0.7rem;
}

.contact-card__text {
  font-size: 0.92rem;
  color: #4c535e;
  line-height: 1.7;
}

.contact-card__link {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0a1f44;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.contact-card__link:hover {
  color: #00bcd4;
}

.contact-card__note {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 0.4rem;
}

.contact-card__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  background: #25D366;
  color: #fff;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.contact-card__wa-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Contact Banner */
.contact-banner {
  background: linear-gradient(160deg, #0a1f44 0%, #0d2b5e 100%);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: 0 16px 48px rgba(10, 31, 68, 0.2);
  position: relative;
}

.contact-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.contact-banner__left {
  padding: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-banner__tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00bcd4;
  margin-bottom: 0.8rem;
}

.contact-banner__heading {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}

.contact-banner__text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.contact-banner__right {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.contact-banner__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-banner__item .material-symbols-outlined {
  font-size: 22px;
  color: #00bcd4;
}

.contact-banner__label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.15rem;
}

.contact-banner__value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

/* Contact Page Responsive */
@media (min-width: 768px) {
  .contact-hero {
    min-height: 280px;
  }

  .contact-hero__content {
    padding: 3.5rem 2rem 4rem;
  }

  .contact-cards {
    padding: 5rem 2rem;
  }

  .contact-cards__grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-banner {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .contact-banner__left {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem;
  }

  .contact-banner__right {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .contact-hero {
    min-height: 300px;
  }

  .contact-cards__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- About Page Responsive --- */
@media (min-width: 768px) {
  .about-hero {
    min-height: 320px;
  }

  .about-hero__content {
    padding: 4rem 2rem 5rem;
  }

  .about-narrative {
    padding: 5rem 2rem;
  }

  .about-narrative__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .about-philosophy {
    grid-template-columns: 2fr 1fr;
    padding: 3rem;
    align-items: center;
  }

  .about-values {
    padding: 6rem 2rem;
  }

  .about-values__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-values--five .about-values__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-values--five .about-values__inner {
    max-width: 1380px;
  }

  .about-cta {
    padding: 6rem 2rem;
  }

  .about-cta__buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .about-hero {
    min-height: 340px;
  }

  .about-values__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-values--home .about-values__grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .about-values--five .about-values__grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .about-values--five .about-values__inner {
    max-width: 1460px;
  }

  .about-narrative__body p {
    font-size: 1.05rem;
  }

  .about-narrative__visual {
    padding: 24px 0 50px 24px;
  }

  .about-narrative__secondary {
    right: -20px;
    max-width: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title-word {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero__tag,
  .hero__desc-wrapper,
  .hero__actions,
  .hero__indicators {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero__tag-line {
    transform: scaleX(1);
    animation: none;
  }

  .hero__slide img {
    animation: none;
  }

  .hero__dot.is-active .hero__dot-ring circle {
    animation: none;
    stroke-dashoffset: 0;
  }

  .about-hero__img {
    animation: none;
  }

  .about-narrative__frame,
  .about-narrative__image-wrap,
  .about-narrative__secondary,
  .about-section__frame,
  .about-section__image-wrap,
  .about-section__secondary {
    animation: none;
  }

  .svc-hero__img {
    animation: none;
  }

  .svc-block__services::before {
    animation: none;
  }

  .anim-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}