
:root {
  --primary:#0f766e;
  --secondary:#134e4a;
  --accent:#f0fdfa;
  --text:#333;

  /* Premium Gold */
  --gold:#d4af37;
}

* { box-sizing:border-box; }
body {
  margin:0;
  font-family: 'Inter', system-ui, sans-serif;
  line-height:1.75;
  color:var(--text);
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.015em;
  color: var(--gold);
}


/* Header */
header {
  height: 90vh;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.65)
    ),
    url("./image/House_of_Amelia_Nyali (18).webp") center/cover no-repeat;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
  padding:40px 20px;
  position:relative;
  overflow:hidden;
  min-height: 90vh;
  background-size: cover;
  background-position: center;
}

header h1 {
  font-size: clamp(2.5rem, 3vw, 3rem);
  max-width: 900px;
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
h2{
  text-align: center;
}

header p {
  font-size: 1.15rem;
  max-width: 680px;
  opacity: 0.92;
}

.footer-col h4 {
  margin-bottom: 15px;
  color: #99f6e4;
  font-size: 16px;
}

.footer-col p {
  font-size: 14px;
  opacity: 0.9;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
}

.footer-col a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* LUXURY HERO LIGHT EFFECT */
header::before{
  content:"";
  position:absolute;
  inset:0;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.15),
    rgba(255,255,255,0.05)
  );

  animation: luxuryLight 8s linear infinite;

  pointer-events:none;
}

@media (max-width: 768px) {
  header {
    background-size: cover !important;
    background-position: center center !important;
    min-height: 80svh; /* or 90svh if you prefer */
  }
}

/* animation */
@keyframes luxuryLight{
  0%{
    transform:translateX(-100%);
  }
  100%{
    transform:translateX(100%);
  }
}

/* ===== AVAILABILITY (POSH STYLE) ===== */
.availability-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  background: linear-gradient(180deg, #f0fdfa, #ffffff);
}

.availability-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  max-width: 520px;
  width: 100%;
  padding: 45px 35px;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
  text-align: center;
}

.availability-card h2 {
  margin-bottom: 6px;
  font-size: 32px;
  color: var(--primary);
}

.subtitle {
  font-size: 15px;
  opacity: 0.75;
  margin-bottom: 35px;
}

.availability-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-group {
  flex: 1;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  opacity: 0.8;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  outline: none;
  background: #fff;
  transition: border 0.25s, box-shadow 0.25s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15,118,110,0.15);
}

.lux-btn {
  margin-top: 10px;
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 14px 35px rgba(15,118,110,0.4);
}

.lux-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(15,118,110,0.55);
}

.availability-result {
  margin-top: 28px;
  font-weight: 600;
  font-size: 15px;
}

.availability-result a {
  display: inline-block;
  margin-top: 15px;
  text-decoration: none;
}

/* Mobile */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  };
  .hero{
    min-height: 70vh;
    background-position: center;
}
}

.hero-btn { 
  margin-top:40px; 
  background:linear-gradient(135deg,#14b8a6,#0f766e); 
  color:#fff; 
  padding:18px 44px; 
  border-radius:50px; 
  font-weight:600; 
  text-decoration:none; 
  box-shadow:
  0 20px 50px rgba(0,0,0,0.25),
  0 0 0 1px rgba(255,255,255,0.1) inset;
  font-size: 16px;
  letter-spacing: 0.04em;
 }

/* Sections */
section { padding:80px 20px; max-width:1100px; margin:auto; }
.soft-bg { background:linear-gradient(180deg,var(--accent),#fff); border-radius:30px; margin:50px auto; }
h2 { color:var(--primary); }
.features { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:20px; }
.feature-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.04);
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,.06);
  font-size: 15px;
}


.gallery-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:18px; }
.gallery-item {
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 30px 70px rgba(0,0,0,.12);
}

.gallery-item img {
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform .6s ease, filter .6s ease;
  filter:
  contrast(1.18)
  saturate(1.22)
  brightness(1.04);

}

