:root {
  --navy: #0b2c54;
  --blue: #125aa3;
  --sky: #e7f1ff;
  --yellow: #f4c430;
  --white: #ffffff;
  --dark: #0f1a2b;
  --muted: #5e6b7e;
  --radius: 18px;
  --shadow: 0 20px 45px rgba(15, 26, 43, 0.15);
  --font-primary: "Manrope", sans-serif;
  --font-display: "Playfair Display", serif;
}

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

body {
  font-family: var(--font-primary);
  color: var(--dark);
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 50%, #f7fbff 100%);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

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

ul {
  list-style: none;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(15, 26, 43, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  gap: 22px;
  font-weight: 600;
  color: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  display: block;
}

.main-nav a {
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.cta-call {
  background: var(--blue);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 44, 84, 0.9), rgba(18, 90, 163, 0.65));
}

.hero-content {
  position: relative;
  padding: 90px 0 110px;
  display: grid;
  gap: 18px;
  max-width: 720px;
}

.eyebrow {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--yellow);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.hero-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--sky);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 36px;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--navy);
}

.section-heading p {
  color: var(--muted);
  max-width: 720px;
}

.grid {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery {
  padding-top: 60px;
}

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

.gallery-item {
  background: var(--white);
  padding: 10px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  text-align: center;
  font-weight: 600;
  color: var(--navy);
}

.gallery-item img,
.package-card img,
.luxury-card img {
  height: 210px;
  object-fit: cover;
}

.card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.card .icon {
  font-size: 2rem;
}

.callout {
  margin-top: 26px;
  padding: 18px 22px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
}

.packages-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.package-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto 1fr;
}

.package-body {
  padding: 20px;
  display: grid;
  gap: 12px;
}

.what-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.info-card {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.luxury {
  background: linear-gradient(120deg, #0b2c54, #0f3d75);
  color: var(--white);
}

.luxury .section-heading h2,
.luxury .section-heading p {
  color: var(--white);
}

.luxury-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.luxury-card {
  background: rgba(255, 255, 255, 0.12);
  padding: 16px;
  border-radius: var(--radius);
  text-align: center;
  display: grid;
  gap: 12px;
}

.luxury-card span {
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--yellow);
  color: var(--navy);
}

.btn.secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn.small {
  background: var(--blue);
  color: var(--white);
  padding: 10px 18px;
  width: fit-content;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(15, 26, 43, 0.2);
}

.contact-form {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 16px;
}

input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5dfeb;
  font-family: var(--font-primary);
}

.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.site-footer h3 {
  margin-bottom: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer li {
  margin-bottom: 6px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 84px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0 4px;
    display: none;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

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

@media (max-width: 600px) {
  .hero {
    min-height: 70vh;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 6vw, 2.4rem);
  }

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