:root {
  --navy: #071426;
  --navy-2: #0d213f;
  --blue: #1d5cff;
  --royal: #0b45d9;
  --red: #e02835;
  --silver: #eef2f7;
  --gray: #697386;
  --white: #ffffff;
  --ink: #111827;
  --shadow: 0 24px 70px rgba(7, 20, 38, 0.18);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 20, 38, 0.96);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 20, 38, 0.98);
}

.top-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  color: #d9e4f4;
}

.navbar {
  min-height: 74px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--red));
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(29, 92, 255, 0.35);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
}

.nav-menu a {
  position: relative;
  color: #dce8f8;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--white);
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 11px 18px;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(224, 40, 53, 0.28);
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: all 0.25s ease;
}

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

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

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

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.page-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img,
.page-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 20, 38, 0.96), rgba(7, 20, 38, 0.76), rgba(7, 20, 38, 0.35));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: center;
  gap: 58px;
  padding: 90px 0;
}

.eyebrow {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 10px;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(44px, 6vw, 76px);
  max-width: 780px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 18px;
}

h3 {
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-text {
  max-width: 650px;
  color: #dce6f4;
  font-size: 18px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: var(--radius);
  border: 0;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(224, 40, 53, 0.32);
}

.btn-secondary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(29, 92, 255, 0.26);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

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

.pulse {
  animation: pulse 2.4s infinite;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
  color: #dce6f4;
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: 24px;
}

.hero-card {
  position: relative;
}

.hero-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-img {
  animation: floatImage 4.8s ease-in-out infinite;
}

.booking-chip,
.experience-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -24px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.image-strip {
  background: var(--navy);
  padding: 18px 0;
  overflow: hidden;
}

.strip-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.strip-track figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 180px;
}

.strip-track img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.strip-track figure:hover img,
.gallery-grid img:hover,
.service-detail:hover img {
  transform: scale(1.08);
}

.strip-track figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  color: var(--white);
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section {
  padding: 100px 0;
}

.section-dark {
  background: radial-gradient(circle at top left, rgba(29, 92, 255, 0.24), transparent 28%), var(--navy);
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.image-stack {
  position: relative;
}

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

.experience-badge {
  left: auto;
  right: -20px;
  bottom: 34px;
  width: 210px;
}

.experience-badge strong {
  display: block;
  color: var(--red);
  font-size: 28px;
}

.section-copy p {
  color: var(--gray);
  margin-bottom: 18px;
}

.check-list {
  list-style: none;
  margin: 24px 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(224, 40, 53, 0.12);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

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

.service-card,
.why-card,
.values-grid article,
blockquote,
.contact-panel,
.contact-form {
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(7, 20, 38, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-dark .service-card,
.section-dark .values-grid article {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-card:hover,
.why-card:hover,
.service-detail:hover,
blockquote:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(29, 92, 255, 0.18);
}

.service-card span,
.service-detail span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(224, 40, 53, 0.12);
  color: var(--red);
  font-weight: 800;
  margin-bottom: 16px;
}

.service-card p,
.why-card p,
blockquote,
.values-grid p {
  color: #5e6878;
}

.section-dark .service-card p,
.section-dark .values-grid p {
  color: #d9e4f4;
}

.center-action {
  text-align: center;
  margin-top: 38px;
}

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

.gallery-grid img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.45s ease;
}

.why-section {
  background: linear-gradient(180deg, var(--silver), #ffffff);
}

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

blockquote {
  font-size: 17px;
}

blockquote cite {
  display: block;
  margin-top: 18px;
  color: var(--red);
  font-style: normal;
  font-weight: 800;
}

.cta-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--navy), var(--royal));
  color: var(--white);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.site-footer {
  background: #050d19;
  color: #d9e4f4;
  padding: 70px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.2fr;
  gap: 50px;
}

.site-footer h3 {
  color: var(--white);
}

.site-footer a,
.site-footer p {
  display: block;
  color: #b9c8dd;
  margin-bottom: 10px;
}

.footer-bottom {
  width: min(1160px, calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #9aa8ba;
}

.float-btn {
  position: fixed;
  z-index: 1100;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.25);
  animation: pulse 2.6s infinite;
}

.float-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.float-call {
  left: 22px;
  background: var(--red);
}

.float-whatsapp {
  right: 22px;
  background: #25d366;
}

.page-hero {
  position: relative;
  min-height: 490px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.page-hero-content {
  padding: 80px 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #dce6f4;
  font-size: 18px;
}

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

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

.service-detail {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(7, 20, 38, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-detail div {
  padding: 28px 24px 28px 0;
}

.service-detail h2 {
  font-size: 30px;
}

.service-detail p {
  color: var(--gray);
  margin-bottom: 18px;
}

.service-detail a {
  color: var(--red);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}

.contact-list a,
.contact-list p {
  display: grid;
  gap: 3px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--silver);
}

.contact-list span {
  color: var(--gray);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8dee8;
  border-radius: var(--radius);
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
}

.map-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

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

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

.slide-left {
  transform: translateX(-44px);
}

.slide-right {
  transform: translateX(44px);
}

.zoom-in {
  transform: scale(0.94);
}

.slide-left.show,
.slide-right.show,
.zoom-in.show {
  transform: translateX(0) scale(1);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(224, 40, 53, 0.36);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(224, 40, 53, 0);
  }
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 980px) {
  .top-bar {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    display: grid;
    gap: 0;
    background: var(--white);
    color: var(--navy);
    border-radius: var(--radius);
    padding: 10px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
  }

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

  .nav-menu a {
    color: var(--navy);
    padding: 13px 12px;
  }

  .nav-menu a::after {
    bottom: 5px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    max-width: 560px;
  }

  .strip-track,
  .service-grid,
  .why-grid,
  .gallery-grid,
  .testimonial-grid,
  .values-grid,
  .service-detail-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .navbar {
    min-height: 68px;
  }

  .nav-menu {
    top: 68px;
    left: 14px;
    right: 14px;
  }

  .hero-grid {
    padding: 60px 0 78px;
    gap: 34px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-text,
  .page-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-card img,
  .image-stack img {
    height: 300px;
  }

  .booking-chip,
  .experience-badge {
    position: static;
    width: auto;
    margin-top: -6px;
  }

  .section {
    padding: 70px 0;
  }

  .strip-track,
  .service-grid,
  .why-grid,
  .gallery-grid,
  .testimonial-grid,
  .values-grid,
  .service-detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .strip-track img,
  .gallery-grid img {
    height: 240px;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail img {
    min-height: 220px;
  }

  .service-detail div {
    padding: 0 24px 28px;
  }

  .page-hero {
    min-height: 430px;
  }

  .btn {
    width: 100%;
  }

  .float-btn {
    width: 52px;
    height: 52px;
    bottom: 16px;
  }

  .float-call {
    left: 14px;
  }

  .float-whatsapp {
    right: 14px;
  }
}
