.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at center,
      rgba(255, 255, 255, 0) 30%,
      rgba(0, 51, 84, 0.06) 70%,
      rgba(0, 51, 84, 0.14) 100%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fa 50%, #e8ecf1 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.8s ease;
  box-shadow: inset 0 0 200px 40px rgba(0, 51, 84, 0.07);
}

.splash-screen.splash-hidden {
  opacity: 0;
  pointer-events: none;
}

.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
}

.splash-screen.splash-transitioning .splash-content {
  transform: scale(0.35) translateY(-40vh);
  opacity: 0;
}

.splash-video {
  width: clamp(80px, 16vw, 130px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 30px rgba(0, 51, 84, 0.18)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.splash-text {
  height: clamp(2rem, 6vw, 3.5rem);
  width: auto;
  opacity: 1;
  filter: drop-shadow(0 4px 16px rgba(0, 51, 84, 0.2)) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.12));
}

.splash-under {
  height: clamp(1rem, 3vw, 1.8rem);
  width: auto;
  opacity: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 51, 84, 0.18));
}

@keyframes splash-text-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


:root {
  --color-brand-dark: #003354;
  --color-brand-blue: #00a9e0;
  --color-brand-orange: #f58025;
  --color-text-main: #1e293b;
  --color-text-light: #64748b;
  --color-text-lighter: #94a3b8;
  --color-bg-light: #f8fafc;
  --color-white: #ffffff;
  --color-green: #16a34a;
  --color-green-hover: #15803d;

  --font-main: "Figtree", "Inter", sans-serif;
  --font-heading: "Montserrat", sans-serif;
  --font-nav: "Figtree", sans-serif;

  --container-width: 1280px;
  --header-height: 6rem;
  --header-height-scrolled: 4rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: #003354;
  color: var(--color-text-main);
  overflow-x: hidden;
  line-height: 1.5;
}

body.fonts-loading>*:not(.splash-screen) {
  opacity: 0;
}

body.fonts-loading>.splash-screen {
  opacity: 1;
}

body:not(.fonts-loading)>* {
  transition: opacity 0.3s ease;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

.section-padding {
  padding: 6rem 0;
}

.hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .md-block {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .md-hidden {
    display: none !important;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  color: var(--color-brand-dark);
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease;
}

.glass-nav {
  background: rgba(0, 59, 92, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.glass-nav.scrolled,
.glass-nav.menu-open {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  transition: height 0.3s ease;
}

.nav-container.shrink {
  height: var(--header-height-scrolled);
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.logo-group-pair {
  padding: 0.25rem 0.7rem;
  border-radius: 10rem;
  background-color: white;
}

.logo-ani-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 2.4rem;
  width: 2.4rem;
}

.logo-img {
  height: 2.4rem;
  transition: opacity 0.25s ease;
}

.logo-ani {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.logo-group:hover .logo-img {
  opacity: 0;
}

.logo-group:hover .logo-ani {
  opacity: 1;
}

.logo-text-img {
  height: 2rem;
}

.logo-text-mobile {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
}

@media (max-width: 768px) {
  .logo-ani-wrap {
    height: 1.9rem;
    width: 1.9rem;
  }

  .logo-img {
    height: 1.9rem;
  }

  .logo-text-img {
    height: 1.6rem;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-nav);
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.5rem 0.75rem;
  border: 2px solid transparent;
  border-radius: 9999px;
  transition:
    color 0.3s,
    border-color 0.3s,
    background-color 0.3s;
}

.nav-link:hover {
  color: var(--color-brand-orange);
  border-color: var(--color-brand-orange);
}

.nav-link span {
  display: none;
}

.btn-nav {
  background-color: var(--color-brand-dark);
  font-family: var(--font-heading);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 10px 15px -3px rgba(0, 51, 84, 0.4);
  transition:
    transform 0.3s,
    background-color 0.3s,
    box-shadow 0.3s;
}

.btn-nav:hover {
  background-color: var(--color-brand-orange);
  transform: translateY(-2px);
  box-shadow: 0 15px 20px -3px rgba(245, 128, 37, 0.4);
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: var(--color-brand-dark);
  font-size: 1.7rem;
  font-weight: 900;
  cursor: pointer;
  padding: 0.35rem 0.5rem;
  -webkit-tap-highlight-color: transparent;
}

#mobile-menu {
  background: transparent;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.4s ease;
}

#mobile-menu.active {
  max-height: 500px;
  opacity: 1;
}

#mobile-menu>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
}

.mobile-link {
  display: block;
  font-family: var(--font-nav);
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-brand-dark);
  padding: 0.5rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 9999px;
  transition:
    color 0.3s,
    border-color 0.3s;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.mobile-link:hover {
  color: var(--color-brand-orange);
  border-color: var(--color-brand-orange);
}

.mobile-cta {
  display: block;
  margin-top: 0.25rem;
  padding: 0.6rem 1.5rem;
  background-color: var(--color-brand-dark);
  color: white;
  text-align: center;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 10px 15px -3px rgba(0, 51, 84, 0.4);
  transition:
    transform 0.3s,
    background-color 0.3s,
    box-shadow 0.3s;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.mobile-cta:hover {
  background-color: var(--color-brand-orange);
  transform: translateY(-2px);
  box-shadow: 0 15px 20px -3px rgba(245, 128, 37, 0.4);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  position: relative;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.708), rgb(0 75 129 / 35%)),
    url(../m/PipeLabWallpaper.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #003354;
}

@media (max-width: 768px) {
  .hero-section {
    background-image: none;
    align-items: flex-start;
    padding-top: 9rem;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
  }

  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -20%;
    width: 140%;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.708), rgb(0 75 129 / 35%)),
      url(../m/PipeLabWallpaper.webp);
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
    animation: mobile-hero-pan 20s ease-in-out infinite alternate;
  }

  .hero-label {
    margin-bottom: 0.5rem;
  }

  .hero-title {
    margin-bottom: 1rem;
  }

  .hero-desc {
    margin-top: 3rem;
  }
}

