/* =====================================================
   PRASHANT HOME STAY — PREMIUM LUXURY STYLES
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #0F766E;
  --primary-dark: #0D5F59;
  --primary-light: #14B8A6;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --dark: #0F172A;
  --dark-soft: #1E293B;
  --background: #F8FAFC;
  --white: #FFFFFF;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --text: #334155;
  --heading: #0F172A;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", sans-serif;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 24px 64px rgba(15, 23, 42, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
  --topbar-height: 42px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading);
  font-weight: 600;
  line-height: 1.25;
}

.section-padding {
  padding: 100px 0;
}

.bg-light-section {
  background-color: var(--background);
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--dark) 0%, var(--primary-dark) 100%);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--accent);
  animation: pulse-logo 1.5s ease-in-out infinite;
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.preloader-bar {
  width: 160px;
  height: 3px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  border-radius: 3px;
  animation: loading-bar 1.2s ease-in-out infinite;
}

@keyframes pulse-logo {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

@keyframes loading-bar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ---------- Scroll Progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 10001;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.1s linear;
}

/* ---------- Top Contact Bar ---------- */
.top-bar {
  background: var(--dark);
  color: var(--gray-300);
  font-size: 0.8125rem;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1000;
  transition: transform var(--transition), opacity var(--transition);
}

.top-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.top-bar-contact {
  display: flex;
  gap: 28px;
}

.top-bar-link {
  color: var(--gray-300);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-bar-link:hover {
  color: var(--accent);
}

.top-bar-social {
  display: flex;
  gap: 6px;
}

.top-bar-social a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gray-300);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  transition: var(--transition);
}

.top-bar-social a:hover {
  background: var(--primary);
  color: var(--white);
}

/* ---------- Header / Navigation ---------- */
.main-header {
  position: absolute;
  top: var(--topbar-height);
  left: 0;
  width: 100%;
  z-index: 999;
  transition: background var(--transition), box-shadow var(--transition), top var(--transition);
}

.main-header .navbar {
  padding: 12px 0;
  min-height: var(--header-height);
}

.main-header.sticky {
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 100px;

  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}

.brand-tagline {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.main-header.sticky .brand-name {
  color: var(--heading);
}

.main-header.sticky .brand-tagline {
  color: var(--gray-500);
}

.navbar-nav .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 14px !important;
  position: relative;
  transition: color var(--transition);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.main-header.sticky .navbar-nav .nav-link {
  color: var(--dark-soft);
}

.main-header.sticky .navbar-nav .nav-link:hover,
.main-header.sticky .navbar-nav .nav-link.active {
  color: var(--primary);
}

.nav-book {
  margin-left: 12px;
  padding: 10px 24px !important;
}

.nav-book::after {
  display: none !important;
}

/* Mobile toggler */
.navbar-toggler {
  border: none;
  padding: 8px;
  background: transparent;
  box-shadow: none !important;
}

.toggler-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

.main-header.sticky .toggler-icon {
  background: var(--dark);
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: 50px;
  padding: 12px 32px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(15, 118, 110, 0.35);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.4);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}

.btn-accent:hover,
.btn-accent:focus {
  background: linear-gradient(135deg, var(--accent-dark) 0%, #B45309 100%);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  width: 100%;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-whatsapp:hover {
  background: #1DA851;
  color: var(--white);
  transform: translateY(-2px);
}

/* Ripple effect */
.btn-ripple {
  position: relative;
  overflow: hidden;
}

.btn-ripple .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple-anim 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ---------- Section Headers ---------- */
.section-header {
  margin-bottom: 56px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  position: relative;
}

.section-eyebrow.light {
  color: var(--accent);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
}

.hero-bg-1 { background-image: url("../images/hero/hero-1.jpg"); }
.hero-bg-2 { background-image: url("../images/hero/hero-2.jpg"); }
.hero-bg-3 { background-image: url("../images/hero/hero-3.jpg"); }
.hero-bg-4 { background-image: url("../images/hero/hero-4.jpg"); }
.hero-bg-5 { background-image: url("../images/hero/hero-5.jpg"); }

/* Ken Burns zoom */
.ken-burns {
  animation: kenburns 8s ease-out forwards;
}

.swiper-slide-active .ken-burns {
  animation: kenburns 8s ease-out forwards;
}

@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.55) 0%,
    rgba(15, 23, 42, 0.4) 40%,
    rgba(15, 23, 42, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.hero-content .container {
  pointer-events: auto;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 0.3s forwards;
}

.hero-title {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: heroFadeUp 0.8s ease 0.5s forwards;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 36px;
  font-weight: 300;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 0.7s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 0.9s forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-pagination {
  bottom: 100px !important;
  z-index: 3;
}

.hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--accent);
  width: 32px;
  border-radius: 10px;
}

/* Mouse scroll animation */
.mouse-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.mouse-scroll:hover {
  color: var(--white);
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scroll-wheel 1.5s ease-in-out infinite;
}

.mouse-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@keyframes scroll-wheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ---------- About Section ---------- */
.about-collage {
  position: relative;
  height: 560px;
  max-width: 520px;
}

