@charset "utf-8";
/* CSS Document */

 :root {
    --navy: #1a2f4e;
    --ocean: #2176ae;
    --sky: #57b8e6;
    --sand: #f5edd6;
    --foam: #e8f4fb;
    --gold: #c9a84c;
    --white: #ffffff;
    --dark: #111820;
    --text: #2d3a4a;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Raleway', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ── TOPBAR ── */
  #topbar {
    background: var(--navy);
    color: #a8c4df;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 7px 0;
    text-align: center;
    letter-spacing: 0.04em;
  }
  #topbar a { color: var(--sky); text-decoration: none; }
  #topbar a:hover { text-decoration: underline; }
  .topbar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    padding: 0 20px;
  }
  .topbar-inner span { display: flex; align-items: center; gap: 6px; }

  /* ── NAV ── */
  nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(26, 47, 78, 0.97);
    backdrop-filter: blur(8px);
    transition: background 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  }
  nav.scrolled { background: rgba(17, 24, 32, 0.98); }
  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 150px;
  }
  
.logo{
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img{
    max-height: 75px;
    width: auto;
    display: block;
    object-fit: contain;
}

  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo img { width: 124px; height: 130px; object-fit: contain; /*border-radius: 50%;*/ border: 2px solid rgba(87,184,230,0.4); }
  .nav-logo-text { line-height: 1.1; }
  .nav-logo-text .hotel-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--white);
    letter-spacing: 0.02em;
  }
  .nav-logo-text .hotel-loc { font-size: 0.7rem; color: var(--sky); letter-spacing: 0.07em; text-transform: uppercase; }
  
  .nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
  .nav-links a {
    color: #c8d8e8;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 4px;
    transition: color 0.3s, background 0.3s;
    position: relative; /* REQUIRED FOR LINE EFFECT */
  }

  /* Single Line Hover / Active Effect */
  .nav-links a:not(.nav-book)::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px; /* Skip the padding part */
    right: 14px; /* Skip the padding part */
    height: 2px;
    background-color: #e8bf6a; /* Active Line Color */
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
  }
  
  .nav-links a:hover:not(.nav-book), 
  .nav-links a.active:not(.nav-book) { 
    color: var(--white); 
    background: transparent; 
  }

  .nav-links a:hover:not(.nav-book)::after, 
  .nav-links a.active:not(.nav-book)::after { 
    transform: scaleX(1); 
  }

  .nav-book {
    background: linear-gradient(135deg, var(--gold), #e8bf6a);
    color: var(--navy) !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    padding: 9px 20px !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 2px 10px rgba(201,168,76,0.35);
  }
  .nav-book:hover { transform: translateY(-1px); box-shadow: 0 5px 18px rgba(201,168,76,0.45) !important; background: rgba(87,184,230,0.18) !important; color: var(--white) !important; }

  /* Hamburger */
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--navy);
    padding: 10px 24px 20px;
    border-top: 1px solid rgba(87,184,230,0.2);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: #c8d8e8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.2s;
  }
  /* Updated specific for Active menu matching */
  .mobile-menu a:hover,
  .mobile-menu a.active { color: #e8bf6a; }


/* ── SLIDESHOW / HERO CONTAINER (Fixed for Mobile/Tablet) ── */
.slideshow-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 550px;
  overflow: hidden;
  background: var(--navy);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 1.2s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  animation: zoomEffect 12s linear infinite;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17,24,32,0.3) 0%,
    rgba(17,24,32,0.55) 60%,
    rgba(17,24,32,0.85) 100%
  );
  z-index: 2;
}

@keyframes zoomEffect {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}