.hero-content {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
  z-index: 10;
  position: relative;
}

.hero-label {
  color: var(--color-brand-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  animation: pulse 2s infinite;
}

@media (min-width: 768px) {
  .hero-label {
    font-size: 1.3rem;
  }
}

.hero-title {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 800;
  filter: drop-shadow(0 0 1.5rem rgba(255, 255, 255, 1)) drop-shadow(0 0 3rem rgba(255, 255, 255, 0.8)) drop-shadow(0 0 5rem rgba(255, 255, 255, 0.5));
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.gradient-text {
  background: linear-gradient(to right, var(--color-brand-blue), #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-pill {
  display: none;
  width: 80vw;
  height: 0.3rem;
  background-color: var(--color-brand-orange);
  border-radius: 9999px;
  margin: 0 auto 1.5rem auto;
}

@media (max-width: 768px) {
  .hero-pill {
    display: block;
  }
}

.hero-divider {
  width: 6rem;
  height: 0.375rem;
  background-color: var(--color-brand-orange);
  border-radius: 9999px;
  margin: 0 auto 2rem auto;
}

.hero-desc {
  font-size: 1.125rem;
  margin-bottom: 3.5rem;
  font-weight: 700;
  max-width: 35rem;
  margin-left: auto;
  margin-right: auto;
  background-color: transparent;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-hero-primary {
  background-color: var(--color-green);
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.4);
  transition:
    transform 0.3s,
    background-color 0.3s;
}

.btn-hero-primary:hover {
  background-color: var(--color-green-hover);
  transform: scale(1.05);
}

.btn-hero-secondary {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}

.btn-hero-secondary:hover {
  background-color: white;
  color: var(--color-brand-dark);
}

.scroll-chevron {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  animation: chevron-bounce 2.5s ease-in-out infinite;
}

.scroll-chevron i {
  font-size: 1.75rem;
  color: #003354;
}

.band-section {
  padding: 1rem 0;
  position: relative;
  z-index: 20;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  background-color: #003354;
  background-image: repeating-linear-gradient(45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.05) 10px,
      rgba(255, 255, 255, 0.05) 20px);
  overflow: hidden;
}

.band-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.band-content::-webkit-scrollbar {
  display: none;
}

.band-dot {
  font-size: 6px;
  color: white;
  opacity: 0.6;
  vertical-align: middle;
}

.band-dot-trail {
  display: none;
}

@media (max-width: 768px) {
  .band-dot-trail {
    display: inline;
  }
}

.band-marquee {
  justify-content: flex-start;
  overflow: visible;
  will-change: transform;
}

.services-section {
  background-color: var(--color-bg-light);
  position: relative;
}

.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.section-label {
  color: var(--color-brand-orange);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  color: var(--color-brand-dark);
  font-weight: 800;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-desc {
  color: var(--color-text-light);
  margin-top: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-card {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .service-card {
    flex: 1 1 calc(50% - 2rem);
    max-width: calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .service-card {
    flex: 0 1 calc(33.333% - 2rem);
    max-width: calc(33.333% - 1.34rem);
  }
}

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  border-color: var(--color-brand-orange);
}

.service-icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.bg-icon-blue {
  background-color: #dbeafe;
  color: #2563eb;
}

.bg-icon-orange {
  background-color: #fee2e2;
  color: #dc2626;
}

.bg-icon-sky {
  background-color: #fef3c7;
  color: #d97706;
}

.bg-icon-slate {
  background-color: #ccfbf1;
  color: #0d9488;
}

.bg-icon-gray {
  background-color: #fce7f3;
  color: #db2777;
}

.service-card:hover .service-icon-wrapper {
  background-color: var(--color-brand-orange) !important;
  color: white !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: rotateY(180deg);
}

.service-card:hover .service-icon-wrapper i {
  transform: rotateY(-180deg);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-brand-dark);
  margin-bottom: 0.75rem;
}

.service-text {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: left;
}

.about-section {
  padding: 4.5rem 0;
  background-color: var(--color-brand-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.1;
  z-index: 1;
}

.blob-1 {
  top: 0;
  right: 0;
  background-color: var(--color-brand-blue);
  transform: translate(50%, -50%);
}

.blob-2 {
  bottom: 0;
  left: 0;
  background-color: #22d3ee;
  transform: translate(-50%, 50%);
}

.about-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .about-container {
    flex-direction: row;
    align-items: center;
  }

  .about-content {
    width: 60%;
  }

  .about-cta {
    width: 40%;
  }
}

.about-text {
  color: #cbd5e1;
  font-size: 1.125rem;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--color-brand-orange);
  margin-top: 0.25rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: #94a3b8;
}

.whatsapp-box {
  background: linear-gradient(to bottom right, #1e293b, #0f172a);
  border: 1px solid #334155;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
}

.whatsapp-icon-float {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 4rem;
  height: 4rem;
  background-color: var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  animation: pulse 2s infinite;
}

.btn-whatsapp-full {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-green);
  color: white;
  font-weight: 700;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: background-color 0.3s;
  margin-top: 2rem;
}

.btn-whatsapp-full:hover {
  background-color: var(--color-green-hover);
}

.contact-info-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .contact-info-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-info-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-info-card {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background-color: var(--color-bg-light);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  row-gap: 0;
  align-items: center;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  border-color: var(--color-brand-orange);
}

.contact-info-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background-color: var(--color-brand-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  grid-row: 1;
  grid-column: 2;
}

.contact-info-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-brand-dark);
  margin-bottom: 0;
  grid-row: 1;
  grid-column: 1;
  text-align: left;
}