.collage-img {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-img-1 {
  width: 62%;
  height: 70%;
  top: 0;
  left: 0;
  z-index: 2;
}

.collage-img-2 {
  width: 48%;
  height: 55%;
  bottom: 40px;
  right: 0;
  z-index: 3;
}

.collage-img-3 {
  width: 38%;
  height: 38%;
  bottom: 0;
  left: 18%;
  z-index: 4;
  border: 4px solid var(--white);
}

.collage-accent {
  position: absolute;
  width: 180px;
  height: 180px;
  top: 60px;
  right: 20px;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  z-index: 1;
  opacity: 0.7;
}

.floating-img {
  animation: float 6s ease-in-out infinite;
}

.floating-img.delay-1 {
  animation-delay: 1.5s;
}

.floating-img.delay-2 {
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.about-text {
  margin-bottom: 16px;
  color: var(--gray-600);
}

.about-features {
  margin: 28px 0 36px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-weight: 500;
  color: var(--dark-soft);
}

.about-features i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ---------- Why Choose Us ---------- */
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(245, 158, 11, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  transform: scale(1.08);
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.925rem;
  color: var(--gray-500);
  margin: 0;
}

/* ---------- Activities ---------- */
.activity-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.activity-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.activity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.activity-card:hover .activity-img img {
  transform: scale(1.1);
}

.activity-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 118, 110, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 2rem;
  color: var(--white);
}

.activity-card:hover .activity-overlay {
  opacity: 1;
}

.activity-body {
  padding: 24px 20px;
}

.activity-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.activity-body p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
}

.activity-checklist {
  margin-top: 48px;
  text-align: center;
}

.check-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--primary-dark);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
}

.check-pill i {
  color: var(--accent);
}

/* ---------- Facilities ---------- */
.facility-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 20px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}

.facility-box:hover {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: transparent;
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.facility-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: rgba(15, 118, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.facility-box:hover .facility-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent);
}

.facility-box h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin: 0;
  transition: color var(--transition);
}

.facility-box:hover h3 {
  color: var(--white);
}

/* ---------- Statistics ---------- */
.stats-section {
  position: relative;
  padding: 90px 0;
  background: url("../images/cta/stats-bg.jpg") center / cover no-repeat fixed;
  color: var(--white);
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.92), rgba(15, 23, 42, 0.88));
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.04em;
}

/* ---------- Masonry Guest Gallery ---------- */
.masonry-gallery {
  columns: 4;
  column-gap: 16px;
}

.masonry-item {
  display: block;
  margin-bottom: 16px;
  break-inside: avoid;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.masonry-item:hover img {
  transform: scale(1.08);
}

.masonry-hover {
  position: absolute;
  inset: 0;
  background: rgba(15, 118, 110, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.5rem;
}

.masonry-item:hover .masonry-hover {
  opacity: 1;
}

/* ---------- Pinterest Home Stay Gallery ---------- */
.pinterest-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.medium {
  grid-row: span 2;
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.8));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-weight: 500;
  font-size: 0.9rem;
}

.gallery-item:hover .gallery-hover {
  opacity: 1;
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--background) 100%);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  height: 100%;
  margin: 10px 8px 40px;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: 28px;
  line-height: 1.8;
  font-family: var(--font-heading);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gray-200);
}

.testimonial-author h4 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin: 0 0 2px;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.testimonials-pagination .swiper-pagination-bullet {
  background: var(--gray-300);
  opacity: 1;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 28px;
  border-radius: 10px;
}

/* ---------- Booking CTA ---------- */
.booking-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.booking-parallax {
  position: absolute;
  inset: 0;
  background: url("../images/cta/booking-bg.jpg") center / cover no-repeat;
  background-attachment: fixed;
  transform: scale(1.05);
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(15, 118, 110, 0.75));
}

.booking-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.booking-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Contact ---------- */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 36px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-info-item h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
}

.contact-info-item a {
  color: var(--gray-500);
}

.contact-info-item a:hover {
  color: var(--primary);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-map-iframe {
  border: 0;
  display: block;
  width: 100%;
}

.contact-form .form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-soft);
  margin-bottom: 6px;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.925rem;
  background: var(--white);
  transition: var(--transition);
  color: var(--text);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

.form-success {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary-dark);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

/* ---------- Footer ---------- */
.main-footer {
  background: var(--dark);
  color: var(--gray-400);
  padding-top: 80px;
}

.footer-top {
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.footer-brand small {
  display: block;
  font-size: 0.7rem;
  color: var(--gray-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-about {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--accent);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 4px;
}

.footer-contact a {
  color: var(--gray-400);
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
    padding: 34px 0;
    text-align: center;
    background-color: #0f172a;
    padding-bottom: 54px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ---------- Back To Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 150px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  font-size: 1rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
 
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ---------- Floating WhatsApp ---------- */
.floating-whatsapp {
  position: fixed;
  bottom: 150px;
  left: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 990;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* ---------- GLightbox tweaks ---------- */
.goverlay {
  background: rgba(15, 23, 42, 0.92) !important;
}

/* ---------- Selection ---------- */
::selection {
  background: var(--primary);
  color: var(--white);
}

/* ---------- Focus accessibility ---------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn:focus-visible,
.nav-link:focus-visible {
  outline-offset: 4px;
}