/* ── BACKGROUNDS CSS ART ── */
.slide-1 { background: linear-gradient(160deg, #1a4a72 0%, #2176ae 40%, #57b8e6 70%, #a3d9f5 100%); }
.slide-2 { background: linear-gradient(160deg, #0d3050 0%, #1a6090 40%, #3a9ed0 70%, #87cef5 100%); }
.slide-3 { background: linear-gradient(160deg, #2a1f3e 0%, #1a4060 40%, #2a8ab0 70%, #6ab8e0 100%); }
.slide-4 { background: linear-gradient(160deg, #0a2040 0%, #1a5580 40%, #50a0c8 70%, #a0d4ef 100%); }
.slide-5 { background: linear-gradient(160deg, #12304e 0%, #2266a0 40%, #4498c8 70%, #82c8ec 100%); }

/* ── DECORATIVE ELEMENTS ── */
.slide-wave {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 120px;
  z-index: 2;
  opacity: 0.5;
}

.slide-bubbles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  animation: floatUp 8s infinite ease-in-out;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0; }
  25% { opacity: 0.15; }
  75% { opacity: 0.15; }
  100% { transform: translateY(-40px) scale(1.1); opacity: 0; }
}


/* ── HERO CONTENT & SLIDE CAPTION (Fixed Absolute Positioning) ── */
.slide-caption, .hero-content {
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  text-align: center;
  color: var(--white);
  z-index: 4; 
}

.slide-caption { animation: slideCaptionFadeUp 1.2s ease 0.2s both; }
.hero-content  { animation: heroContentFadeIn  1.2s ease 0.3s both; }

@keyframes slideCaptionFadeUp {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 40px)); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

@keyframes heroContentFadeIn {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 30px)); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}


/* ── CONTENT INNER ELEMENTS ── */
.caption-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 13px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  background: rgba(201, 168, 76, 0.25);
  border: 1px solid rgba(201, 168, 76, 0.55);
  color: #f0d580;
  font-size: 0.72rem;
  font-weight: 700;
}

.slide-caption h2, .hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.slide-caption h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.15;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.08;
}

.hero-title span { color: var(--sky); }

.slide-caption p, .hero-sub {
  color: #ccdde8;
  font-weight: 300;
  line-height: 1.6;
}

.slide-caption p { font-size: 17px; }
.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  margin-bottom: 25px;
  letter-spacing: 0.03em;
}

/* ── BUTTONS & CTA ── */
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap; 
}

.btn-primary, .btn-outline {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), #e0bf5a);
  color: var(--navy);
  border: none;
  box-shadow: 0 4px 18px rgba(201,168,76,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(201,168,76,0.5);
}

.btn-outline {
  padding: 13px 30px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  border-color: var(--sky);
  color: var(--sky);
}


/* ── SLIDER CONTROLS ── */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s ease;
}

.slide-arrow:hover { 
  background: rgba(87, 184, 230, 0.35); 
  border-color: var(--sky); 
}
.slide-arrow.prev { left: 18px; }
.slide-arrow.next { right: 18px; }

