/* Base Styles */
:root {
  /* Colors */
  --primary: #1A1F2C;
  --primary-light: rgba(26, 31, 44, 0.8);
  --secondary: #F9F7F4;
  --accent: #1A85FF;
  --ocean-dark: #0866B3;
  --ocean-light: #E1F0FF;
  --coral-light: #FFE8E0;
  --coral-dark: #FF5A31;
  --sand-light: #F9F7F4;
  --sand-dark: #E5E1D9;
  --text-muted: #6B7280;
  --border: #E5E1D9;
  --white: #FFFFFF;
  --black: #000000;
  --overlay: rgba(0, 0, 0, 0.4);
  --overlay-light: rgba(0, 0, 0, 0.1);
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Borders */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 999px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--primary);
  background-color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea {
  font-family: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* Typography Utility Classes */
.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto var(--spacing-xl);
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  margin-bottom: var(--spacing-md);
  border-radius: var(--radius-full);
  background-color: var(--ocean-light);
  color: var(--ocean-dark);
  font-size: 0.875rem;
  font-weight: 500;
}

.gallery-badge {
  background-color: var(--coral-light);
  color: var(--coral-dark);
}

.contact-badge {
  background-color: var(--coral-light);
  color: var(--coral-dark);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

/* Button Styles */
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: var(--white);
  color: var(--primary);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.primary-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.03);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.03);
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--primary-light);
  transform: scale(1.01);
}

.newsletter-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--ocean-dark);
  color: var(--white);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  margin-top: var(--spacing-sm);
}

.newsletter-btn:hover {
  background-color: rgba(8, 102, 179, 0.9);
}

.book-now-btn {
  display: none;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.book-now-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .book-now-btn {
  color: var(--primary);
  border-color: var(--primary);
}

.navbar.scrolled .book-now-btn:hover {
  background-color: rgba(26, 31, 44, 0.1);
}

.mobile-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--spacing-lg);
  padding: 0.75rem 1.5rem;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 500;
  border-radius: var(--radius-md);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 0;
  z-index: 100;
  transition: all 0.5s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 0.75rem 0;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 101;
  gap: 0.5rem;
}

.logo-circle {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  border-radius: 50%;
}

.navbar.scrolled .logo-circle {
  background-color: rgba(225, 240, 255, 0.7);
}

.logo-letter {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ocean-dark);
}


.site-name {
  font-size: 1.5rem;
  color: var(--white);
  transition: color 0.3s ease;
}

.navbar.scrolled .site-name {
  color: var(--primary);
}

.accent-dot {
  color: var(--ocean-dark);
}

.desktop-nav {
  display: none;
}

.nav-link {
  margin: 0 1rem;
  font-size: 0.875rem;
  color: var(--white);
  position: relative;
  transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.mobile-menu-toggle {
  z-index: 101;
  width: 2rem;
  height: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 1.5rem;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.navbar.scrolled .menu-icon,
.navbar.scrolled .menu-icon::before,
.navbar.scrolled .menu-icon::after {
  background-color: var(--primary);
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
}

.menu-icon::before {
  transform: translateY(-6px);
}

.menu-icon::after {
  transform: translateY(6px);
}

.mobile-menu-open .menu-icon {
  background-color: transparent;
}

.mobile-menu-open .menu-icon::before {
  transform: rotate(45deg);
  background-color: var(--primary);
}

.mobile-menu-open .menu-icon::after {
  transform: rotate(-45deg);
  background-color: var(--primary);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 100;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0.75rem 0;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--spacing-lg);
  color: var(--white);
}

.badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  margin-bottom: var(--spacing-lg);
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-lg);
  animation: fadeIn 1s ease 0.1s forwards;
  opacity: 0;
}

.hero-description {
  font-size: 1.125rem;
  max-width: 650px;
  margin-bottom: var(--spacing-xl);
  color: rgba(255, 255, 255, 0.8);
  animation: fadeIn 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  animation: fadeIn 1s ease 0.3s forwards;
  opacity: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-indicator a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
  text-decoration: none;
}

