:root {
  --white: #FFFFFF;
  --off-white: #F4F7F9;
  --blue: #0066A6;
  --navy: #003B64;
  --cyan: #3AAAE1;
  --text: #4A4A4A;
  --light-container: #E1E6EB;
  --shadow: 0 22px 60px rgba(0, 59, 100, 0.14);
  --shadow-soft: 0 12px 34px rgba(0, 59, 100, 0.10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1140px, calc(100% - 36px));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea, select {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 59, 100, 0.10);
  box-shadow: 0 12px 32px rgba(0, 59, 100, 0.06);
}

.nav {
  width: var(--container);
  min-height: 86px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  padding: 4px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 59, 100, 0.08);
}

.brand__copy {
  display: grid;
  line-height: 1.2;
}

.brand__copy strong {
  color: var(--navy);
  font-size: 0.95rem;
  letter-spacing: 0.055em;
}

.brand__copy small {
  color: var(--blue);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__links a {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 10px 13px;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav__links a:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}

.nav__links .nav__cta {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 102, 166, 0.24);
}

.nav__links .nav__cta:hover {
  background: var(--navy);
  color: var(--white);
}

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--off-white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav__toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  padding: 90px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(58, 170, 225, 0.18), transparent 32%),
    radial-gradient(circle at 93% 20%, rgba(0, 102, 166, 0.14), transparent 35%),
    linear-gradient(135deg, #FFFFFF 0%, #F4F7F9 100%);
}

.hero__decor {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero__decor--one {
  width: 310px;
  height: 310px;
  border: 38px solid rgba(58, 170, 225, 0.11);
  right: -90px;
  top: 110px;
}

.hero__decor--two {
  width: 190px;
  height: 190px;
  border: 28px solid rgba(0, 102, 166, 0.08);
  left: -70px;
  bottom: 36px;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 99px;
  background: var(--cyan);
}

.eyebrow--light {
  color: #CFEFFF;
}

.hero h1,
.section__heading h2,
.benefits h2,
.location h2,
.contact h2 {
  color: var(--navy);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(2.55rem, 7vw, 5.65rem);
  text-transform: uppercase;
}

.hero__lead {
  margin-top: 18px;
  color: var(--blue);
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero__text {
  max-width: 640px;
  margin-top: 16px;
  color: var(--text);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero__highlight {
  margin-top: 20px;
  color: var(--navy);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 900;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 34px rgba(0, 102, 166, 0.24);
}

.btn--primary:hover {
  box-shadow: 0 18px 40px rgba(0, 102, 166, 0.32);
}

.btn--secondary {
  color: var(--blue);
  background: var(--white);
  border-color: rgba(0, 102, 166, 0.18);
  box-shadow: 0 10px 26px rgba(0, 59, 100, 0.08);
}

.btn--dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(0, 59, 100, 0.22);
}

.btn--full {
  width: 100%;
}

.hero__panel {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.hero__logo-card {
  width: min(100%, 480px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 32px;
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 102, 166, 0.12);
}

.hero__logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__mini-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 18px;
  color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 102, 166, 0.12);
  font-weight: 900;
}

.hero__mini-card--left {
  left: 0;
  bottom: 72px;
}

.hero__mini-card--right {
  right: 0;
  top: 82px;
}

.section {
  padding: 96px 0;
}

.section--soft {
  background: linear-gradient(180deg, var(--off-white), #FFFFFF);
}

.section__heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section__heading--left {
  margin-inline: 0;
  text-align: left;
}

.section__heading h2,
.benefits h2,
.location h2,
.contact h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.section__heading p:not(.eyebrow),
.location p,
.contact p {
  margin-top: 14px;
  font-size: 1.08rem;
}

.intro__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 36px;
  align-items: center;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-xl);
  background: var(--light-container);
}

