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

img, video, iframe {
  max-width: 100%;
  height: auto;
}

img {
  content-visibility: auto;
}

:root {
  --primary-color: #00B4C3;
  --secondary-color: #FF6B6B;
  --accent-color: #FFD93D;
  --tropical-teal: #40E1D1;
  --coral-pink: #F89CAC;
  --text-dark: #2D4A3E;
  --text-light: #ffffff;
  --bg-light: #E8DFD4;
  --bg-cream: #F0E8DF;
  --bg-sand: #F3CFA4;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
  margin-right: auto;
  position: relative;
  transition: color 0.3s ease;
}

.logo.logo-compact {
  font-size: 2rem;
}

.mobile-center-title {
  display: none;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  line-height: 1.1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.mobile-title-subtitle {
  display: block;
  font-size: 0.7em;
  font-weight: 600;
  color: var(--secondary-color);
}

.logo-img {
  height: 65px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 2;
}

.logo:hover .logo-img {
  opacity: 0.15;
}

.logo::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b6b, #00d4aa);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 3L4 9v12h5v-7h6v7h5V9L12 3z'/%3E%3Cpath d='M10 14h4v1h-4v-1z'/%3E%3Cpath d='M2 12l2-2 8-6 8 6 2 2-1.41 1.41L12 5.83l-8.59 7.58L2 12z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 3L4 9v12h5v-7h6v7h5V9L12 3z'/%3E%3Cpath d='M10 14h4v1h-4v-1z'/%3E%3Cpath d='M2 12l2-2 8-6 8 6 2 2-1.41 1.41L12 5.83l-8.59 7.58L2 12z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.logo:hover::after {
  opacity: 1;
}

.logo:hover {
  cursor: pointer;
  color: rgba(232, 116, 97, 0.15);
}

.logo:hover .logo-subtitle {
  color: rgba(64, 191, 179, 0.15);
}

.logo .logo-subtitle {
  font-size: 0.45em;
  font-weight: 600;
  margin-left: 5em;
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a.active {
  background: var(--secondary-color);
  padding: 8px 16px;
  border-radius: 25px;
  color: var(--text-light) !important;
}

.nav-links a.active:hover {
  background: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 48px;
  min-height: 48px;
  justify-content: center;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 1200px) {
  .nav-container {
    padding: 15px 25px;
    gap: 25px;
  }
  
  .nav-links {
    gap: 12px;
  }
  
  .nav-links a {
    font-size: 0.9rem;
  }
  
  .logo-img {
    height: 55px;
  }
}

@media (max-width: 1024px) {
  .nav-container {
    padding: 12px 20px;
    gap: 15px;
  }
  
  .nav-links {
    gap: 8px;
  }
  
  .nav-links a {
    font-size: 0.85rem;
  }
  
  .logo-img {
    height: 50px;
  }
}

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  padding-top: 80px;
  overflow: hidden;
}

.hero-image-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.18));
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 10px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.7), 0 0 80px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hero h1 .hero-subtitle {
  font-size: 0.45em;
  font-weight: 700;
  margin-left: 0;
  margin-top: 5px;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
}

.hero-tagline {
  font-size: 1.1rem;
  margin-top: 15px;
  margin-bottom: 0;
  font-weight: 400;
  font-style: italic;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.6);
  -webkit-text-stroke: 0.3px rgba(0, 0, 0, 0.3);
}

.hero-stats {
  font-size: 1.5rem;
  margin-bottom: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.6);
  font-weight: 500;
  -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.4);
}

.hero-stats .divider {
  margin: 0 15px;
  opacity: 0.7;
}