.scroll-indicator a:hover {
  color: var(--white);
}

.scroll-indicator span {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.chevron-down {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
  margin: 0 auto;
}


/* Features Section */
.features {
  padding: var(--spacing-3xl) 0;
  background-color: var(--sand-light);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.feature-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background-color: rgba(225, 240, 255, 0.5);
  margin-bottom: var(--spacing-md);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

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

/* Gallery Section */
.gallery {
  padding: var(--spacing-3xl) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
}

.gallery-item:hover::after {
  background-color: rgba(0, 0, 0, 0.2);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  width: 100%;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  animation: fadeIn 0.3s ease;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  color: var(--white);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background-color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

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

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

/* Location Section */
.location {
  padding: var(--spacing-3xl) 0;
  background-color: rgba(225, 240, 255, 0.5);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
}

.location-description {
  color: var(--text-muted);
  margin-bottom: var(--spacing-xl);
}

.location-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.location-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
}

.location-feature-icon {
  padding: 0.5rem;
  border-radius: var(--radius-md);
  background-color: var(--ocean-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-feature-text h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.location-feature-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.location-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.location-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-lg);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--white);
}

.location-pin {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.location-image-overlay p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Contact Section */
.contact {
  padding: var(--spacing-3xl) 0;
  background-color: var(--sand-light);
}

.contact-container.two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
}

.contact-container.single-column {
  display: flex;
  justify-content: center;
}

  .contact-container.single-column .contact-form-container {
  width: 100%;
  max-width: 800px; /* Adjust as needed */
}

@media (min-width: 768px) {
  .contact-container.two-column {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
}

.contact-methods {
  margin-bottom: var(--spacing-xl);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background-color: rgba(225, 240, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean-dark);
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-value {
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: var(--ocean-dark);
}

.booking-periods {
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--border);
}

.booking-periods h4 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}

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

.booking-periods li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--ocean-dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ocean-dark);
  box-shadow: 0 0 0 2px rgba(8, 102, 179, 0.1);
}

.input-with-icon {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.input-with-icon:focus-within {
  border-color: var(--ocean-dark);
  box-shadow: 0 0 0 2px rgba(8, 102, 179, 0.1);
}

.input-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-right: 1px solid var(--border);
  height: 100%;
}

.input-with-icon input {
  flex: 1;
  border: none;
  padding: 0.75rem 1rem;
}

.input-with-icon input:focus {
  box-shadow: none;
  outline: none;
}

.form-status {
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  margin-top: var(--spacing-md);
  display: none;
}

.success-message {
  background-color: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.2);
  color: rgb(22, 163, 74);
}

.error-message {
  background-color: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: rgb(220, 38, 38);
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--white);
  padding: var(--spacing-2xl) 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
}

.footer-about {
  margin-bottom: var(--spacing-lg);
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-lg);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-heading {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-lg);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-md);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
}

.newsletter-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: var(--white);
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  border-color: var(--ocean-light);
  box-shadow: 0 0 0 2px rgba(8, 102, 179, 0.2);
}

.footer-copyright {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Icon styles */
.bed-icon, .bath-icon, .home-icon, .trees-icon, .waves-icon, .map-pin-icon, .wifi-icon, .coffee-icon, .users-icon, .navigation-icon, .compass-icon, .anchor-icon, .phone-icon, .mail-icon, .calendar-icon, .send-icon, .percent-icon, .user-check-icon, .gift-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.bed-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230866B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 9V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v3'/%3E%3Cpath d='M2 11v3a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M4 9h16a2 2 0 0 1 2 2v1H2v-1a2 2 0 0 1 2-2Z'/%3E%3Cpath d='M4 18v2'/%3E%3Cpath d='M20 18v2'/%3E%3C/svg%3E");
}

