/* ============================================================================
   COMFORT SUITES APARTMENT POKHARA — Global Stylesheet
   Luxury Nature Editorial Design System
   ============================================================================ */

:root {
  --color-primary: #2C4A3E;      /* Deep forest green */
  --color-secondary: #C8956C;    /* Warm terracotta */
  --color-accent: #D4AF7A;       /* Himalayan gold */
  --color-cream: #F7F3EE;        /* Warm ivory background */
  --color-dark: #1A2E28;         /* Near-black green */
  --color-light: #FDFAF6;        /* Off-white */
  --color-text: #3D3530;         /* Warm dark brown text */
  --color-muted: #8A7E76;        /* Muted brown */
  --color-success: #4CAF50;      /* Green for success messages */
  --color-error: #E74C3C;        /* Red for errors */
  --color-border: #E8E2D8;       /* Light border */
  
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'DM Sans', sans-serif;
  --font-accent: 'Josefin Sans', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-light);
  line-height: 1.6;
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */



h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

h1 {
  font-size: clamp(2.4rem, 10vw, 4.8rem);
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(2rem, 7vw, 3.6rem);
  letter-spacing: -0.5px;
}

h3 {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
}

h4 {
  font-size: 1.5rem;
}

body {
  font-size: 1.15rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-accent);
}
 /* * ==================== NAVIGATION ==================== */ */
.navbar {
    background-color: var(--nav-dark);
    color: var(--white);
    padding: 0.4rem 0;
    position: fixed;
    width: 100%;
   justify-content: center; 
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    height: auto;
     position: relative;     
}

.navbar.sticky {
    position: fixed;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 0 20px;
    padding-right: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

@media (min-width: 768px) {
    .nav-container {
        padding-right: 20px;
    }
}

/* ===== NAV LOGO (Mobile First, Non-Breaking) ===== */
.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;                 /* smaller gap for mobile */
    font-weight: 600;
    font-size: 0.95rem;       /* mobile-friendly text */
    letter-spacing: 0.4px;
    text-align: center;
    flex-grow: 1;
}

.logo-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color:transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;      /* no zoom / no crop */
    border-radius: 50%;
}

/* ===== Tablet & Laptop Enhancement ===== */
@media (min-width: 768px) {
    .nav-logo {
        gap: 10px;
        font-size: 0.85rem;
    }

    .logo-circle {
        width: 70px;
        height: 70px;
    }
}

@media (min-width: 1024px) {
    .logo-circle {
        width: 85px;
        height: 85px;
    }
}


.logo-text {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.2;
    display: inline-block;
}

@media (min-width: 768px) {
    .logo-text {
        font-size: 0.95rem;
        letter-spacing: 0.4px;
    }
}

@media (min-width: 1024px) {
    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }
}

.nav-menu {
    position: fixed;
    top: 65px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 65px);
    background-color: var(--nav-dark);
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 0;
    padding: 2rem;
    transition: left 0.3s ease;
    overflow-y: auto;
}

@media (min-width: 768px) {
    .nav-menu {
        top: 80px;
        height: calc(100vh - 80px);
    }
}

@media (min-width: 1024px) {
    .nav-menu {
        top: 95px;
        height: calc(100vh - 95px);
    }
}

.nav-menu.active {
    left: 0;
}

.nav-link {
    color: var(--white);
    padding: 1.5rem 1.2rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--primary-yellow);
    color: var(--nav-dark);
    padding-left: 1.2rem;
}

.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    border-radius: 4px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
    margin-top: 0.5rem;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.2rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: var(--primary-yellow);
    color: var(--nav-dark);
    padding-left: 1.5rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
    gap: 5px;
    z-index: 1001;
     display: none;
  flex-direction: column;
  gap: 0.4rem;
  cursor: pointer;
  background: none;
  border: none;
  position: absolute;       /* add this */
  right: 2rem;   
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-dark);
  border-radius: 0.5rem;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-top: 0.5rem;
  min-width: 200px;
}

.navbar-item:hover .dropdown-menu {
  opacity: 1;                       /* fully visible */
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: block;
  padding: 0.85rem 1.8rem;
  color: var(--color-light);        /* ensure this is white/light */
  font-size: 1.05rem;
  text-align: left;
  transition: var(--transition);
  opacity: 1 !important;            /* prevent any inherited opacity */
}

.dropdown-item:hover {
  background-color: var(--color-primary);
  color: var(--color-accent);
}
.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}


.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ============================================================================
   LAYOUT & SPACING
   ============================================================================ */

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section--large {
  padding: 6rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 2.5rem 0;
  }
  
  .section--large {
    padding: 3.5rem 0;
  }
}