.gallery-item:hover img {
  transform: scale(1.035);
  filter:
    contrast(1.28)
    saturate(1.35)
    brightness(1.08);
}

.gallery-item {
  position: relative;
}

.gallery-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: linear-gradient(
    to top,
    rgba(255,255,255,56%),
    rgba(255,253,253,9%)
  );
  backdrop-filter: blur(2px);
  padding: 14px 18px;
  border-radius: 14px;
  color: var(--gold);
  width: calc(100% - 36px);
}

.gallery-label .space {
  display: block;
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.gallery-label .property {
  font-size: 12px;
  opacity: 0.85;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.gallery-item:nth-child(3n) {
  height: 380px;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      rgba(0,0,0,0) 40%,
      rgba(0,0,0,0.35) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.15),
      rgba(0,0,0,0.45)
    );
  pointer-events: none;
  transition: opacity .6s ease;
}

.gallery-item:hover::after {
  opacity: 0.55;
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.18),
    rgba(255,255,255,0) 45%
  );
  opacity: 0.25;
  pointer-events: none;
}


@media (max-width: 768px) {
  .gallery-item {
    height: 240px;
  }
}

.amenities ul { list-style:none; padding:0; columns:2; }
.amenities li::before { content:"✓ "; color:var(--primary); font-weight:bold; }

.faq { list-style:none; padding:0; }
.faq li {
  background: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  padding: 32px;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
}


.cta { background:var(--accent); text-align:center; padding:90px 20px; border-radius:30px; }
.cta a { display:inline-block; margin-top:25px; background:var(--primary); color:#fff; padding:18px 45px; border-radius:50px; font-size:20px; text-decoration:none; }

footer { background:var(--secondary); color:#fff; text-align:center; padding:40px; font-size:14px; }
.site-footer {
  background: linear-gradient(180deg, #0f766e, #083f3b);
  color: #ffffff;
  padding: 80px 20px 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
}

.footer-brand h4,
.footer-links h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #99f6e4;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 420px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-badges span {
  background: rgba(255,255,255,0.12);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  opacity: 0.95;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(3px);
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-size: 13px;
  opacity: 0.75;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-badges {
    justify-content: center;
  }
}



/* new styling for availabilty */
/* ===== ULTRA LUXURY BOOKING ===== */
.ultra-booking {
  padding: 120px 20px;
  background:
    radial-gradient(circle at top, rgba(15,118,110,0.08), transparent 60%),
    linear-gradient(180deg, #f9fafb, #ffffff);
}

.ultra-shell {
  max-width: 640px;
  margin: auto;
  padding: 60px 55px;
  border-radius: 36px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  box-shadow:
    0 40px 120px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.ultra-header {
  text-align: center;
  margin-bottom: 45px;
}

.ultra-eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.85;
}

.ultra-header h2 {
  font-size: 42px;
  margin: 10px 0;
  color: var(--gold);
}

.ultra-header p {
  font-size: 16px;
  opacity: 0.75;
}

.ultra-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.ultra-dates {
  display: flex;
  gap: 18px;
}

.ultra-field {
  flex: 1;
}

.ultra-field label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  opacity: 0.65;
}

.ultra-field input,
.ultra-field select {
  width: 100%;
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  background: #fff;
  outline: none;
  transition: all .3s ease;
}

.ultra-field input:focus,
.ultra-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15,118,110,0.12);
}

.ultra-btn {
  margin-top: 20px;
  padding: 20px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  color: white;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 25px 60px rgba(15,118,110,0.45);
}

.ultra-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 35px 90px rgba(15,118,110,0.6);
}

.ultra-result {
  margin-top: 35px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}

/* Mobile polish */
@media (max-width: 600px) {
  .ultra-shell {
    padding: 45px 28px;
  }

  .ultra-header h2 {
    font-size: 30px;
  }

  .ultra-dates {
    flex-direction: column;
  }
}

