:root {
  --color-text: #1d1d1f;
  --color-background: #ffffff;
  --color-surface: rgba(255, 255, 255, 0.75);
  --color-surface-hover: rgba(255, 255, 255, 0.85);
  --color-accent: #111111;
  --color-accent-text: #ffffff;
  --color-border: rgba(0, 0, 0, 0.1);
  --color-muted: #86868b;
  --max-width: 1200px;
  --blur: blur(24px) saturate(190%);
}



* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--color-background) url('https://i.postimg.cc/26MYqW9Y/Screen-Recording2026-08-28101948-ezgif-com-video-to-gif-converter.gif') center center fixed;
  background-size: cover;
  color: var(--color-text);
  margin: 0;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.015em;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 0;
}

/* HEADER & NAVBAR - APPLE 2029 STYLE */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-surface);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.4s ease;
}

.home-page .site-header {
  border-bottom-color: transparent;
}

.site-header~main {
  padding-top: 5rem;
}

.home-page .site-header~main {
  padding-top: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  height: 4rem;
}

.logo img {
  height: 36px;
  filter: contrast(1.2);
}

@media (prefers-color-scheme: dark) {
  .logo img {
    filter: invert(1);
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.nav-list a:hover {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 980px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-accent-text);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-ghost {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-width: 2px;
}

/* HAMBURGER MENU */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 110;
}

.hamburger {
  display: block;
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  margin: 0 auto;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

/* HERO SECTION */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 6rem;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
}

.journey-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

.sri-lanka-art {
  position: absolute;
  right: 5%;
  top: 15%;
  width: 400px;
  height: auto;
  opacity: 0;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  color: #ffffff;
  text-align: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.display {
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  margin: 0 0 1.5rem;
  line-height: 1.05;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.lead {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
  max-width: 650px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}

.hero-ctas .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.hero-ctas .btn-primary {
  background: #ffffff;
  color: #000000;
}

.hero-ctas .btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.scroll-indicator {
  margin-top: 4rem;
  opacity: 0.6;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.4;
    transform: translateY(0);
  }

  50% {
    opacity: 0.8;
    transform: translateY(5px);
  }
}

/* BOOKING FORM & INPUTS (GLASSMORPHISM) */
.booking-form,
.contact-grid>div {
  background: var(--color-surface);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin: 3rem auto;
}

.booking-form {
  max-width: 600px;
}

.booking-form label,
.contact-grid label {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.8;
  letter-spacing: -0.01em;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.contact-grid input,
.contact-grid textarea {
  width: 100%;
  padding: 1.2rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: var(--color-background);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  color: var(--color-text);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.contact-grid input:focus,
.contact-grid textarea:focus {
  outline: none;
  border-color: var(--color-text);
  box-shadow: 0 0 0 2px var(--color-border);
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 3rem;
}

/* SECTIONS AND CARDS */
.trust,
.explore,
.story {
  padding: 8rem 0;
  text-align: center;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.muted {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  opacity: 0.6;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.trust-list li {
  background: var(--color-surface);
  backdrop-filter: var(--blur);
  padding: 1.2rem 2.5rem;
  border-radius: 980px;
  font-weight: 600;
  font-size: 1.05rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.trust-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  text-align: left;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
  padding-bottom: 2rem;
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card h3 {
  margin: 2rem 2rem 0.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0 2rem 2rem;
  opacity: 0.8;
  font-size: 1.05rem;
  line-height: 1.6;
}

.card .btn {
  margin: 0 2rem;
}

.about-page {
  padding: 2rem 0 5rem;
}

.about-hero {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
  margin: 2rem 0 4rem;
}

.about-hero-copy,
.about-hero-card,
.about-mission,
.feature-card,
.value-item,
.stat-card,
.about-cta {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.about-hero-copy {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.75;
  margin-bottom: 1rem;
}

.about-hero-copy h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.about-hero-copy .lead {
  max-width: none;
  margin: 0;
  color: var(--color-text);
  text-shadow: none;
  opacity: 0.88;
}

.about-hero-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-card h3 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.about-hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
  color: var(--color-text);
  opacity: 0.9;
}

.about-hero-card li {
  position: relative;
  padding-left: 1.3rem;
}

.about-hero-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 1.2rem;
}

.about-intro,
.about-values,
.about-features,
.about-cta {
  margin-top: 2rem;
}

.about-intro {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  align-items: stretch;
}

.about-story,
.about-mission {
  padding: 2.2rem;
}

.about-story h2,
.section-heading h2,
.about-cta h2 {
  margin-top: 0;
}

.about-story p,
.value-item p,
.feature-card p {
  font-size: 1.06rem;
  line-height: 1.7;
  opacity: 0.8;
}

.about-mission {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.about-mission h3 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.feature-grid,
.value-grid,
.about-stats {
  display: grid;
  gap: 1.5rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  padding: 2rem;
}

.feature-card .icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  font-weight: 800;
  margin-bottom: 1rem;
}

.feature-card h3,
.value-item strong {
  font-size: 1.4rem;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.value-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.value-item {
  padding: 1.75rem;
}

.about-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.stat-card {
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat-card strong {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  letter-spacing: -0.03em;
}

.stat-card span {
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 700;
}

.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.25rem;
  margin-top: 3rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

@media (max-width: 900px) {
  .about-hero,
  .about-intro,
  .feature-grid,
  .value-grid,
  .about-stats,
  .about-cta {
    grid-template-columns: 1fr;
    display: grid;
  }

  .about-cta {
    justify-content: stretch;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn {
    flex: 1 1 100%;
  }
}

.destination-hero {
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 4rem;
  color: #ffffff;
  border-radius: 40px;
  margin: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.site-footer {
  background: var(--color-surface);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem 2rem;
  margin-bottom: 4rem;
}

.footer-col h4,
.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

.footer-col p {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 0.8rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  text-decoration: none;
  color: var(--color-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--color-text);
}

.site-info {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  color: var(--color-muted);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.whatsapp-float {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 80;
  line-height: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(5deg);
}

.whatsapp-float img {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 12px 24px rgba(37, 211, 102, 0.4));
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* RESPONSIVE DESIGN & HAMBURGER LOGIC */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-surface);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
    z-index: 99;
    margin: 0;
    text-align: center;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-menu.is-open .nav-list li {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.1s;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    margin-bottom: 2rem;
  }

  .nav-list li {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-list a {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  .nav-cta {
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(20px);
  }

  .nav-menu.is-open .nav-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
  }

  .nav-toggle.is-active .hamburger {
    background: transparent;
  }

  .nav-toggle.is-active .hamburger::before {
    transform: translateX(-50%) rotate(45deg);
    top: 0;
    width: 28px;
  }

  .nav-toggle.is-active .hamburger::after {
    transform: translateX(-50%) rotate(-45deg);
    top: 0;
    width: 28px;
  }

  .hero-content {
    padding-top: 0;
    justify-content: center;
  }

  .display {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-list li {
    font-size: 1rem;
    padding: 1rem 1.8rem;
  }

  .card img {
    height: 240px;
  }

  .destination-hero {
    margin: 1rem;
    border-radius: 24px;
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .nav-list a {
    font-size: 1.8rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    padding: 0 1.5rem;
    gap: 1rem;
  }

  .hero-ctas .btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
  }

  .booking-form {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .card h3 {
    font-size: 1.5rem;
  }

  .trust,
  .explore,
  .story {
    padding: 4rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}