.feature-card {
  min-height: 160px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 102, 166, 0.10);
  box-shadow: 0 12px 26px rgba(0, 59, 100, 0.06);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.feature-card h3 {
  color: var(--navy);
  line-height: 1.2;
  font-size: 1.12rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 160px;
  padding: 26px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(0, 102, 166, 0.10);
  box-shadow: var(--shadow-soft);
}

.service-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -48px;
  bottom: -54px;
  border-radius: 999px;
  background: rgba(58, 170, 225, 0.14);
}

.service-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--off-white);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 22px;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.2;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery__item {
  overflow: hidden;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 102, 166, 0.10);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
  background: var(--white);
}

.gallery__item--featured {
  grid-column: 1 / -1;
  padding: 24px;
}

.gallery__item--featured img {
  max-height: 480px;
  margin-inline: auto;
}

.benefits__box {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 94% 0%, rgba(58, 170, 225, 0.25), transparent 36%),
    linear-gradient(135deg, var(--off-white), #FFFFFF);
  border: 1px solid rgba(0, 102, 166, 0.12);
  box-shadow: var(--shadow-soft);
}

.benefits__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.benefits__list span {
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 12px 26px rgba(0, 59, 100, 0.08);
  font-weight: 900;
}

.schedule__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
}

.hours-card {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 102, 166, 0.12);
}

.hours-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--light-container);
}

.hours-card__row:first-child {
  padding-top: 0;
}

.hours-card__row:nth-child(2) {
  margin-bottom: 24px;
}

.hours-card__row strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.hours-card__row span {
  color: var(--blue);
  font-weight: 900;
  text-align: right;
}

.location__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius-xl);
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(0, 102, 166, 0.08), rgba(58, 170, 225, 0.15)),
    var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 102, 166, 0.12);
}

.contact {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(58, 170, 225, 0.28), transparent 34%),
    linear-gradient(135deg, var(--navy), #052A45);
}

.contact h2,
.contact p {
  color: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 38px;
  align-items: center;
}

.contact__cards {
  display: grid;
  gap: 15px;
}

.contact-card {
  display: grid;
  gap: 4px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
}

.contact-card strong {
  color: #CFEFFF;
  font-size: 1.05rem;
}

.contact-card span {
  color: var(--white);
  word-break: break-word;
}

.footer {
  padding: 34px 0;
  color: var(--white);
  background: #002C4A;
}

.footer__grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.footer__logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  padding: 6px;
  border-radius: 20px;
  background: var(--white);
}

.footer strong {
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.08em;
}

.footer p {
  color: rgba(255, 255, 255, 0.80);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer__links a {
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25D366;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: var(--white);
}

@media (max-width: 980px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 96px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 102, 166, 0.12);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    text-align: center;
  }

  .hero__grid,
  .intro__grid,
  .benefits__box,
  .schedule__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 72px 0;
  }

  .hero__panel {
    min-height: auto;
  }

  .hero__mini-card {
    position: static;
    justify-self: center;
    margin-top: 12px;
  }

  .services__grid,
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location__card {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__logo {
    margin-inline: auto;
  }

  .footer__links {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1140px);
  }

  .nav {
    min-height: 76px;
  }

  .brand__logo {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .brand__copy strong {
    font-size: 0.78rem;
  }

  .brand__copy small {
    font-size: 0.68rem;
  }

  .nav__links {
    top: 86px;
    left: 14px;
    right: 14px;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding: 58px 0 70px;
  }

  .hero__grid {
    gap: 38px;
  }

  .hero__logo-card {
    padding: 20px;
    border-radius: 32px;
  }

  .hero__actions,
  .features,
  .services__grid,
  .gallery,
  .benefits__list {
    grid-template-columns: 1fr;
  }

  .hero__actions,
  .features,
  .benefits__list {
    display: grid;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .feature-card {
    min-height: auto;
  }

  .service-card {
    min-height: 138px;
  }

  .gallery__item img {
    min-height: 240px;
  }

  .hours-card__row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hours-card__row span {
    text-align: left;
  }

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