@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --navy: #000;
  --navy-deep: #081f30;
  --navy-mid: #0e4a6d;
  --blue-accent: #0682D9;
  --blue-light: #2a85f0;
  --light-bg: #E6F2F8;
  --pale-blue: #cfebff;
  --white: #ffffff;
  --text-muted: #4C5D69;
  --text-dark: #1a2e3d;
  --gold: #c9a84c;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Merriweather", serif;
  font-weight: 600;
}

body .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ─── ANNOUNCEMENT BAR ─── */
.announce-bar {
  background: var(--pale-blue);
  color: #000;
  font-size: 18px;
  font-weight: 300;
  padding: 1rem;
  letter-spacing: 0.01em;
  text-align: center;
}

.announce-bar a {
  color: var(--blue-accent);
  font-weight: 400;
  text-decoration: none;
}

.announce-bar a:hover {
  text-decoration: underline;
}

/* ─── NAVBAR ─── */
.site-header {
  position: relative;
}

.navbar {
  position: absolute;
  background: transparent;
  width: 100%;
  z-index: 1045;
  box-shadow: 0 2px 20px rgba(12, 59, 90, 0.06);
  color: var(--white);
  top: clamp(24px, 4vw, 37px);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-links-wrapper {
  width: 100%;
  justify-content: space-between;
  max-width: 660px;
  padding-left: 1.5rem;
}

.logo-img {
  width: 100%;
  height: auto;
  max-width: 350px;
  object-fit: contain;
}


/* Hamburger toggler */
.navbar-toggler {
  border: none;
  padding: 6px;
  outline: none;
  filter: invert(1);
  box-shadow: none !important;
}

.toggler-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.toggler-icon span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.toggler-icon span:nth-child(2) {
  width: 70%;
}

/* Desktop nav links */
.navbar .nav-link {
  font-size: 18px;
  transition: color 0.2s;
  position: relative;
  transition: transform .1s ease-in-out;
}

.navbar .nav-link::before,
.navbar .nav-link::after {
  content: "";
  position: absolute;
  background-color: #fff;
  transition: transform .5s;
}

/* LINK 1 CODE STARTS HERE */
.navbar .nav-link::after {
  left: 0;
  width: 100%;
  height: 1px;
  bottom: -2px;
  transform: scaleX(0);
  transform-origin: left;
}

.navbar .nav-link:hover::after {
  transform: scaleX(1);
}


.btn-book {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  transition: all 0.25s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.btn-book:hover {
  background: var(--blue-accent);
  border-color: var(--blue-accent);
  color: var(--white);
}

/* ─── OFFCANVAS PANEL ─── */
.offcanvas {
  max-width: 300px;
  border-right: none !important;
}

.offcanvas-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(12, 59, 90, 0.08);
}

.offcanvas-body {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offcanvas-nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid rgba(12, 59, 90, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}

.offcanvas-nav-link:hover {
  color: var(--blue-accent);
}

.offcanvas-nav-link::after {
  content: "›";
  font-size: 1.2rem;
  color: var(--text-muted);
}

.offcanvas-cta {
  margin-top: 28px;
}

.btn-book-offcanvas {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 50px;
  padding: 13px 24px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-book-offcanvas:hover {
  background: var(--navy-mid);
  color: var(--white);
}

.offcanvas-footer {
  margin-top: auto;
  padding-top: 32px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.offcanvas-backdrop.show {
  opacity: 0.35;
}

/* ─── HERO ─── */
.hero {
  background: url(../images/hero-bg.webp) no-repeat center center/cover;
  position: relative;
  overflow: hidden;
  padding: 180px 0 40px;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}


.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 55px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero p.lead {
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  max-width: 580px;
  margin: 25px 0;
}

.btn-primary-cta {
  background: var(--blue-accent);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 13px 30px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-cta:hover {
  background: var(--blue-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(28, 110, 213, 0.4);
}

.btn-ghost-cta {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  /* text-decoration: none; */
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.btn-ghost-cta:hover {
  color: var(--white);
}

/* .btn-ghost-cta::after {
  content: "→";
  transition: transform 0.2s;
}

.btn-ghost-cta:hover::after {
  transform: translateX(3px);
} */

.hero-testimonial {
  margin-top: 44px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stars {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.testimonial-quote {
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 6px;
}

.testimonial-name {
  font-size: 18px;
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-img-card img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* ─── STATS SECTION ─── */
.stats-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.stats-heading {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--navy);
  line-height: 1.3;
}

.stat-block {
  margin-bottom: 28px;
}

.stat-block:last-child {
  margin-bottom: 0;
}

.stat-num {
  font-size: clamp(2.5rem, 5vw, 3.8rem);

  color: #000;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-divider {
  width: 1px;
  background: rgba(12, 59, 90, 0.15);
  margin: 0 40px;
  align-self: stretch;
}

.stat-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 450px;
}

/* ─── SUBSCRIBE SECTION ─── */
.subscribe-section {
  background: linear-gradient(180deg, #002C43 0%, #0B4968 100%);

  padding: 80px 0;
}

.subscribe-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  line-height: 1.35;
  max-width: 440px;
  margin-bottom: 0;
  font-weight: 400;
}

.subscribe-form .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  color: var(--white);
  padding: 12px 4px;
  font-size: 0.88rem;
  outline: none;
  box-shadow: none;
}

.subscribe-form .form-control::placeholder {
  color: #ffffff;
  font-family: "Merriweather", serif;
}

.subscribe-form .form-control:focus {
  background: transparent;
  border-bottom-color: var(--blue-light);
  color: var(--white);
  box-shadow: none;
}

.btn-subscribe {
  background: var(--white);
  color: var(--navy);
  border: none;

  padding: 12px 36px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
  margin-top: 20px;
}

.btn-subscribe:hover {
  background: var(--pale-blue);
  transform: translateY(-1px);
}

/* ─── LONGEVITY SECTION ─── */
.longevity-section {
  padding: 90px 0;
  background: var(--white);
}

.rounded-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  max-width: 470px;
  padding: 24px;
}

.longevity-img-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(145deg, #c8d8e8 0%, #a8c4d8 40%, #7aaec4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.longevity-img-placeholder::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 260px;
  background: linear-gradient(180deg, #1a1a2a 0%, #2a3a4a 30%, #3a5a7a 100%);
  border-radius: 90px 90px 0 0;
}

.longevity-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #000;
  line-height: 1.3;
  margin-bottom: 20px;
}

.longevity-section p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── DIFFERENTIATORS ─── */
.diff-section {
  padding: 90px 0;
}

.diff-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #000;
  text-align: center;
  margin-bottom: 56px;
}

.diff-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(12, 59, 90, 0.1);
}

.diff-icon {
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.diff-icon svg {
  width: auto;
  height: auto;

}

.diff-card h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.diff-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(180deg, #002B48 0%, #0C4C77 100%);

  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%,
      rgba(28, 110, 213, 0.15) 0%,
      transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 40px;
  position: relative;
}

.btn-cta-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  border-radius: 50px;
  padding: 13px 30px;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}

.btn-cta-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* ─── FOOTER ─── */
footer {
  background: var(--white);
  border-top: 1px solid rgba(12, 59, 90, 0.1);
  padding: 24px 0;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 24px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--navy);
}

/* ─── UTILITIES ─── */
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--blue-accent);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .hero {
    padding: 150px 0 50px;
  }

  .logo-img {

    max-width: 200px;
  }

  .hero-image-wrap {
    margin-top: 48px;
  }

  .stat-divider {
    display: none;
  }

  .footer-links {
    margin-top: 12px;
  }

  .footer-links a {
    margin-left: 0;
    margin-right: 20px;
  }
}

@media (max-width: 767px) {
  .diff-card {
    margin-bottom: 20px;
  }
.diff-section{
  padding: 16px 0;
}
  .announce-bar {
    font-size: 16px;
  }

  .stats-heading {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .subscribe-heading {
    margin-bottom: 36px;
  }

  .btn-primary-cta,
  .btn-cta-outline {
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
  }

  .hero-btn-group {
    flex-direction: column;
  }
}

/* Smooth fade-in animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.7s ease forwards;
}

.fade-up-delay-1 {
  animation-delay: 0.15s;
  opacity: 0;
}

.fade-up-delay-2 {
  animation-delay: 0.3s;
  opacity: 0;
}

.fade-up-delay-3 {
  animation-delay: 0.45s;
  opacity: 0;
}