.slide-dots {
  position: absolute;
  bottom: 30px; 
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active { 
  background: var(--gold); 
  transform: scale(1.3); 
}

/* ── QUICK INFO STRIP ── */
.info-strip { background: var(--navy); padding: 0; }
.info-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.info-item {
  padding: 22px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s;
}
.info-item:last-child { border-right: none; }
.info-item:hover { background: rgba(87,184,230,0.1); }
.info-icon { font-size: 1.5rem; margin-bottom: 4px; }
.info-label { font-size: 0.7rem; color: var(--sky); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 3px; }
.info-value { font-size: 0.82rem; color: #d0dfe8; font-weight: 400; }



/* ================= RESPONSIVE QUERIES FOR SLIDER / HERO ================= */

@media (max-width: 990px) {
  /* Info-strip split in tablet layout safely */
  .info-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .info-item:nth-child(2) { border-right: none; }
  .info-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .info-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 768px) {
  .slideshow-wrap { min-height: 500px; }
  .slide-arrow { width: 40px; height: 40px; font-size: 18px; }
  .slide-arrow.prev { left: 10px; }
  .slide-arrow.next { right: 10px; }
  .hero-cta { flex-direction: column; width: 100%; max-width: 250px; margin: 0 auto; gap: 10px;}
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .slide-caption p, .hero-sub { font-size: 14px; margin-bottom: 20px;}
  
  .slide-caption, .hero-content { width: 92%; top: 48%; }
}

@media (max-width: 520px) {
  .slideshow-wrap { min-height: 500px; height: 1vh; } 
  .hero-badge, .caption-tag { font-size: 0.68rem; padding: 5px 14px; margin-bottom: 12px; }
  
  .info-strip-inner { grid-template-columns: 1fr; }
  .info-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .info-item:last-child { border-bottom: none; }
  
  .slide-dots { bottom: 20px; gap: 8px; }
  .dot { width: 8px; height: 8px; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 1.8rem; }
  .slide-caption h2 { font-size: 24px; line-height: 1.1; margin-bottom: 10px; }
  .slide-caption p { font-size: 12px; }
  .slide-arrow { width: 34px; height: 34px; font-size: 15px; }
}




/* ============================================================== */
/* ── TUMHARA ORIGINAL SECTION COMMONS (BINA KISI CHED CHAD KE) ── */
/* ============================================================== */

/* ── SECTION COMMONS ── */
section { overflow: hidden; }
.section-tag {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-line {
  width: 52px; height: 3px;
  background: linear-gradient(to right, var(--ocean), var(--sky));
  border-radius: 3px;
  margin: 0 auto 18px;
}
.section-line.left { margin: 0 0 18px; }
.section-desc { 
  color: #556070; 
  font-size: 1rem; 
  line-height: 1.75; 
  max-width: 600px; 
  margin-top: 10px;
}

  /* ── WELCOME ── */
  #welcome { background: var(--sand); padding: 90px 20px; }
  .welcome-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
  }
  .welcome-text { animation: slideLeft 0.8s ease both; }
  @keyframes slideLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  .welcome-img-block { position: relative; animation: slideRight 0.8s ease 0.15s both; }
  @keyframes slideRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  .welcome-img-main {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26,47,78,0.2);
    height: 380px;
    background: linear-gradient(135deg, #2176ae 0%, #57b8e6 50%, #a0d0ec 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .img-ocean-art {
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, #1a4a72 0%, #2a80b8 40%, #5ab0d0 70%, #c0e8f5 100%);
  }
  .img-ocean-sun {
    position: absolute;
   /* top: 18%;
    right: 22%;
    width: 80px; height: 80px;
    border-radius: 50%;*/
    box-shadow: 0 0 40px rgba(245,232,138,0.5);
  }
  .img-ocean-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .welcome-badge-float {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--navy);
    color: var(--white);
    border-radius: 14px;
    padding: 16px 22px;
    box-shadow: 0 8px 30px rgba(26,47,78,0.35);
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .wb-icon { font-size: 1.8rem; }
  .wb-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); line-height: 1; }
  .wb-sub { font-size: 0.7rem; color: #8899aa; text-transform: uppercase; letter-spacing: 0.1em; }
  .welcome-features { display: flex; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
  .wf-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(33,118,174,0.2);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
  }

  /* ── AMENITIES ── */
  #amenities { background: var(--white); padding: 90px 20px; }
  .amenities-inner { max-width: 1200px; margin: 0 auto; }
  .amenities-header { text-align: center; margin-bottom: 55px; }
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
  .amenity-card {
    background: var(--foam);
    border-radius: 18px;
    padding: 34px 28px;
    border: 1px solid rgba(87,184,230,0.2);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }
  .amenity-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(to right, var(--ocean), var(--sky));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }
  .amenity-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(33,118,174,0.14); border-color: var(--sky); }
  .amenity-card:hover::before { transform: scaleX(1); }
  .am-icon { font-size: 2.2rem; margin-bottom: 14px; }
  .am-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 8px; }
  .am-desc { font-size: 0.88rem; color: #667788; line-height: 1.7; }

  /* ── GALLERY ── */
  #gallery { background: var(--navy); padding: 90px 20px; }
  .gallery-inner { max-width: 1200px; margin: 0 auto; }
  .gallery-header { text-align: center; margin-bottom: 50px; }
  .gallery-header .section-tag { color: var(--sky); }
  .gallery-header .section-title { color: var(--white); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 14px;
  }
  .gallery-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
  }
  .gallery-item:hover { transform: scale(1.02); }
  .gallery-item.large { grid-column: 1 / 2; grid-row: 1 / 3; }
  .gallery-img {
    width: 100%;
    height: 200px;
    display: block;
  }
  .gallery-item.large .gallery-img { height: 100%; min-height: 400px; }
  .gallery-img-art {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
  }
  .gi-1 { background: linear-gradient(135deg, #1a4a72, #3a90c0); }
  .gi-2 { background: linear-gradient(135deg, #2a5a3a, #4a8a5a); }
  .gi-3 { background: linear-gradient(135deg, #4a3a1a, #8a6a2a); }
  .gi-4 { background: linear-gradient(135deg, #3a1a4a, #6a3a8a); }
  .gi-5 { background: linear-gradient(135deg, #1a3a4a, #2a6a8a); }
  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,47,78,0);
    display: flex; align-items: flex-end;
    padding: 16px;
    transition: background 0.3s;
  }
  .gallery-item:hover .gallery-overlay { background: rgba(26,47,78,0.6); }
  .gallery-label { color: var(--white); font-size: 0.85rem; font-weight: 600; opacity: 0; transform: translateY(8px); transition: all 0.3s; }
  .gallery-item:hover .gallery-label { opacity: 1; transform: translateY(0); }

  /* ── ATTRACTIONS ── */
  #attractions { background: var(--sand); padding: 90px 20px; }
  .attractions-inner { max-width: 1200px; margin: 0 auto; }
  .attractions-header { text-align: center; margin-bottom: 55px; }
  .attractions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .attr-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26,47,78,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .attr-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(26,47,78,0.15); }
  .attr-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
  }
  .ai-beach { background: linear-gradient(160deg, #57b8e6, #a3d4f0, #f5e8b0); }
  .ai-board { background: linear-gradient(160deg, #2176ae, #4a98c8, #8ac8e8); }
  .ai-aqua { background: linear-gradient(160deg, #1a3a6a, #2a70a8, #50a0c0); }
  .ai-dine { background: linear-gradient(160deg, #4a1a1a, #8a3a2a, #c06040); }
  .attr-body { padding: 18px; }
  .attr-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; }
  .attr-desc { font-size: 0.8rem; color: #778899; line-height: 1.6; }
  .attr-dist { display: inline-block; margin-top: 10px; font-size: 0.72rem; font-weight: 700; color: var(--ocean); letter-spacing: 0.06em; }

  /* ── REVIEWS ── */
  #reviews { background: var(--white); padding: 90px 20px; }
  .reviews-inner { max-width: 1200px; margin: 0 auto; }
  .reviews-header { text-align: center; margin-bottom: 50px; }
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .review-card {
    background: var(--foam);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(87,184,230,0.2);
    position: relative;
  }
  .review-card::before {
    content: '"';
    position: absolute;
    top: 12px; right: 22px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: rgba(33,118,174,0.1);
    line-height: 1;
  }
  .stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 12px; letter-spacing: 2px; }
  .review-text { font-size: 0.88rem; color: #556070; line-height: 1.75; margin-bottom: 16px; font-style: italic; }
  .review-author { display: flex; align-items: center; gap: 12px; }
  .ra-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
  .av-1 { background: linear-gradient(135deg, #2176ae, #57b8e6); }
  .av-2 { background: linear-gradient(135deg, #2a7a4a, #5aaa7a); }
  .av-3 { background: linear-gradient(135deg, #7a3a1a, #c07a3a); }
  .ra-name { font-weight: 700; font-size: 0.85rem; color: var(--navy); }
  .ra-date { font-size: 0.72rem; color: #aabbcc; }

  /* ── CTA BAND ── */
  #cta-band { background: linear-gradient(135deg, var(--navy) 0%, #0d2540 100%); padding: 80px 20px; text-align: center; position: relative; overflow: hidden; }
  #cta-band::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(87,184,230,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-band-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
  .cta-band-inner .section-title { color: var(--white); }
  .cta-band-inner .section-desc { color: #a8c4da; margin: 0 auto 32px; }
  .cta-band-inner .section-line { margin: 0 auto 18px; }
  .cta-band-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ── CONTACT ── */
  #contact { background: var(--foam); padding: 90px 20px; }
  .contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
  .contact-map {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(26,47,78,0.14);
    height: 340px;
    background: linear-gradient(135deg, #c8dde8 0%, #a0c4d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    position: relative;
  }
  .map-pin { font-size: 3rem; }
  .contact-details { }
  .contact-detail-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
  .cd-icon { font-size: 1.4rem; width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: var(--white); box-shadow: 0 4px 14px rgba(33,118,174,0.15); flex-shrink: 0; }
  .cd-label { font-size: 0.72rem; font-weight: 700; color: var(--sky); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
  .cd-value { font-size: 18px; color: var(--navy); font-weight: 500; line-height: 1.5; }
  .cd-value a { color: var(--ocean); text-decoration: none; }
  .cd-value a:hover { text-decoration: underline; }

  /* ── FOOTER ── */
  footer { background: var(--dark); color: #8899aa; padding: 60px 20px 30px; }
  .footer-inner { max-width: 1300px; margin: 0 auto; }
  .footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
  .footer-brand .nav-logo { margin-bottom: 14px; display: inline-flex; }
  .footer-brand p { font-size: 0.85rem; line-height: 1.75; color: white; max-width: 400px; margin-bottom: 20px; }
  .footer-social { display: flex; gap: 10px; }
  .social-btn {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center;
    color: #8899aa;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }
  .social-btn:hover { background: var(--ocean); color: var(--white); }
  .footer-col h4 { color: var(--white); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { color: #7a8a9a; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--sky); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
  }
  .footer-bottom a { color: var(--sky); text-decoration: none; }
  
  
    .footer-quick-links{
    display: flex;
    /*gap: 50px;*/
    flex-wrap: wrap;
}

.quick-column ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-column ul li{
    margin-bottom: 10px;
}

.quick-column ul li a{
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.quick-column ul li a:hover{
    color: #57b8e6;
    padding-left: 5px;
}

/* Responsive */
@media(max-width:576px){
    .footer-quick-links{
        gap: 20px;
    }

}

.footer-heading{
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.quick-links-wrap{
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.quick-column ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-column ul li{
    margin-bottom: 10px;
}

.quick-column ul li a{
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.quick-column ul li a:hover{
    color: #57b8e6;
    padding-left: 5px;
}

@media(max-width:576px){
    .quick-links-wrap{
        gap: 20px;
    }
}

 /* Cookies Policy */
.cookie-policy{
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #1a2f4e;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cookie-policy p{
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-btn{
    background: #57b8e6;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.cookie-btn:hover{
    background: #2176ae;
}

  /* ── SCROLL TO TOP ── */
  #scrollTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px; height: 44px;
    background: var(--ocean);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 900;
    box-shadow: 0 4px 16px rgba(33,118,174,0.4);
    transition: transform 0.2s, background 0.2s;
  }
  #scrollTop:hover { background: var(--navy); transform: translateY(-2px); }
  #scrollTop.visible { display: flex; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .attractions-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .welcome-inner { grid-template-columns: 1fr; gap: 40px; }
    .welcome-img-block { display: none; }
    .amenities-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item.large { grid-column: auto; grid-row: auto; }
    .gallery-item.large .gallery-img { min-height: 200px; }
    .attractions-grid { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .info-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .info-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .footer-bottom { flex-direction: column; text-align: center; }
  }

  @media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .attractions-grid { grid-template-columns: 1fr; }
    .info-strip-inner { grid-template-columns: 1fr 1fr; }
    .hero-cta { flex-direction: column; align-items: center; }
    .cta-band-btns { flex-direction: column; align-items: center; }
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  #moreText{
    display: none;
}

.read-more-btn{
    margin-top: 18px;
    background: transparent;
    border: 1px solid #d4af6d;
    color: #d4af6d;
    padding: 12px 28px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
}

.read-more-btn:hover{
    background: #d4af6d;
    color: #fff;
}

/* Fixes the parent element structure into 3 clean, uniform columns */
.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: flex-start;
}

/* Forces the brand content area to align neatly */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Fixes the side-by-side quick links layout without breaking margins */
.footer-quick-links {
  display: flex;
  flex-direction: column;
}

.quick-links-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 15px; /* Adds space under the 'Quick Links' title */
}

/* Unifies the typography styling for all section headings */
.footer-heading, 
.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 15px;
  color: #ffffff;
}

/* Unifies structural lists */
.footer-top ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-top ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Style for pure text metrics like check-in times */
.policy-item {
  color: rgba(255, 255, 255, 0.7);
}

/* Handles responsiveness on mobile layouts safely */
@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .quick-links-wrap {
    gap: 10px;
  }
}

.ada-st {
    padding: 1em;
    text-align: center;
      background: #2488dd;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}
.phone-ada
{
    padding: 1em;
    text-align: center;
    background: #2488dd;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}


/* ── FOOTER CONTACT INFO ── */
.footer-contact-info {
    color: white;
    max-width: 270px;
    margin-top: -5px; /* Safely brings it up towards logo without affecting main grid structure */
}
.footer-contact-info .info-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    line-height: 1.4;
}
.footer-contact-info .info-line i {
    color: #57b8e6; /* Fallback for Sky Variable */
    color: var(--sky, #57b8e6);
}
.footer-contact-info .info-line a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-contact-info .info-line a:hover {
    color: #57b8e6; /* Fallback for Sky Variable */
    color: var(--sky, #57b8e6);
}