:root {
  --blue-950: #06142f;
  --blue-900: #08245c;
  --blue-800: #0b357d;
  --blue-700: #0e54a8;
  --aqua: #17c7df;
  --aqua-soft: #dffaff;
  --orange: #ff8a1f;
  --steel-900: #17202c;
  --steel-700: #405166;
  --steel-500: #718197;
  --steel-200: #dbe4ef;
  --steel-100: #edf4fb;
  --white: #ffffff;
  --black: #05080d;
  --shadow: 0 22px 55px rgba(6, 20, 47, 0.16);
  --shadow-strong: 0 30px 80px rgba(5, 14, 30, 0.32);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--steel-900);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
  position: relative;
}

.section-soft {
  background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(23, 199, 223, 0.22), transparent 34%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-dark .eyebrow {
  color: var(--aqua);
}

.section-title {
  margin: 0 0 14px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-lead {
  color: var(--steel-700);
  max-width: 720px;
  margin: 0 auto 44px;
  font-size: 1.04rem;
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.center {
  text-align: center;
}

.topbar {
  background: #eef5ff;
  color: var(--blue-900);
  font-size: 0.87rem;
  border-bottom: 1px solid var(--steel-200);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219, 228, 239, 0.72);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 40px rgba(6, 20, 47, 0.13);
}

.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 260px;
}

.brand-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.nav-menu a {
  position: relative;
  font-weight: 800;
  color: var(--steel-900);
  font-size: 0.95rem;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  background: linear-gradient(90deg, var(--aqua), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--blue-900);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(8, 36, 92, 0.22);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--blue-900);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

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

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

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

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(6, 20, 47, 0.94) 0%, rgba(8, 36, 92, 0.76) 48%, rgba(23, 199, 223, 0.2) 100%),
    url("https://images.unsplash.com/photo-1607472586893-edb57bdc0e39?auto=format&fit=crop&w=2000&q=82") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 92px 0 130px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--aqua-soft);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 900;
  animation: fadeUp 0.7s ease both;
}

.hero h1 {
  margin: 22px 0 20px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
  animation: fadeUp 0.8s ease both 0.08s;
}

.hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin: 0 0 34px;
  animation: fadeUp 0.8s ease both 0.16s;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp 0.8s ease both 0.24s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ffaf4a);
  box-shadow: 0 16px 34px rgba(255, 138, 31, 0.28);
}

.btn-blue {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--aqua));
  box-shadow: 0 16px 34px rgba(23, 199, 223, 0.22);
}

.btn-white {
  color: var(--blue-950);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(255, 255, 255, 0.18);
}

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.11);
}

.pulse {
  animation: pulseGlow 2.4s ease-in-out infinite;
}

.float-icon {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: var(--aqua);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  animation: float 6s ease-in-out infinite;
}

.float-icon.one {
  right: 12%;
  top: 24%;
}

.float-icon.two {
  right: 26%;
  bottom: 24%;
  animation-delay: 1.2s;
  color: var(--orange);
}

.water-drop {
  position: absolute;
  width: 18px;
  height: 24px;
  border-radius: 50% 50% 55% 55%;
  background: linear-gradient(180deg, rgba(23, 199, 223, 0.85), rgba(255, 255, 255, 0.24));
  transform: rotate(45deg);
  opacity: 0.68;
  animation: dropFloat 8s ease-in-out infinite;
}

.water-drop.d1 {
  left: 7%;
  top: 34%;
}

.water-drop.d2 {
  right: 19%;
  top: 45%;
  animation-delay: 1.7s;
}

.water-drop.d3 {
  left: 47%;
  bottom: 23%;
  animation-delay: 2.8s;
}

.image-strip {
  margin-top: -76px;
  position: relative;
  z-index: 5;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.strip-card,
.service-card,
.choose-card,
.testimonial-card,
.contact-card,
.gallery-item,
.feature-tile {
  border-radius: var(--radius);
  overflow: hidden;
}

.strip-card {
  height: 190px;
  position: relative;
  box-shadow: var(--shadow);
  background: var(--blue-950);
  isolation: isolate;
}

.strip-card img,
.gallery-item img,
.service-card img,
.choose-card img,
.feature-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.strip-card::after,
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 20, 47, 0.84), rgba(6, 20, 47, 0.08));
  z-index: 1;
}

.strip-card h3 {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  margin: 0;
  color: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1rem;
}

.strip-card:hover,
.service-card:hover,
.choose-card:hover,
.contact-card:hover {
  transform: translateY(-8px);
}

.strip-card:hover img,
.gallery-item:hover img,
.service-card:hover img,
.choose-card:hover img {
  transform: scale(1.08);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.image-panel {
  position: relative;
}

.image-panel img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.experience-badge {
  position: absolute;
  right: -22px;
  bottom: 34px;
  width: 168px;
  padding: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--aqua));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.experience-badge strong {
  display: block;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

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

.check-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
}

.check-list i {
  color: var(--aqua);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  padding: 30px 18px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  color: var(--blue-800);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--steel-700);
  font-weight: 800;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover {
  border-color: rgba(23, 199, 223, 0.55);
  box-shadow: 0 30px 70px rgba(23, 199, 223, 0.16);
}

.service-img {
  height: 190px;
  overflow: hidden;
}

.service-body {
  padding: 22px;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-top: -48px;
  margin-bottom: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--aqua));
  border: 4px solid var(--blue-900);
  border-radius: 8px;
  position: relative;
  z-index: 2;
}

.service-card h3 {
  margin: 0 0 8px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.12rem;
}