.gold-text {
  background: linear-gradient(135deg,#f6e27a,#d4af37,#b8962e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* LIGHTBOX WITH GALLERY */
#lightbox {
  display: flex;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.8);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

#lightbox.active { opacity:1; visibility: visible; }

.lightbox-content {
  position: relative;
  max-width:900px;
  width:100%;
  padding:16px;
  border-radius:16px;
  background:#000;
  box-shadow:0 30px 70px rgba(0,0,0,0.6);
  transform: scale(0.85);
  transition: transform 0.35s ease;
}

#lightbox.active .lightbox-content { transform: scale(1); }

#lightbox img { width:100%; max-height:65vh; object-fit:contain; border-radius:12px; display:block; }

.lightbox-close {
  position: absolute; top:-14px; right:-14px;
  width:42px; height:42px; border-radius:50%; border:none;
  background:#fff; color:#000; font-size:26px; font-weight:bold;
  cursor:pointer; box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

/* Arrows */
.lightbox-arrow {
  position: absolute; top:50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border:none; border-radius:50%;
  width:44px; height:44px;
  font-size:28px; font-weight:bold;
  cursor:pointer; display:flex;
  align-items:center; justify-content:center;
  transition: background 0.2s;
}

.lightbox-arrow:hover { background: rgba(255,255,255,0.9); }

.arrow-left { left:-60px; }
.arrow-right { right:-60px; }

#lightbox-caption {
  margin-top: 12px;
  text-align: center;
  color: #e5e7eb;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.9;
}

/* Responsive */
@media(max-width:600px){
  header h1{font-size:2rem}
  .amenities ul{columns:1}
  .lightbox-content { padding:12px; }
  #lightbox img { max-height:55vh; }
  .arrow-left { left:10px; }
  .arrow-right { right:10px; }
}

/* ===== MOBILE HERO SPACING FIX (SAFE & POLISHED) ===== */
@media (max-width: 768px) {
  header {
    height: auto;
    min-height: 100svh; /* fixes mobile viewport bug */
    padding-top: calc(env(safe-area-inset-top, 0px) + 110px);
    padding-bottom: 60px;
  }

  header h1 {
    margin-top: 0;
    font-size: clamp(1.9rem, 5.5vw, 2.2rem);
    line-height: 1.2;
  }

  header p {
    font-size: 1rem;
  }

  .hero-buttons {
    margin-top: 28px;
  }
}
/* ===== WHATSAPP HERO CTA ===== */
.whatsapp-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(18,140,126,0.45);
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(18,140,126,0.6);
}
@media (max-width: 768px) {
  .whatsapp-hero {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    font-size: 16px;
  }
}
.international-guest-section {
  padding: 70px 20px;
  background: #ffffff;
  text-align: center;
}

.international-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 45px;
  background: linear-gradient(135deg,#f8e7a0,#d4af37,#b8962e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.international-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.international-card {
  background: #f9fafb;
  border-radius: 18px;
  padding: 30px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.international-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.international-card .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 15px;
}

.international-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}



.back-home-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.back-home-btn:hover {
  background: #ffffff;
  color: var(--primary);
  text-decoration: none;
  transform: translateY(-2px);
}

/* Responsive */
@media(max-width:600px){
  header h1{font-size:2rem}
  .amenities ul{columns:1}
  .lightbox-content { padding:12px; }
  #lightbox img { max-height:55vh; }
  .arrow-left { left:10px; }
  .arrow-right { right:10px; }
}
  .hero-whatsap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
  padding: 20px 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow:
    0 22px 55px rgba(15,118,110,0.45),
    inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.hero-whatsap:hover {
  transform: translateY(-3px);
  box-shadow:
    0 34px 85px rgba(15,118,110,0.6),
    inset 0 1px 0 rgba(255,255,255,0.35);
  filter: brightness(1.05);
}

.hero-whatsap:active {
  transform: translateY(-1px);
  box-shadow:
    0 18px 40px rgba(15,118,110,0.4);
}

.hero-whatsap span {
  font-size: 20px;
}