/* ============================================================================
   NAVIGATION
   ============================================================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(30, 44, 40, 0.95);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

nav.scrolled {
  background-color: rgba(30, 44, 40, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 100%;
}

.navbar-logo {
  height: 45px;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-light);
  font-family: var(--font-serif);
}

.navbar-logo img {
  height: 100%;
  width: auto;
  margin-right: 0.5rem;
}

.navbar-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar-item {
  position: relative;
}

.navbar-link {
  color: var(--color-light);
  font-size: 1.1rem;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.navbar-link:hover {
  color: var(--color-accent);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-dark);
  border-radius: 0.5rem;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-top: 0.5rem;
  min-width: 200px;
}

.navbar-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.85rem 1.8rem;
  color: var(--color-light);
  font-size: 1.05rem;
  text-align: left;
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: var(--color-primary);
  color: var(--color-accent);
}

.navbar-cta {
  background-color: var(--color-secondary);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 0.3rem;
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition);
}

.navbar-cta:hover {
  background-color: var(--color-accent);
  color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 149, 108, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--color-light);
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 768px) {
  .navbar-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    gap: 0;
    width: 80%;
    max-width: 300px;
    background-color: var(--color-dark);
    padding: 2rem 0;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
  }
  
  .navbar-menu.active {
    right: 0;
  }
  
  .navbar-item {
    width: 100%;
  }
  
  .navbar-link {
    padding: 1rem 2rem;
    display: flex;
    width: 100%;
    color: var(--color-light);
  }
  
  .dropdown-menu {
    position: static;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transform: none;
    background-color: rgba(44, 74, 62, 0.8);
    margin-top: 0;
    box-shadow: none;
    border-radius: 0;
  }
  
  .navbar-item.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
  }
  
  .hamburger {
    display: flex;
  }
  
  .navbar-cta {
    margin: 1rem 2rem;
    display: block;
    text-align: center;
  }
}

/* ============================================================================
   HERO CAROUSEL
   ============================================================================ */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 70px;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 46, 40, 0.3), rgba(26, 46, 40, 0.5));
}

.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  width: 90%;
  max-width: 800px;
}

.carousel-content h1 {
  color: white;
  margin-bottom: 1rem;
  animation: slideUp 0.8s ease-out;
}

