@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #050607;
  --panel: #0d1115;
  --panel-2: #111820;
  --text: #ffffff;
  --muted: #a9b3bd;
  --accent: #13d7ff;
  --accent-2: #35ffd2;
  --accent-soft: rgba(19, 215, 255, 0.16);
  --border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(19, 215, 255, 0.16), transparent 34rem),
    radial-gradient(circle at 85% 10%, rgba(40, 255, 200, 0.09), transparent 30rem),
    linear-gradient(180deg, #050607 0%, #071014 45%, #050607 100%);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* TOP BAR */

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 70;
  background: #050607;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: white;
  font-size: 0.86rem;
  transition: transform 0.3s ease;
}

.top-bar.hide {
  transform: translateY(-100%);
}

.top-bar-inner {
  padding: 9px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.top-bar a {
  color: rgba(255,255,255,0.82);
  font-weight: 700;
  transition: 0.25s ease;
}

.top-bar a:hover {
  color: var(--accent);
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* HEADER */

.header {
  position: fixed;
  top: 32px;
  left: 0;
  width: 100%;
  z-index: 60;
  padding: 18px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 6, 7, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: 0.3s ease;
}

.header.scrolled {
  top: 0;
  padding: 12px 6%;
  background: rgba(5, 6, 7, 0.96);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-wrap img {
  height: 48px;
  width: auto;
}

.logo-wrap span {
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: white;
}

.cta {
  color: #001014 !important;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 34px rgba(19, 215, 255, 0.26);
}

/* HAMBURGER */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 27px;
  height: 3px;
  background: white;
  border-radius: 999px;
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* HERO */

.hero {
  min-height: 100vh;
  padding: 185px 6% 90px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  position: relative;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.94), rgba(5, 6, 7, 0.5), rgba(5, 6, 7, 0.86)),
    url("images/hero.jpeg") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: heroIntro 1.1s ease both;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(19, 215, 255, 0.35);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
  font-weight: 900;
}

.hero p {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  padding: 15px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 900;
  transition: 0.25s ease;
}

.btn.primary {
  color: #001014;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 42px rgba(19, 215, 255, 0.26);
}

.btn.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
}

.btn:hover {
  transform: translateY(-3px);
}

/* SECTIONS */

.section {
  padding: 105px 6%;
  position: relative;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.why-content h2,
.contact-content h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.section-heading p,
.why-content p,
.contact-content p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

/* CARDS */

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)),
    var(--panel);
  border: 1px solid var(--border);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transition: 0.35s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 20% 10%, rgba(19, 215, 255, 0.28), transparent 18rem),
    linear-gradient(135deg, rgba(255,255,255,0.08), transparent);
  opacity: 0;
  transition: 0.35s ease;
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(19, 215, 255, 0.42);
  box-shadow: 0 34px 95px rgba(19, 215, 255, 0.14);
}

.card:hover::before {
  opacity: 1;
}

.card-tag,
.card h3,
.card p {
  position: relative;
  z-index: 2;
}

.card-tag {
  display: inline-flex;
  color: var(--accent);
  font-weight: 900;
  margin-bottom: 42px;
}

.card h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* WHY */

.why-section {
  padding: 105px 6%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(180deg, transparent, rgba(19, 215, 255, 0.045), transparent);
}

.why-content {
  max-width: 720px;
}

.why-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.why-list div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.055);
  border: 1px solid var(--border);
}

.why-list strong {
  display: block;
  margin-bottom: 6px;
}

.why-list span {
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.stat {
  padding: 34px;
  border-radius: 30px;
  background: rgba(19, 215, 255, 0.08);
  border: 1px solid rgba(19, 215, 255, 0.18);
}

.stat strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.07em;
}

.stat span {
  color: var(--muted);
}

/* GALLERY */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  min-height: 300px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel-2);
  transition: 0.35s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  border-color: rgba(19, 215, 255, 0.42);
  box-shadow: 0 30px 80px rgba(19, 215, 255, 0.13);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* REVIEWS */

.reviews {
  background:
    radial-gradient(circle at center, rgba(19, 215, 255, 0.08), transparent 38rem);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)),
    var(--panel);
  border: 1px solid var(--border);
  transition: 0.35s ease;
}

.review-card:hover {
  transform: translateY(-10px);
  border-color: rgba(19, 215, 255, 0.38);
}

.stars {
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.review-card p {
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
}

.review-card h4 {
  margin-bottom: 0;
  color: var(--muted);
}

.review-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* CONTACT */

.contact-section {
  padding: 110px 6%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(19, 215, 255, 0.14), rgba(53, 255, 210, 0.08)),
    #071013;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-details a {
  color: white;
  font-weight: 800;
}

.contact-details a:hover {
  color: var(--accent);
}

.booking-placeholder {
  min-height: 545px;
  padding: 18px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.14);
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,0.25);
}

.booking-placeholder iframe {
  display: block;
  width: 100%;
  min-height: 545px;
  border-radius: 24px;
}

.booking-placeholder h3 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.booking-placeholder p {
  color: var(--muted);
}

/* FOOTER */

.footer {
  padding: 45px 6%;
  background: #030405;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 22px;
  color: var(--muted);
}

.footer strong {
  color: white;
}

.footer a {
  transition: 0.25s ease;
}

.footer a:hover {
  color: white;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
}

.copyright {
  margin: 0;
  font-size: 0.9rem;
}

/* REVEAL ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(45px);
  filter: blur(8px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.cards .card:nth-child(2),
.review-grid .review-card:nth-child(2),
.gallery-grid .gallery-item:nth-child(2) {
  transition-delay: 0.12s;
}

.cards .card:nth-child(3),
.review-grid .review-card:nth-child(3),
.gallery-grid .gallery-item:nth-child(3) {
  transition-delay: 0.22s;
}

.cards .card:nth-child(4) {
  transition-delay: 0.32s;
}

.services-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

@keyframes heroIntro {
  from {
    opacity: 0;
    transform: translateY(35px) scale(0.98);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* MOBILE */

@media (max-width: 1000px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .top-bar {
    font-size: 0.75rem;
  }

  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 5%;
    gap: 6px;
  }

  .top-socials {
    gap: 12px;
    flex-wrap: wrap;
  }

  .header {
    top: 50px;
    padding: 14px 5%;
  }

  .header.scrolled {
    top: 0;
  }

  .logo-wrap img {
    height: 42px;
  }

  .logo-wrap span {
    font-size: 0.95rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: flex !important;
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    height: 100vh;
    background: rgba(5, 6, 7, 0.96);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 110px 30px;
    gap: 24px;
    transition: right 0.35s ease;
    border-left: 1px solid rgba(255,255,255,0.12);
    z-index: 1000;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.15rem;
  }

  .hero {
    min-height: 94vh;
    padding: 180px 5% 70px;
  }

  .header.scrolled + .hero {
    padding-top: 130px;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .section,
  .why-section,
  .contact-section {
    padding: 80px 5%;
  }
}

@media (max-width: 650px) {
  .cards,
  .gallery-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    min-height: 240px;
  }

  .booking-placeholder {
    min-height: 330px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }
}