.hero-badges {
  margin-bottom: 40px;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  padding: 10px 24px;
  border-radius: 25px;
  margin: 5px;
  font-size: 0.95rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-light);
  padding: 16px 44px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: none;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.cta-button:hover {
  transform: translateY(-3px);
  background: var(--secondary-color);
  color: var(--text-light);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.about {
  padding: 100px 0;
  background: var(--bg-cream);
}

.about h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.about-description {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.highlight-item {
  background: white;
  padding: 15px 10px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.highlight-item:hover {
  transform: translateY(-3px);
}

.highlight-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.highlight-item h3 {
  color: var(--primary-color);
  margin-bottom: 4px;
  font-size: 0.85rem;
}

.highlight-item p {
  color: #666;
  font-size: 0.75rem;
  line-height: 1.4;
}

a.highlight-link {
  text-decoration: none;
  display: block;
  cursor: pointer;
}

a.highlight-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 180, 195, 0.2);
}

@media (max-width: 768px) {
  .highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.property-highlights {
  padding: 80px 0;
  background: white;
}

.property-highlights h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.highlights-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.accordion-header {
  width: 100%;
  padding: 18px 25px;
  background: var(--bg-light);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  font-family: 'Playfair Display', serif;
}

.accordion-header:hover {
  background: #e8f4f3;
}

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

.accordion-title {
  font-size: 1.35rem;
  font-weight: 600;
}

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

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

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: white;
}

.accordion-content.open {
  max-height: 800px;
}

.accordion-list {
  padding: 20px 25px 20px 45px;
  margin: 0;
  list-style: disc;
}

.accordion-list li {
  padding: 8px 0;
  color: #555;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
}

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

.highlights-tagline {
  text-align: center;
  max-width: 700px;
  margin: 40px auto 0;
  font-style: italic;
  color: #666;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .property-highlights {
    padding: 60px 0;
  }
  
  .property-highlights h2 {
    font-size: 1.8rem;
  }
  
  .accordion-header {
    padding: 15px 20px;
  }
  
  .accordion-title {
    font-size: 1.15rem;
  }
  
  .accordion-list {
    padding: 15px 20px 15px 40px;
  }
}

.gallery {
  padding: 100px 0;
  background: white;
}

.gallery h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 50px;
}

.gallery-wrapper {
  position: relative;
  padding: 0 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.gallery-grid-2x2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-item {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  color: #888;
  font-size: 1.2rem;
}

.gallery-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  color: #c0392b;
  font-size: 1.1rem;
  background: #fdf2f2;
  border-radius: 15px;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.5rem;
  color: var(--secondary-color);
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-nav:hover:not(:disabled) {
  background: var(--secondary-color);
  color: white;
}

.gallery-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.gallery-nav.prev {
  left: 0;
}

.gallery-nav.next {
  right: 0;
}

.gallery-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.pagination-info {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.gallery-view-all {
  text-align: center;
  margin-top: 30px;
}

.view-all-link {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: var(--transition);
}

.view-all-link:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.full-gallery {
  padding: 60px 0 100px;
  background: white;
}

.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.full-gallery-grid .gallery-item {
  aspect-ratio: 4/3;
}

@media (max-width: 992px) {
  .full-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .full-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.availability {
  padding: 100px 0;
  background: white;
}

.availability h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 50px;
}

.calendar-container {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  padding: 30px;
  border: 4px solid var(--primary-color);
  box-shadow: var(--shadow);
}

.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #555;
}

.legend-dot {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.legend-dot.available {
  background: #E8F5E9;
  border: 2px solid #4CAF50;
}

.legend-dot.booked {
  background: #FFEBEE;
  border: 2px solid #E53935;
}

.legend-dot.turnover {
  background: linear-gradient(135deg, #E8F5E9 50%, #FFEBEE 50%);
  border: 2px solid #81C784;
}

.calendar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.calendar-nav-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-nav-btn:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.calendar-nav-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  width: 320px;
  text-align: center;
  flex-shrink: 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.calendar-month {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 15px;
  border: 1px solid #e0e0e0;
}

.calendar-month-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--secondary-color);
}

.calendar-month-title .month-text {
  min-width: 140px;
  text-align: center;
}

.calendar-month-title .month-nav-btn {
  display: none;
  background: var(--primary-color);
  color: white;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.calendar-month-title .month-nav-btn:hover {
  background: var(--secondary-color);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 5px;
}

.calendar-weekday {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #888;
  padding: 5px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.calendar-day.empty {
  background: transparent;
}

.calendar-day.available {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
  cursor: pointer;
}

.calendar-day.available:hover {
  background: #C8E6C9;
  transform: scale(1.1);
}

.calendar-day.selected-arrival,
.calendar-day.selected-departure {
  background: var(--secondary-color) !important;
  color: white !important;
  border: 2px solid var(--primary-color) !important;
  font-weight: 700;
}

.calendar-day.selected-range {
  background: #FFE0B2 !important;
  color: #E65100 !important;
  border: 1px solid #FFB74D !important;
}

.calendar-day.booked {
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid #EF9A9A;
}

.calendar-day.turnover {
  position: relative;
  background: linear-gradient(135deg, #E8F5E9 50%, #FFEBEE 50%);
  color: #333;
  border: 1px solid #81C784;
  cursor: pointer;
}

.calendar-day.turnover:hover {
  background: linear-gradient(135deg, #C8E6C9 50%, #FFCDD2 50%);
  transform: scale(1.05);
}

.calendar-day.past {
  background: #f5f5f5;
  color: #bbb;
  border: 1px solid #e0e0e0;
}

.calendar-day.today {
  border: 2px solid var(--primary-color) !important;
  font-weight: 700;
}

.calendar-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  color: #888;
  font-size: 1.1rem;
}

.calendar-contact {
  text-align: center;
  margin-top: 25px;
  font-size: 1.1rem;
  color: #555;
}

.calendar-contact a {
  color: var(--secondary-color);
  font-weight: 600;
}

.calendar-contact a:hover {
  color: var(--primary-color);
}

.calendar-selection-info {
  text-align: center;
  margin-top: 15px;
  padding: 10px;
  background: #FFF8E1;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #795548;
}

.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.booking-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  background: white;
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 4px solid var(--primary-color);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.booking-modal-overlay.active .booking-modal {
  transform: scale(1);
}

.booking-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--secondary-color);
}

.booking-modal-header h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin: 0;
}

.booking-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #888;
  line-height: 1;
}