.carousel-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease-out 0.4s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.scroll-indicator svg {
  width: 30px;
  height: 30px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

/* ============================================================================
   BUTTONS & LINKS
   ============================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: 2px solid transparent;
  border-radius: 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font-sans);
}

.btn-primary {
  background-color: var(--color-secondary);
  color: white;
  border-color: var(--color-secondary);
}

.btn-primary:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(200, 149, 108, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background-color: white;
  color: var(--color-primary);
  transform: translateY(-3px);
}

.btn-tertiary {
  background-color: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.btn-tertiary:hover {
  background-color: var(--color-dark);
  border-color: var(--color-dark);
  transform: translateY(-3px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn-outline:hover {
  background-color: var(--color-secondary);
  color: white;
}

.btn-small {
  padding: 0.6rem 1.2rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ============================================================================
   TRUST BAR
   ============================================================================ */

.trust-bar {
  background-color: var(--color-cream);
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.trust-item strong {
  color: var(--color-primary);
  font-size: 1.5rem;
  display: block;
}

.trust-item span {
  color: var(--color-muted);
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .trust-content {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ============================================================================
   FEATURE CARDS (Why Choose Us)
   ============================================================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border-top: 4px solid var(--color-secondary);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background-color: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.feature-card h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--color-muted);
  font-size: 1.15rem;
}

/* ============================================================================
   APARTMENT CARDS
   ============================================================================ */

.apartments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.apartment-card {
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.apartment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.apartment-card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
  background: linear-gradient(135deg, #e8e2d8 0%, #f7f3ee 100%);
}

.apartment-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.apartment-card:hover .apartment-card-image img {
  transform: scale(1.05);
}

.apartment-card-content {
  padding: 2rem;
}

.apartment-card h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.apartment-card p {
  color: var(--color-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.apartment-card-features {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.feature-pill {
  display: inline-block;
  background-color: var(--color-cream);
  color: var(--color-primary);
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.apartment-card-link {
  display: inline-block;
  color: var(--color-secondary);
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.apartment-card-link:hover {
  border-bottom-color: var(--color-secondary);
}

/* ============================================================================
   SECTION HEADERS
   ============================================================================ */

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-header-subtitle {
  color: var(--color-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================================
   VIDEO SECTION
   ============================================================================ */

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.video-card {
  position: relative;
  background-color: #000;
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================================
   GALLERY & LIGHTBOX
   ============================================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
  aspect-ratio: 3 / 2;
  background: linear-gradient(135deg, #e8e2d8 0%, #f7f3ee 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item::after {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
}

.lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--color-accent);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0.3rem;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

@media (max-width: 1024px) {
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
}

/* ============================================================================
   MAPS & LOCATION
   ============================================================================ */

.location-map {
  width: 100%;
  height: 400px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.attractions-list {
  list-style: none;
}

.attractions-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.attractions-list li:last-child {
  border-bottom: none;
}

.attraction-name {
  font-weight: 600;
  color: var(--color-primary);
}

.attraction-distance {
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* ============================================================================
   TESTIMONIALS
   ============================================================================ */

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--color-secondary);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 700;
  color: var(--color-primary);
}

.testimonial-country {
  font-size: 1.2rem;
}

.testimonial-rating {
  color: #FFB800;
  font-size: 0.9rem;
}

.testimonial-text {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-stay-type {
  display: inline-block;
  background-color: var(--color-cream);
  color: var(--color-primary);
  padding: 0.3rem 0.7rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* ============================================================================
   ACCORDION (FAQ)
   ============================================================================ */

.accordion {
  max-width: 800px;
  margin: 3rem auto 0;
}

.accordion-item {
  border: 1px solid var(--color-border);
  margin-bottom: 1rem;
  border-radius: 0.4rem;
  overflow: hidden;
}

.accordion-header {
  background-color: white;
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
}

.accordion-header:hover {
  background-color: var(--color-cream);
}

.accordion-header.active {
  background-color: var(--color-primary);
  color: white;
}

.accordion-icon {
  transition: var(--transition);
  font-size: 1.5rem;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--color-cream);
}

.accordion-content.active {
  max-height: 500px;
}

.accordion-body {
  padding: 1.5rem;
  color: var(--color-text);
  line-height: 1.7;
}

/* ============================================================================
   FORMS
   ============================================================================ */

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 0.4rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-error {
  color: var(--color-error);
  font-size: 0.85rem;
  margin-top: 0.3rem;
  display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--color-error);
}

.form-group.error .form-error {
  display: block;
}

.form-success {
  background-color: #D4EDDA;
  color: #155724;
  padding: 1rem;
  border-radius: 0.4rem;
  margin-bottom: 1.5rem;
  display: none;
}

.form-success.active {
  display: block;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.phone-input-wrapper {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .phone-input-wrapper {
    grid-template-columns: 100px 1fr;
  }
}

.country-code-select {
  flex-grow: 0;
}

.radio-group {
  display: flex;
  gap: 2rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.radio-item input[type="radio"] {
  width: auto;
  cursor: pointer;
}

.radio-item label {
  margin: 0;
  font-weight: normal;
  color: var(--color-text);
}

/* ============================================================================
   CTA SECTIONS
   ============================================================================ */

.cta-section {
  position: relative;
  padding: 5rem 2rem;
  text-align: center;
  color: white;
  border-radius: 0.5rem;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 46, 40, 0.8), rgba(44, 74, 62, 0.8));
  z-index: 1;
}

.cta-section-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: white;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================================
   FLOATING WHATSAPP BUTTON
   ============================================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  z-index: 100;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-float svg {
    width: 25px;
    height: 25px;
  }
}

/* ============================================================================
   FOOTER
   ============================================================================ */

footer {
  background-color: var(--color-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--color-accent);
}

.footer-section p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--color-secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

.text-muted {
  color: var(--color-muted);
}

.mt {
  margin-top: 2rem;
}

.mb {
  margin-bottom: 2rem;
}

.hidden {
  display: none !important;
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.fade-in-left {
  animation: fadeInLeft 0.6s ease-out;
}

.fade-in-right {
  animation: fadeInRight 0.6s ease-out;
}

/* ============================================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================================ */

@media (max-width: 1024px) {
  .carousel-content {
    width: 95%;
  }
  
  .carousel-content h1 {
    font-size: 2rem;
  }
  
  .carousel-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .navbar-logo {
    font-size: 1.2rem;
    height: 40px;
  }
  
  .hero {
    margin-top: 60px;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  
  h2 {
    font-size: clamp(1.25rem, 5vw, 2rem);
  }
  
  .cta-section {
    padding: 3rem 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* ============================================================================
   SCROLLBAR
   ============================================================================ */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}