.bath-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230866B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6 6.5 3.5a1.5 1.5 0 0 0-1-.5C4.683 3 4 3.683 4 4.5V17a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5'/%3E%3Cline x1='10' y1='5' x2='8' y2='7'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cline x1='7' y1='19' x2='7' y2='21'/%3E%3Cline x1='17' y1='19' x2='17' y2='21'/%3E%3C/svg%3E");
}

.home-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230866B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E");
}

.trees-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230866B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 10v.2A3 3 0 0 1 8.9 16v0H5v0h0a3 3 0 0 1-1-5.8V10a3 3 0 0 1 6 0Z'/%3E%3Cpath d='M7 16v6'/%3E%3Cpath d='M13 19v3'/%3E%3Cpath d='M12 19h8.3a1 1 0 0 0 .7-1.7L18 14h.3a1 1 0 0 0 .7-1.7L16 9h.2a1 1 0 0 0 .8-1.7L13 3l-4 4.3'/%3E%3C/svg%3E");
}

.waves-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230866B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 6c.6.5 1.2 1 2.5 1C7 7 7 5 9.5 5c2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1'/%3E%3Cpath d='M2 12c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1'/%3E%3Cpath d='M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1'/%3E%3C/svg%3E");
}

.map-pin-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230866B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.wifi-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230866B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13a10 10 0 0 1 14 0'/%3E%3Cpath d='M8.5 16.5a5 5 0 0 1 7 0'/%3E%3Cpath d='M2 8.82a15 15 0 0 1 20 0'/%3E%3Cline x1='12' y1='20' x2='12' y2='20'/%3E%3C/svg%3E");
}

.coffee-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230866B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 8h1a4 4 0 1 1 0 8h-1'/%3E%3Cpath d='M3 8h14v9a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4Z'/%3E%3Cline x1='6' y1='2' x2='6' y2='4'/%3E%3Cline x1='10' y1='2' x2='10' y2='4'/%3E%3Cline x1='14' y1='2' x2='14' y2='4'/%3E%3C/svg%3E");
}

.users-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230866B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.navigation-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230866B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='3 11 22 2 13 21 11 13 3 11'/%3E%3C/svg%3E");
}

.compass-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230866B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolygon points='16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76'/%3E%3C/svg%3E");
}

.anchor-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230866B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='5' r='3'/%3E%3Cline x1='12' y1='22' x2='12' y2='8'/%3E%3Cpath d='M5 12H2a10 10 0 0 0 20 0h-3'/%3E%3C/svg%3E");
}

.phone-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230866B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}
.whatsapp-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'/%3E%3C/svg%3E");
}

.mail-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230866B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E");
}

.calendar-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230866B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='18' height='18' x='3' y='4' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
}

.send-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m22 2-7 20-4-9-9-4Z'/%3E%3Cpath d='M22 2 11 13'/%3E%3C/svg%3E");
}

/* For social icons */
.instagram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='20' x='2' y='2' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.facebook {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.tiktok {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 16V8a4 4 0 0 0-4-4h-4v12a4 4 0 1 1-4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(-10px) rotate(45deg);
  }
  60% {
    transform: translateY(-5px) rotate(45deg);
  }
}

/* Media Queries */
@media (min-width: 640px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-buttons {
    flex-direction: row;
  }
  
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item-large {
    grid-column: span 2;
  }
  
  .location-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .location-image-container {
    height: 400px;
  }
  
  .contact-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
  
  .book-now-btn {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

/* For print */
@media print {
  .navbar,
  .mobile-menu-toggle,
  .scroll-indicator,
  .lightbox,
  .form-status {
    display: none !important;
  }
  
  .hero,
  .features,
  .gallery,
  .location,
  .contact {
    page-break-inside: avoid;
  }
}

/* FAQ Section */
.faq-section {
  padding: var(--spacing-3xl) 0;
  background-color: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--spacing-lg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: var(--spacing-lg);
  margin: 0;
  background-color: var(--sand-light);
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--sand-dark);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: var(--spacing-lg);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ocean-dark);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: 0 var(--spacing-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: var(--spacing-lg);
  max-height: 200px;
}

.faq-answer p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.percent-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230866B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='19' y1='5' x2='5' y2='19'/%3E%3Ccircle cx='6.5' cy='6.5' r='2.5'/%3E%3Ccircle cx='17.5' cy='17.5' r='2.5'/%3E%3C/svg%3E");
}

