:root {
  --navy: #071f4a;
  --navy-2: #0a3478;
  --blue: #0b66d8;
  --blue-2: #1487f2;
  --sky: #e8f6ff;
  --cyan: #71d7ff;
  --ink: #102033;
  --muted: #647286;
  --line: #d8e7f3;
  --white: #ffffff;
  --soft: #f5fbff;
  --shadow: 0 22px 58px rgba(7, 31, 74, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input,
select,
textarea {
  font: inherit;
  max-width: 100%;
  min-width: 0;
}

img {
  max-width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 50%;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 31, 74, 0.96) 0%, rgba(7, 31, 74, 0.82) 43%, rgba(7, 31, 74, 0.36) 72%, rgba(7, 31, 74, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 31, 74, 0.18) 0%, rgba(7, 31, 74, 0.48) 100%);
}

.nav {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(216, 231, 243, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(7, 31, 74, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-symbol {
  width: 104px;
  height: 50px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: #eef7fd;
  box-shadow: none;
}

.brand-symbol img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 4px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
  color: var(--navy);
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  backdrop-filter: none;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--blue);
  background: var(--sky);
}

.nav-links .nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 12px 24px rgba(11, 102, 216, 0.28);
}

.nav-links .nav-cta:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100vh - 178px);
  padding: 34px 0 132px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 410px);
  align-items: center;
  gap: 42px;
}

.hero-copy {
  max-width: 720px;
  min-width: 0;
}

.badge,
.eyebrow,
.panel-kicker {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7.6vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.08rem;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 13px;
  padding: 12px 18px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 32px rgba(11, 102, 216, 0.34);
}

.btn.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

.full {
  width: 100%;
}

.quote-panel,
.booking-form,
.service-card {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.quote-panel {
  display: grid;
  gap: 13px;
  padding: 20px;
  color: var(--ink);
  backdrop-filter: blur(18px);
  min-width: 0;
  max-width: 100%;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
  min-width: 0;
  max-width: 100%;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--white);
  min-width: 0;
  max-width: 100%;
}

textarea {
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 4px solid rgba(20, 135, 242, 0.16);
  border-color: var(--blue-2);
}

.trust-strip {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.trust-strip article {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  color: var(--blue);
  font-size: 1.28rem;
  line-height: 1.1;
}

.trust-strip span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 0;
}

.section-title {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-title.compact {
  max-width: 670px;
}

.section-title.inline {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-title p,
.feature-copy p,
.booking-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.text-link {
  color: var(--blue);
  font-weight: 900;
}

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

.service-card {
  min-height: 190px;
  display: grid;
  align-content: start;
  padding: 20px;
  border-color: var(--line);
  background: linear-gradient(180deg, #ffffff, #f6fcff);
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature {
  width: min(1180px, calc(100% - 32px));
  margin: 82px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.feature-image {
  min-height: 440px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(7, 31, 74, 0.13);
  background: var(--sky);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  display: block;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 13px 15px 13px 42px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  color: var(--ink);
  font-weight: 760;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 18px;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(-45deg);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  padding: 0;
  background: var(--sky);
  box-shadow: 0 16px 38px rgba(7, 31, 74, 0.12);
  cursor: zoom-in;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.booking {
  width: min(1180px, calc(100% - 32px));
  margin: 82px auto 96px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: start;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  box-shadow: var(--shadow);
}

.booking h2,
.booking .eyebrow {
  color: var(--white);
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.phone-card {
  display: grid;
  gap: 4px;
  margin-top: 26px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.1);
}

.phone-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
}

.phone-card strong {
  font-size: 1.45rem;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  padding: 18px;
  border-color: rgba(255, 255, 255, 0.18);
  min-width: 0;
  max-width: 100%;
}

.wide {
  grid-column: 1 / -1;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 8;
  min-height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(7, 31, 74, 0.24);
  font-weight: 950;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(16px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--navy);
}

.footer strong,
.footer span {
  display: block;
}

.footer span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-phone {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  border-radius: 13px;
  padding: 11px 16px;
  background: var(--blue);
  font-weight: 950;
}

.lightbox {
  width: min(980px, calc(100% - 32px));
  border: 0;
  border-radius: 22px;
  padding: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(7, 31, 74, 0.78);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  display: block;
  border-radius: 14px;
  object-fit: contain;
}

.close-lightbox {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  font-size: 1.25rem;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(7, 31, 74, 0.2);
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 18px;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 42px rgba(7, 31, 74, 0.18);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-radius: 12px;
    color: var(--navy);
    background: transparent;
  }

  .nav-links .nav-cta {
    color: var(--white);
    text-align: center;
  }

  .hero-content,
  .feature,
  .booking {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-bottom: 170px;
  }

  .trust-strip,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip article:nth-child(2) {
    border-right: 0;
  }

  .trust-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 640px) {
  .nav {
    width: min(100% - 20px, 1180px);
    margin-top: 10px;
    padding: 8px;
    border-radius: 16px;
  }

  .brand {
    gap: 9px;
  }

  .brand-symbol {
    width: 86px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-photo {
    object-position: 62% 50%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 31, 74, 0.96) 0%, rgba(7, 31, 74, 0.82) 56%, rgba(7, 31, 74, 0.62) 100%);
  }

  .hero-content {
    min-height: auto;
    padding: 24px 0 22px;
    gap: 20px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .quote-panel {
    gap: 11px;
    padding: 16px;
    border-radius: 18px;
  }

  .field-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 11px;
  }

  label {
    gap: 6px;
  }

  input,
  select,
  textarea {
    min-height: 44px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .trust-strip {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100% - 32px, 1180px);
    margin: 0 auto 18px;
    transform: none;
  }

  .service-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

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

  .trust-strip article {
    padding: 13px 14px;
  }

  .trust-strip article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .trust-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .trust-strip article:nth-child(even) {
    border-right: 0;
  }

  .trust-strip article:nth-child(n + 3) {
    border-bottom: 0;
  }

  .trust-strip strong {
    font-size: 1.02rem;
  }

  .trust-strip span {
    font-size: 0.78rem;
  }

  .section {
    padding-top: 58px;
  }

  .section-title.inline {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature {
    margin-top: 58px;
    padding: 20px;
    border-radius: 22px;
  }

  .feature-image,
  .feature-image img {
    min-height: 300px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .booking {
    margin: 58px auto 78px;
    padding: 16px;
    border-radius: 22px;
  }

  .booking-form {
    gap: 11px;
    padding: 16px;
    border-radius: 18px;
  }

  .floating-whatsapp {
    display: inline-flex;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 82px;
  }
}