.booking-modal-close:hover {
  color: var(--primary-color);
}

.booking-dates-summary {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
}

.booking-dates-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
}

.booking-date-box {
  flex: 1;
  text-align: center;
}

.booking-date-label {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 5px;
}

.booking-date-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.booking-nights {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}

.booking-nights-count {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary-color);
}

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

.booking-form-row .booking-form-group {
  flex: 1;
}

.booking-form-group {
  margin-bottom: 20px;
}

.booking-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-color);
}

.booking-form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.booking-form-group input:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.booking-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-submit-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.booking-clear-btn {
  width: 100%;
  padding: 10px;
  background: transparent;
  color: #888;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.booking-clear-btn:hover {
  background: #f5f5f5;
  color: var(--primary-color);
}

.booking-confirmation {
  padding: 20px 0 0 0;
}

.booking-confirmation-text {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

.booking-redirect-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

.booking-redirect-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

@media (max-width: 768px) {
  .calendar-grid {
    grid-template-columns: 1fr;
  }
  
  .calendar-month:nth-child(2),
  .calendar-month:nth-child(3) {
    display: none;
  }
  
  .calendar-nav {
    display: none;
  }
  
  .calendar-month-title .month-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .calendar-container {
    padding: 20px 15px;
  }
  
  .calendar-nav-title {
    font-size: 1rem;
    width: auto;
    min-width: 180px;
  }
  
  .booking-modal {
    padding: 20px;
  }
  
  .booking-dates-row {
    flex-direction: column;
    gap: 10px;
  }
}

.location {
  padding: 100px 0;
  background: #F0E8DF;
}

.location h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.location-address {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 450px;
}

.plan-your-stay {
  padding: 100px 0;
  background: white;
}

.plan-your-stay h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.plan-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
}

.stay-accordion {
  max-width: 1000px;
  margin: 0 auto;
}

.stay-accordion-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.stay-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: linear-gradient(135deg, var(--bg-light), #fff);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.stay-accordion-header:hover {
  background: linear-gradient(135deg, #e8f4f3, #fff);
}

.stay-accordion-header.active {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.stay-accordion-header.active .stay-accordion-title,
.stay-accordion-header.active .stay-accordion-icon {
  color: white;
}

.stay-accordion-header.active .stay-accordion-arrow {
  color: white;
  transform: rotate(90deg);
}

.stay-accordion-icon {
  font-size: 1.8rem;
}

.stay-accordion-title {
  flex: 1;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
}

.stay-accordion-arrow {
  font-size: 1.5rem;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.stay-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: white;
}

.stay-accordion-content.open {
  max-height: 1200px;
  overflow-y: auto;
}

.stay-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
  padding: 25px;
}

.stay-link-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.stay-link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border-color: var(--secondary-color);
}

.stay-link-icon {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.stay-link-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.stay-link-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .plan-your-stay {
    padding: 60px 0;
  }
  
  .plan-your-stay h2 {
    font-size: 1.8rem;
  }
  
  .stay-accordion-title {
    font-size: 1.1rem;
  }
  
  .stay-links-grid {
    grid-template-columns: 1fr;
    padding: 15px;
  }
}

.footer {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 65px;
  width: auto;
  margin-bottom: 10px;
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-subtitle {
  display: block;
  font-size: 0.5em;
  font-weight: 600;
  color: var(--text-light);
  margin-top: -2px;
  margin-left: 5em;
}

.footer-brand p {
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
}

.footer-contact {
  text-align: right;
}

.footer-contact p {
  margin: 8px 0;
  opacity: 0.9;
}

.footer-contact a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.7;
  font-size: 0.9rem;
}

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

.lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  touch-action: pan-x;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: auto;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 10;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
}

.page-hero {
  padding: 150px 0 80px;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
              url('/images/hero/subpage-hero-1600.webp') center center/cover no-repeat;
  text-align: center;
  color: var(--text-light);
  position: relative;
}

@supports not (background: url('/images/hero/subpage-hero-1600.webp')) {
  .page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
                url('/images/hero/subpage-hero-1600.jpg') center center/cover no-repeat;
  }
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.95;
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-hero-enhanced .hero-text-card {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 40px 60px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.page-hero-enhanced .hero-text-card h1 {
  margin-bottom: 12px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-hero-enhanced .hero-text-card p {
  margin-bottom: 0;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.page-hero-enhanced .hero-text-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.page-hero-enhanced .hero-text-card {
  position: relative;
}

.hero .hero-text-card {
  display: inline-block;
  background: rgba(255, 255, 255, 0.005);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 40px 60px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  position: relative;
  margin-bottom: 25px;
}

.hero .hero-text-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .hero .hero-text-card {
    padding: 30px 35px;
  }
}

@media (max-width: 768px) {
  .page-hero-enhanced .hero-text-card {
    padding: 30px 35px;
  }
  
  .page-hero-enhanced .hero-text-card p {
    font-size: 1.1rem;
  }
}

.history-intro {
  padding: 60px 0;
  background: var(--bg-cream);
}

.history-blurb {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.history-blurb h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.history-blurb p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.history-blurb p:last-child {
  margin-bottom: 0;
}

.family-photo {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}

.comparison-slideshow {
  padding: 80px 0;
  background: white;
}

.comparison-slideshow h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.comparison-instructions {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.comparison-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.comparison-container {
  flex: 1;
  max-width: 1215px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.comparison-container img-comparison-slider {
  --divider-width: 4px;
  --divider-color: var(--secondary-color);
  --default-handle-opacity: 1;
  --default-handle-color: var(--secondary-color);
  width: 100%;
  aspect-ratio: 3/2;
  display: block;
  touch-action: none;
}

.comparison-container img-comparison-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.comparison-nav {
  background: var(--primary-color);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.comparison-nav:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.comparison-info {
  text-align: center;
  margin-bottom: 30px;
}

.comparison-labels {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 15px;
}

.label-before,
.label-after {
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 24px;
  border-radius: 20px;
}

.label-before {
  background: #e0e0e0;
  color: #555;
  transition: all 0.3s ease;
}

.label-after {
  background: #e0e0e0;
  color: #555;
  transition: all 0.3s ease;
}

.label-before.active {
  background: #888;
  color: white;
}

.label-after.active {
  background: var(--primary-color);
  color: white;
}

.comparison-caption {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.comparison-counter {
  color: #666;
  font-size: 1rem;
}

.comparison-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
  justify-content: center;
  flex-wrap: wrap;
}

.comparison-thumb {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  padding: 0;
  background: none;
  flex-shrink: 0;
}

.comparison-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-thumb:hover {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.comparison-thumb.active {
  border-color: var(--secondary-color);
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

@media (max-width: 768px) {
  .comparison-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  
  .comparison-container {
    width: 100%;
  }
  
  .comparison-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .comparison-wrapper .comparison-nav {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
  
  .comparison-wrapper .comparison-nav.prev {
    left: 5px;
  }
  
  .comparison-wrapper .comparison-nav.next {
    right: 5px;
  }
  
  .comparison-slideshow {
    padding: 40px 0;
  }
  
  .comparison-slideshow h2 {
    font-size: 1.8rem;
  }
  
  .comparison-thumbnails {
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding: 10px;
  }
  
  .comparison-thumb {
    width: 60px;
    height: 45px;
  }
}

.history-gallery,
.floorplans-gallery {
  padding: 80px 0;
}

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

.floorplans-section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.floorplans-description {
  color: #666;
  margin-bottom: 30px;
}

.history-section {
  margin-bottom: 80px;
}

.history-section:last-child {
  margin-bottom: 0;
}

.history-section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.history-description {
  color: #666;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .nav-links {
    gap: 20px;
  }
  
  .highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .amenities-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: var(--shadow);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  
  .nav-highlight {
    display: inline-block;
    width: auto;
  }

  .mobile-menu-btn {
    display: flex;
  }
  
  .logo-img {
    height: 45px;
  }
  
  .logo::after {
    display: none;
  }
  
  .header.scrolled .nav-container {
    padding: 4px 15px;
  }
  
  .header.scrolled .logo-img {
    height: 18px;
  }
  
  .header.scrolled .mobile-menu-btn {
    padding: 4px;
    gap: 3px;
  }
  
  .header.scrolled .mobile-menu-btn span {
    width: 18px;
    height: 2px;
  }
  
  .header.scrolled .mobile-center-title {
    display: block;
  }

  .hero {
    min-height: 80vh;
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .hero-stats .divider {
    display: none;
  }
  
  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .about,
  .gallery,
  .amenities,
  .availability,
  .location {
    padding: 60px 0;
  }

  .about h2,
  .gallery h2,
  .amenities h2,
  .availability h2,
  .location h2 {
    font-size: 1.8rem;
  }
  
  .about-description {
    font-size: 1rem;
    padding: 0 10px;
  }
  
  .highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .highlight-item {
    padding: 30px 20px;
  }

  .gallery-wrapper {
    padding: 0 50px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .amenities-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }
  
  .amenity-item {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
  
  .calendar-placeholder {
    padding: 50px 20px;
  }
  
  .map-container iframe {
    height: 350px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .footer-contact {
    text-align: center;
  }
  
  .page-hero {
    padding: 120px 0 60px;
  }
  
  .page-hero h1 {
    font-size: 2.2rem;
  }
  
  .history-gallery {
    padding: 50px 0;
  }
  
  .history-section {
    margin-bottom: 50px;
  }

  .lightbox-prev {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }

  .lightbox-next {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }

  .lightbox-close {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    top: 15px;
    right: 15px;
  }
}

.reviews-home {
  padding: 100px 0;
  background: linear-gradient(rgba(255, 249, 240, 0.5), rgba(255, 249, 240, 0.5)),
    url('/images/professional/beach-view-private-access-sunny-times-beach-house-cape-san-blas.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.reviews-home h2 {
  text-align: center;
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.reviews-home-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.reviews-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.review-card-link:hover .review-card {
  transform: translateY(-5px);
}

.review-header {
  margin-bottom: 15px;
}

.review-title {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.9rem;
  color: #888;
}

.review-date {
  font-weight: 500;
}

.review-author {
  font-style: italic;
}

.review-ratings {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rating-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.rating-label {
  color: #666;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 0.9rem;
}

.star.filled {
  color: var(--accent-color);
}

.star.empty {
  color: #ddd;
}

.review-description {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}

.reviews-link {
  text-align: center;
  margin-top: 40px;
}

.reviews-link a {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-light);
  font-weight: 700;
  text-decoration: none;
  padding: 14px 35px;
  border: none;
  border-radius: 30px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.reviews-link a:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

.reviews-page {
  padding: 80px 0;
}

.reviews-page-compact {
  padding: 40px 0;
}

.reviews-summary {
  text-align: center;
  margin-bottom: 50px;
}

.summary-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.overall-rating {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
}

.overall-rating .stars {
  font-size: 1.5rem;
}

.reviews-page .star {
  font-size: 1.1rem;
}

.review-highlight {
  animation: highlightPulse 2s ease-out;
  box-shadow: 0 0 0 4px var(--primary-color);
}

@keyframes highlightPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 180, 195, 0.6);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(0, 180, 195, 0.3);
  }
  100% {
    box-shadow: 0 0 0 4px var(--primary-color);
  }
}

.overall-rating .star {
  font-size: 1.5rem;
}

.review-count {
  font-size: 1.1rem;
  color: #666;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.reviews-list .review-card {
  padding: 35px;
}

.reviews-list .review-title {
  font-size: 1.3rem;
}

.no-reviews,
.reviews-error {
  text-align: center;
  padding: 60px;
  color: #888;
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reviews-home {
    padding: 60px 0;
    background-attachment: scroll;
    background-size: cover;
    background-position: center top;
  }
  
  .reviews-home h2 {
    font-size: 1.8rem;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .review-card {
    padding: 25px;
  }
  
  .reviews-page {
    padding: 50px 0;
  }
  
  .rating-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-tagline {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
  
  .about h2,
  .gallery h2,
  .amenities h2,
  .availability h2,
  .location h2 {
    font-size: 1.5rem;
  }
  
  .gallery-wrapper {
    padding: 0 40px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 85%;
    margin: 0 auto;
  }
  
  .gallery-item {
    transform: scale(0.85);
    transform-origin: center;
  }
  
  .gallery-nav {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .pagination-info {
    font-size: 0.9rem;
  }
  
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-brand h3 {
    font-size: 1.5rem;
  }
}

.seo-content {
  padding: 80px 0;
  background: var(--bg-cream);
}

.content-card {
  background: white;
  border: 4px solid var(--primary-color);
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.seo-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.seo-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.seo-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.seo-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.seo-feature-card {
  background: var(--text-light);
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.seo-feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.seo-feature-card p {
  color: #666;
  line-height: 1.7;
}

.seo-section {
  max-width: 800px;
  margin: 0 auto 50px;
}

.seo-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.seo-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin: 25px 0 10px;
}

.seo-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.seo-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.seo-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.seo-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 10px;
  background: var(--accent-color);
  border-radius: 50%;
}

.seo-list li strong {
  color: var(--primary-color);
}

.seo-image-feature {
  margin: 30px 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.seo-image-feature img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.seo-cta {
  max-width: 800px;
  margin: 60px auto 0;
  text-align: center;
  padding: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px;
  color: var(--text-light);
}

.seo-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.seo-cta p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0.95;
}

.seo-cta .btn-primary {
  background: var(--text-light);
  color: var(--primary-color);
  padding: 15px 40px;
  font-size: 1.1rem;
  border-radius: 30px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.seo-cta .btn-primary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .seo-intro h2 {
    font-size: 1.8rem;
  }
  
  .seo-features {
    grid-template-columns: 1fr;
  }
  
  .seo-section h2 {
    font-size: 1.6rem;
  }
  
  .seo-cta {
    padding: 35px 25px;
  }
  
  .seo-cta h2 {
    font-size: 1.6rem;
  }
}

/* Sunset/Bonfire Slideshow Styles */
.sunset-gallery-section {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.sunset-gallery-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.gallery-subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.sunset-slideshow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.sunset-slide-wrapper {
  flex: 1;
  max-width: 800px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.sunset-main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.sunset-nav {
  background: var(--secondary-color);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.sunset-nav:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

.sunset-thumbnails {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 15px 0;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
}

.sunset-thumb {
  width: 60px;
  height: 45px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition);
  border: 2px solid transparent;
}

.sunset-thumb:hover {
  opacity: 1;
}

.sunset-thumb.active {
  opacity: 1;
  border-color: var(--secondary-color);
}

.sunset-counter {
  color: #666;
  font-size: 0.95rem;
  margin-top: 10px;
}

/* Highlight box for bonfire rules */
.highlight-box {
  background: linear-gradient(135deg, rgba(255, 127, 80, 0.08), rgba(64, 224, 208, 0.08));
  padding: 40px;
  border-radius: 15px;
  border-left: 4px solid var(--secondary-color);
}

.highlight-box h2 {
  margin-bottom: 15px;
}

.highlight-box .seo-image-feature {
  margin-top: 30px;
  margin-bottom: 0;
  border: 3px solid white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.info-note {
  margin-top: 20px;
  font-style: italic;
  color: #666;
}

.info-note a {
  color: var(--secondary-color);
}

/* Service card styling */
.service-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.service-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.service-card h3 a:hover {
  color: var(--secondary-color);
}

.service-card p {
  color: #555;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .sunset-main-image {
    height: 300px;
  }
  
  .sunset-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .sunset-thumbnails {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
  
  .highlight-box {
    padding: 25px;
  }
}

.contact-section {
  padding: 80px 0;
  background: var(--bg-cream);
}

.contact-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.contact-intro p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--text-light);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  color: var(--text-light);
}

.contact-info-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.contact-info-content a,
.contact-info-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-content a:hover {
  color: var(--primary-color);
}

.management-note {
  margin-top: 20px;
  padding: 25px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  color: var(--text-light);
  text-align: center;
}

.management-note p {
  color: var(--text-light);
  margin: 5px 0;
}

.management-note strong {
  font-size: 1.1rem;
}

.contact-form-container {
  background: var(--text-light);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
}

.form-group label .required {
  color: var(--primary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.15);
}

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

.char-count {
  font-size: 0.85rem;
  color: #888;
  text-align: right;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  margin-top: 10px;
}

.form-success-message {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border: 1px solid #28a745;
  color: #155724;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 20px 15px;
  }
  
  .contact-intro p {
    font-size: 1rem;
  }
  
  .contact-wrapper {
    padding: 0;
  }
  
  .content-card {
    padding: 20px 15px;
  }
}

.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: 'Open Sans', sans-serif;
}

.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.chat-toggle.active {
  background: #555;
}

.chat-toggle svg {
  width: 28px;
  height: 28px;
  color: white;
}

.chat-window {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 380px;
  max-width: calc(100vw - 40px);
  height: 560px;
  max-height: calc(100vh - 120px);
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s ease;
}

.chat-window.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.chat-header-text h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.chat-status {
  font-size: 0.8rem;
  opacity: 0.9;
}

.chat-minimize {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.chat-minimize:hover {
  opacity: 1;
}

.chat-minimize svg {
  width: 20px;
  height: 20px;
  color: white;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f8f9fa;
}

.chat-message {
  display: flex;
  max-width: 85%;
}

.chat-message.user {
  align-self: flex-end;
}

.chat-message.assistant {
  align-self: flex-start;
}

.message-bubble {
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.chat-message.user .message-bubble {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-bottom-right-radius: 4px;
}

.chat-message.assistant .message-bubble {
  background: white;
  color: #333;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.typing-indicator .message-bubble {
  display: flex;
  gap: 4px;
  padding: 16px 20px;
}

.typing-indicator .dot {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  animation: typing 1.4s ease-in-out infinite;
}

.typing-indicator .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

.chat-input-area {
  padding: 16px;
  background: white;
  border-top: 1px solid #eee;
}

.chat-form {
  display: flex;
  gap: 10px;
}

.chat-form input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.chat-form input:focus {
  border-color: var(--primary-color);
}

.chat-send {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.chat-send:hover {
  transform: scale(1.05);
}

.chat-send svg {
  width: 20px;
  height: 20px;
  color: white;
}

@media (max-width: 480px) {
  .chat-widget {
    bottom: 15px;
    right: 15px;
  }
  
  .chat-window {
    width: calc(100vw - 30px);
    height: calc(100vh - 100px);
    bottom: 70px;
    right: -7px;
  }
  
  .chat-toggle {
    width: 55px;
    height: 55px;
  }
}

.booking-form-bubble {
  padding: 16px !important;
  max-width: 100% !important;
}

.booking-form-title {
  margin: 0 0 12px 0;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.chat-booking-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.booking-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
}

.booking-field input,
.booking-field textarea {
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-field input:focus,
.booking-field textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.booking-field input[type="date"] {
  cursor: pointer;
}

.booking-field textarea {
  resize: vertical;
  min-height: 50px;
}

.booking-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.booking-submit-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 4px;
}

.booking-submit-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.booking-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.booking-redirect-link {
  display: block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
}

.booking-redirect-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
  color: white;
}

@media (max-width: 400px) {
  .booking-dates {
    grid-template-columns: 1fr;
  }
}

.single-floorplan {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.floorplan-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floorplan-image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.quick-menu-bubble {
  padding: 12px !important;
}

.quick-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.quick-menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 1px solid #dee2e6;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 4px;
}

.quick-menu-btn:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.quick-menu-btn:hover .quick-menu-icon,
.quick-menu-btn:hover .quick-menu-label {
  color: white;
}

.quick-menu-icon {
  font-size: 1.3rem;
}

.quick-menu-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #495057;
  text-align: center;
}

.leave-review-section {
  padding: 30px 0;
  background: #f8f9fa;
}

.leave-review-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin: 0 auto;
  transition: transform 0.2s, box-shadow 0.2s;
}

.leave-review-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.leave-review-toggle .toggle-icon {
  font-size: 1.3rem;
  font-weight: bold;
  transition: transform 0.3s;
}

.leave-review-toggle.active .toggle-icon {
  transform: rotate(45deg);
}

.leave-review-form-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin 0.3s ease;
  margin-top: 0;
}

.leave-review-form-container.open {
  max-height: 1000px;
  margin-top: 25px;
}

.leave-review-form {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 0 auto;
}

.review-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.review-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 15px;
}

.review-form-field label {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.review-form-field input,
.review-form-field textarea {
  padding: 12px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.review-form-field input:focus,
.review-form-field textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.2);
}

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

.review-ratings-section {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.review-ratings-section h4 {
  margin: 0 0 15px 0;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.review-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.review-rating-row:last-child {
  border-bottom: none;
}

.review-rating-row label {
  font-weight: 500;
  color: #333;
  font-size: 0.9rem;
}

.star-rating {
  display: flex;
  gap: 4px;
}

.star-rating .star {
  font-size: 1.5rem;
  color: #ddd;
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
}

.star-rating .star:hover,
.star-rating .star.active {
  color: #ffc107;
  transform: scale(1.1);
}

.star-rating .star.hovered {
  color: #ffc107;
}

.submit-review-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.submit-review-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.submit-review-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.review-success-message {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 1px solid #28a745;
  color: #155724;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
}

@media (max-width: 600px) {
  .review-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .leave-review-form {
    padding: 20px;
  }
  
  .review-rating-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Blog Styles */
.blog-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url('/images/Sunset.Bonfire/sunset-in-the-surf-sunny-times-beach-house-cape-san-blas-cropped.jpg');
}

.blog-section {
  padding: 60px 0;
  background: var(--bg-cream);
  min-height: 60vh;
}

.blog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-section {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: var(--shadow);
}

.sidebar-section h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

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

.category-list li {
  margin-bottom: 8px;
}

.category-link {
  display: block;
  padding: 8px 12px;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 6px;
  transition: var(--transition);
}

.category-link:hover,
.category-link.active {
  background: var(--primary-color);
  color: white;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-link {
  display: inline-block;
  padding: 5px 12px;
  background: var(--bg-light);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.85rem;
  transition: var(--transition);
}

.tag-link:hover,
.tag-link.active {
  background: var(--secondary-color);
  color: white;
}

.explore-guides h3 {
  margin-bottom: 15px;
}

.guide-category {
  margin-bottom: 8px;
  border-radius: 6px;
  overflow: hidden;
}

.guide-category-header {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg-light);
  border: none;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.guide-category-header::after {
  content: '+';
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--secondary-color);
}

.guide-category-header.active::after {
  content: '-';
}

.guide-category-header:hover {
  background: #e0e0e0;
}

.guide-links {
  display: none;
  flex-direction: column;
  background: white;
  border: 1px solid var(--bg-light);
  border-top: none;
}

.guide-links.open {
  display: flex;
}

.guide-links a {
  padding: 8px 15px;
  font-size: 0.85rem;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--bg-light);
  transition: var(--transition);
}

.guide-links a:last-child {
  border-bottom: none;
}

.guide-links a:hover {
  background: var(--bg-light);
  color: var(--secondary-color);
}

.blog-main {
  min-width: 0;
}

.active-filters {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 20px;
  background: white;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: var(--shadow);
}

.clear-filter {
  padding: 5px 15px;
  background: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
}

.clear-filter:hover {
  opacity: 0.9;
}

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.blog-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.blog-category {
  background: var(--primary-color);
  color: white;
  padding: 3px 10px;
  border-radius: 4px;
}

.blog-date {
  color: #888;
}

.blog-card-content h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card-content h2 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-content h2 a:hover {
  color: var(--primary-color);
}

.blog-card-content p {
  color: #666;
  margin-bottom: 15px;
  flex-grow: 1;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 15px;
}

.blog-tag {
  font-size: 0.75rem;
  padding: 3px 8px;
  background: var(--bg-light);
  border-radius: 12px;
  color: #666;
}

.read-more {
  align-self: flex-start;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--secondary-color);
}

.no-posts {
  text-align: center;
  padding: 40px;
  color: #888;
  font-size: 1.1rem;
}

/* Blog Post Page */
.blog-post-hero {
  padding: 180px 0 80px;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.blog-post-hero h1 {
  font-size: 2.8rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.post-category {
  background: var(--primary-color);
  padding: 5px 15px;
  border-radius: 20px;
}

.post-date,
.post-author {
  opacity: 0.9;
}

.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.blog-post-content h2,
.blog-post-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.blog-post-content h3 {
  font-size: 1.4rem;
}

.blog-post-content p {
  margin-bottom: 20px;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.blog-post-content li {
  margin-bottom: 10px;
}

.blog-post-footer {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 30px 20px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post-tag {
  padding: 5px 15px;
  background: var(--bg-light);
  border-radius: 20px;
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.post-tag:hover {
  background: var(--primary-color);
  color: white;
}

.back-to-blog {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.back-to-blog:hover {
  color: var(--secondary-color);
}

@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
  
  .blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .sidebar-section {
    margin-bottom: 0;
  }
  
  .blog-card {
    grid-template-columns: 1fr;
  }
  
  .blog-card-image {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 600px) {
  .blog-sidebar {
    grid-template-columns: 1fr;
  }
  
  .blog-post-hero h1 {
    font-size: 2rem;
  }
  
  .blog-post-meta {
    flex-direction: column;
    gap: 10px;
  }
}