.contact-info-text {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
  grid-row: 2;
  grid-column: 1 / -1;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  text-align: left;
}

.contact-link {
  font-size: 1rem;
  font-weight: 700;
}

.contact-link:hover {
  color: var(--color-brand-orange);
}

.contact-bottom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (max-width: 1023px) {
  .contact-bottom-grid .map-container {
    order: 2;
  }

  .contact-bottom-grid .form-card {
    order: 1;
  }
}

@media (min-width: 1024px) {
  .contact-bottom-grid {
    grid-template-columns: 2fr 3fr;
  }
}

.form-card {
  background-color: var(--color-bg-light);
  border: 1px solid #f1f5f9;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-col-2 {
    grid-column: span 2;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background-color: white;
  outline: none;
  transition: all 0.3s;
  font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background-color: white;
  border-color: var(--color-brand-blue);
  box-shadow: 0 0 0 2px rgba(0, 169, 224, 0.2);
}

.btn-submit {
  width: 100%;
  background-color: var(--color-brand-dark);
  color: white;
  font-weight: 700;
  padding: 1rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 59, 92, 0.2);
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: #1e293b;
}

.map-container {
  height: 100%;
  min-height: 20rem;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative;
}

.map-iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  transition: filter 0.7s;
}

.map-container:hover .map-iframe,
.map-container.active .map-iframe {
  filter: none;
}

.map-container:hover .map-iframe,
.map-container.active .map-iframe {
  filter: none;
}