.user-check-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230866B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='8.5' cy='7' r='4'/%3E%3Cpolyline points='17 11 19 13 23 9'/%3E%3C/svg%3E");
}

.gift-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230866B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 12 20 22 4 22 4 12'/%3E%3Crect x='2' y='7' width='20' height='5'/%3E%3Cline x1='12' y1='22' x2='12' y2='7'/%3E%3Cpath d='M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z'/%3E%3Cpath d='M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z'/%3E%3C/svg%3E");
}
.whatsapp-float {
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  cursor: pointer;
}
.whatsapp-float img {
  width: 36px;
  height: 36px;
}
.whatsapp-float:hover {
  background-color: #128c7e;
}

/* ========================================
   BOOKING FORM STYLES
   ======================================== */

/* Elegant Booking Form Styles with Improved Visibility */

/* All form controls - with consistent stroke/border but no color values */
.contact-form input,
.contact-form textarea,
.contact-form select {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6); /* Keeping border for structure */
  padding: 12px 15px;
  width: 100%;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Improved focus states - keeping border highlight but removing background */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  background-color: transparent;
  border-color: rgba(212, 175, 55, 0.8);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

/* Form groups and layout */
.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

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

/* Improved label visibility */
.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #000000; /* Dark label text */
  font-weight: 600;
  font-size: 16px;
}

/* Section headings */
.contact-form h4 {
  color: #000000; /* Dark heading text */
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  font-size: 18px;
}

.contact-form h4:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #d4af37;
}

/* Card heading */
.contact-card h3 {
  color: #000000; /* Dark heading */
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Child age container */
#childAgesContainer {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 15px;
  border-radius: 6px;
  margin-top: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.child-ages-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 15px;
}

/* Submit button */
.submit-btn {
  background-color: #d4af37;
  color: #000000;
  font-weight: bold;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 16px;
}

.submit-btn:hover {
  background-color: #c09c25;
}

/* Button icon */
.submit-btn .send-icon {
  display: inline-block;
  margin-right: 5px;
}

/* Icon containers - ensure consistent appearance with other fields */
.input-with-icon {
  position: relative;
}

.input-with-icon .input-icon {
  position: absolute;
  left: 14px; /* Adjusted for new border */
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.7;
}

.input-with-icon input {
  padding-left: 45px;
}

/* Customized date input with no specific color values */
.contact-form input[type="date"] {
  font-weight: 600; /* Bolder text */
}

/* Make date calendar icon visible */
.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: none; /* Remove invert filter */
  opacity: 1; /* Full opacity */
  background-color: rgba(255, 255, 255, 0.2); /* Light background */
  padding: 5px;
  border-radius: 3px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

/* Date field text - removing color values */
.contact-form input[type="date"]::-webkit-datetime-edit {
  font-weight: 600;
}

/* Date field styling handled by parent selectors */

/* For number inputs - ensure consistent border/stroke */
.number-input-container {
  position: relative;
}

.contact-form input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
  font-weight: 600; /* Bolder text */
}

.contact-form input[type="number"]::-webkit-inner-spin-button,
.contact-form input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.number-controls {
  position: absolute;
  right: 12px; /* Adjusted for new border */
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 2;
}

/* Number control buttons - keeping structure but removing colors */
.number-control-btn {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  border-radius: 3px;
  transition: background-color 0.2s;
}

.number-control-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Make placeholders visible but without specifying color */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  opacity: 0.6;
}

/* Responsive layout for booking forms */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}