.service-card p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.mini-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--aqua-soft);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  background: var(--blue-950);
  box-shadow: var(--shadow);
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--white);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  color: var(--blue-950);
  background: var(--aqua);
  border-radius: 8px;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.choose-card {
  background: var(--white);
  border: 1px solid var(--steel-200);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.choose-card figure {
  height: 230px;
  margin: 0;
  overflow: hidden;
}

.choose-body {
  padding: 26px;
}

.choose-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-800);
  border-radius: 8px;
  margin-bottom: 16px;
}

.choose-card h3,
.testimonial-card h3,
.contact-card h3,
.feature-tile h3 {
  margin: 0 0 9px;
  font-family: "Poppins", Arial, sans-serif;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--steel-200);
  box-shadow: var(--shadow);
}

.quote-icon {
  color: var(--aqua);
  font-size: 2rem;
}

.stars {
  color: var(--orange);
  margin: 14px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  min-height: 220px;
  padding: 28px 22px;
  background: var(--white);
  border: 1px solid var(--steel-200);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.contact-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--aqua));
  border-radius: 8px;
  margin-bottom: 18px;
}

.contact-card p {
  margin: 0;
  color: var(--steel-700);
}

.cta-section {
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(6, 20, 47, 0.91), rgba(8, 36, 92, 0.78)),
    url("https://images.unsplash.com/photo-1590959651373-a3db0f38a961?auto=format&fit=crop&w=1800&q=82") center / cover fixed;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 860px;
  margin: 34px auto 0;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 15px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  outline: 0;
}

.booking-form select option {
  color: var(--steel-900);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.booking-form textarea,
.booking-form button {
  grid-column: 1 / -1;
}

.page-hero {
  min-height: 430px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(6, 20, 47, 0.92), rgba(8, 36, 92, 0.67)),
    var(--page-image) center / cover;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1;
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  font-weight: 900;
  color: var(--aqua-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-tile {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  background: var(--blue-950);
  box-shadow: var(--shadow);
}

.feature-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 20, 47, 0.9), rgba(6, 20, 47, 0.12));
}

.feature-tile img {
  position: absolute;
  inset: 0;
}

.feature-tile div {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 26px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  align-items: start;
}

.contact-layout .booking-form input,
.contact-layout .booking-form select,
.contact-layout .booking-form textarea {
  color: var(--steel-900);
  background: var(--white);
  border-color: var(--steel-200);
}

.contact-layout .booking-form input::placeholder,
.contact-layout .booking-form textarea::placeholder {
  color: var(--steel-500);
}

.map-card {
  min-height: 440px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(6, 20, 47, 0.9), rgba(14, 84, 168, 0.76)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1200&q=82") center / cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.footer {
  color: var(--steel-700);
  background: #f5f9ff;
  padding: 72px 0 22px;
  border-top: 1px solid var(--steel-200);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr 1.15fr;
  gap: 36px;
}

.footer h3,
.footer h4 {
  color: var(--blue-950);
  font-family: "Poppins", Arial, sans-serif;
  margin: 0 0 16px;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.footer a:hover {
  color: var(--aqua);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 240px;
  height: auto;
  object-fit: contain;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--blue-900);
  background: #e6eef9;
  border-radius: 8px;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--steel-200);
  text-align: center;
  font-size: 0.9rem;
}

.floating-actions {
  position: fixed;
  z-index: 120;
  left: 18px;
  right: 18px;
  bottom: 18px;
  pointer-events: none;
}

.float-btn {
  pointer-events: auto;
  position: absolute;
  bottom: 0;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.35rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  animation: pulseGlow 2.3s ease-in-out infinite;
}

.float-call {
  left: 0;
  background: linear-gradient(135deg, var(--blue-700), var(--aqua));
}

.float-whatsapp {
  right: 0;
  background: linear-gradient(135deg, #13b05f, #20e081);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(4deg);
  }
}

@keyframes dropFloat {
  0%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(-34px) rotate(45deg);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(23, 199, 223, 0.35), 0 16px 34px rgba(23, 199, 223, 0.18);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(23, 199, 223, 0), 0 20px 44px rgba(23, 199, 223, 0.32);
  }
}

@media (max-width: 1080px) {
  .header-call {
    display: none;
  }

  .strip-grid,
  .services-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    gap: 18px;
  }

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

  .footer-grid,
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .topbar {
    display: none;
  }

  .nav-wrap {
    height: 70px;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    height: calc(100vh - 70px);
    padding: 30px 24px;
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 18px;
    background: rgba(255, 255, 255, 0.97);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
  }

  .menu-open .nav-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    font-size: 1.18rem;
  }

  .hero {
    min-height: 690px;
    background:
      linear-gradient(110deg, rgba(6, 20, 47, 0.94) 0%, rgba(8, 36, 92, 0.82) 62%, rgba(6, 20, 47, 0.42) 100%),
      url("https://images.unsplash.com/photo-1607472586893-edb57bdc0e39?auto=format&fit=crop&w=2000&q=82") center / cover;
  }

  .hero-content {
    padding: 62px 0 120px;
  }

  .float-icon {
    display: none;
  }

  .image-strip {
    margin-top: -56px;
  }

  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .image-panel img {
    height: 430px;
  }

  .experience-badge {
    right: 18px;
  }

  .choose-grid,
  .feature-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-section {
    background-attachment: scroll;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 68px 0;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.15rem);
    line-height: 1.04;
  }

  .hero-kicker {
    max-width: 100%;
    font-size: 0.88rem;
  }

  .btn {
    width: 100%;
  }

  .strip-grid,
  .services-grid,
  .gallery-grid,
  .contact-grid,
  .footer-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .strip-card {
    height: 220px;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }

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

  .gallery-item.tall {
    grid-row: span 1;
  }

  .image-panel img {
    height: 360px;
  }

  .brand-logo {
    width: 150px;
  }

  .footer-logo {
    width: 190px;
  }
}