@media (max-width: 1024px) {
  .map-container:not(.active) {
    filter: grayscale(100%);
  }

  .map-container:not(.active) .map-iframe {
    pointer-events: none;
    filter: none;
  }
}

.footer {
  background-color: var(--color-brand-dark);
  color: white;
  padding: 1.5rem 0;
  border-top: 1px solid #1e293b;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}

.footer-divider {
  color: #64748b;
  margin: 0 0.5rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: #94a3b8;
  margin: 0;
  white-space: nowrap;
}

.mobile-br {
  display: none;
}

@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-brand {
    width: 100%;
    justify-content: space-between;
  }

  .footer-divider {
    display: none;
  }

  .footer-social {
    justify-content: center;
  }

  .mobile-br {
    display: inline;
  }

  .footer-copyright {
    text-align: right;
    white-space: normal;
  }
}

.footer-social {
  display: flex;
  gap: 1.25rem;
}

.footer-social a {
  color: #94a3b8;
  font-size: 1.25rem;
  transition:
    transform 0.2s,
    color 0.2s;
}

.footer-social a:hover {
  transform: scale(1.1);
  color: var(--color-brand-orange);
}

.back-to-top {
  position: fixed;
  bottom: 1.45rem;
  right: 1.45rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-brand-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s, bottom 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top.raised {
  bottom: 1.45rem;
}

@media (min-width: 769px) {
  .back-to-top.raised {
    bottom: 1.45rem;
  }
}

.back-to-top:hover {
  background-color: #f2710f;
  transform: translateY(-4px);
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes chevron-bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

[data-aos="zoom-out"] {
  opacity: 0;
  transform: scale(1.1);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.aos-animate {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

.btn-slide {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: -1;
  transform: skewX(-15deg);
}

.btn-slide:hover::before {
  left: 100%;
  transition: left 0.5s ease;
}

@media (min-width: 769px) {

  .wa-avatar,
  .wa-speech {
    display: none !important;
  }
}

.wa-bubble {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transform-origin: calc(100% - 2.5rem) 50%;
  transform: translateY(20px) scale(0.85);
  transition:
    opacity 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    bottom 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.wa-bubble.wa-bubble--raised {
  bottom: 5.75rem;
}

.wa-bubble.wa-bubble--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.wa-bubble-inner {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  text-decoration: none;
}

.wa-speech {
  background: #ffffff;
  border: none;
  border-radius: 1.1rem 1.1rem 0.2rem 1.1rem;
  padding: 0.65rem 1.1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-brand-dark);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(12px) scale(0.92);
  transition:
    opacity 0.4s ease 0.55s,
    transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1) 0.55s;
  pointer-events: none;
}

.wa-bubble.wa-bubble--visible .wa-speech.wa-speech--show {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.wa-avatar {
  position: relative;
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-sizing: content-box;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.12);
  overflow: visible;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  background-color: #ffffff;
}

.wa-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: none;
  display: block;
}

.wa-bubble-inner:hover .wa-avatar {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25), 0 3px 10px rgba(0, 0, 0, 0.14);
}

.wa-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.85rem;
  height: 0.85rem;
  background-color: #ef4444;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.5);
  z-index: 2;
  animation: wa-dot-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes wa-dot-ping {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}


@keyframes mobile-hero-pan {
  0% {
    transform: translateX(-14.3%);
  }

  100% {
    transform: translateX(14.3%);
  }
}

.partners-section {
  background-color: var(--color-bg-light);
  padding: 3rem 0 3.5rem;
  border-top: 1px solid rgba(0, 51, 84, 0.08);
}

.partners-header {
  text-align: center;
  margin-bottom: 2rem;
}

.partners-title {
  font-size: 1.5rem;
  color: var(--color-brand-dark);
  font-weight: 800;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}

.partner-card {
  background: #ffffff;
  border: 1px solid rgba(0, 51, 84, 0.08);
  border-radius: 1rem;
  padding: 1.1rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 51, 84, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  flex: 0 0 auto;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 51, 84, 0.13);
}

.partner-img {
  height: 3rem;
  width: auto;
  max-width: 9rem;
  object-fit: contain;
  display: block;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.partner-card:hover .partner-img {
  filter: grayscale(0%);
}

@media (max-width: 480px) {
  .partners-grid {
    gap: 0.85rem;
  }

  .partner-card {
    padding: 0.9rem 1.2rem;
  }

  .partner-img {
    height: 2.4rem;
    max-width: 7rem;
  }
}