/* ===== PREMIUM PRICING SECTION ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 34px;
  margin-top: 40px;
}

.pricing-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
  border-radius: 32px;
  padding: 46px 38px;
  box-shadow:
    0 40px 90px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right,
      rgba(15,118,110,0.12),
      transparent 55%);
  pointer-events: none;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 55px 120px rgba(0,0,0,0.16);
}

.pricing-card h3 {
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--secondary);
}

.price {
  font-size: 38px;
  font-weight: 600;
  color: var(--primary);
  margin: 18px 0 26px;
  letter-spacing: -0.02em;
}

.price span {
  font-size: 15px;
  font-weight: 500;
  opacity: 0.7;
}

/* Feature list */
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
}

.pricing-card li {
  margin-bottom: 12px;
  font-size: 15px;
  padding-left: 26px;
  position: relative;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* CTA button */
.price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  color: #fff;
  padding: 16px 40px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow:
  0 20px 50px rgba(0,0,0,0.25),
  0 0 0 1px rgba(255,255,255,0.1) inset;
  transition: transform .3s ease, box-shadow .3s ease;
}

.price-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 65px rgba(15,118,110,0.6);
}

/* Highlight primary offer */
.pricing-card.featured {
  border: 2px solid rgba(15,118,110,0.25);
  transition: transform .35s ease, box-shadow .35s ease;
}

.featured:hover,
.pricing-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.15);
}

.pricing-card.featured::after {
  content: "Most Popular";
  position: absolute;
  top: 22px;
  right: -48px;
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  color: #fff;
  padding: 8px 58px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Mobile polish */
@media (max-width: 600px) {
  .pricing-card {
    padding: 38px 28px;
  }

  .price {
    font-size: 32px;
  }
}

/* Pricing Card Check Availability Button */
.pricing-card .price-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 14px 35px rgba(15,118,110,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card .price-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(15,118,110,0.55);
}


@media (max-width: 600px) {
  .pricing-card .price-cta {
    width: 100%;
    padding: 16px 0;
  }
}

/* ===== TOP NAV ===== */
.top-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
}

/* Desktop links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #14b8a6;
  transition: width 0.25s ease;
}

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

/* ===== HAMBURGER ===== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

/* ===== MOBILE MENU ===== */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
}

.mobile-nav a {
  padding: 18px;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a:hover {
  background: rgba(20,184,166,0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-nav.show {
    display: flex;
  }
}
.nav-links a.active {
  color: #14b8a6;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.nav-logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .nav-logo img {
    height: 30px;
  }
}

header {
  animation: heroZoom 28s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { background-size: 100%; }
  to { background-size: 108%; }
}

.nav-logo span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
}

.top-nav {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.feature-card {
  transition: transform .35s ease, box-shadow .35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.features .feature-card {
  font-style: italic;
}

.features .feature-card strong {
  display: block;
  margin-top: 12px;
  font-style: normal;
  opacity: 0.85;
}

.section-divider{
  width:80px;
  height:3px;
  margin:20px auto 40px;
  background:linear-gradient(90deg,#f8e7a0,#d4af37,#b8962e);
  border-radius:10px;
}


/*  locations */
.location-section {
  text-align: center;
  padding: 80px 20px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 15px;
  margin: 35px auto;
  max-width: 900px;
}

.location-grid div {
  background: #f9fafb;
  padding: 18px;
  border-radius: 14px;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.map-container {
  max-width: 900px;
  margin: 40px auto 0;
}

.why-stay{
padding:80px 20px;
text-align:center;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

.why-card{
background:#ffffff;
padding:25px;
border-radius:16px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
transition:transform .3s;
}

.why-card:hover{
transform:translateY(-6px);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1f1f1f;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 99999; /* Increase z-index to be above other mobile elements */
  transition: all 0.3s ease;
  display: inline-flex; /* Ensure it shows */
  align-items: center;
}

.whatsapp-float:hover {
  background: #c8a97e;
  color: #1f1f1f;
  transform: translateY(-2px);
}

/* Ensure visibility on mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    font-size: 14px;
    padding: 12px 18px;
  }
}