/* Global styles */
:root {
  --background: #ffffff;
  --panel: rgba(255, 255, 255, 0.95);
  --text: #1a1a1a;
  --muted: rgba(26, 26, 26, 0.7);
  --brand: #2e7d32; /* Forest green */
  --brand-2: #6b8e23; /* Olive */
  --accent: #90EE90; /* Light green accent */
  --sand: #f4e1c1;
  --radius: 14px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --max-width: 1120px;
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 1.5rem;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(248, 249, 250, 0.95), rgba(248, 249, 250, 0.85));
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
  padding: 0 1.5rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 150ms ease;
}

.logo img {
  height: 40px;
  width: auto;
  max-width: 150px;
}

.logo:hover {
  transform: scale(1.05);
}

.logo span {
  color: var(--brand);
}

.nav {
  position: relative;
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  max-width: 400px;
  margin: 0 1.5rem;
  min-width: 200px;
}

.search-input {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: all 200ms ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--brand);
  background: white;
  box-shadow: 0 2px 8px rgba(255, 190, 11, 0.2);
}

.search-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 200ms ease;
}

.search-btn:hover {
  transform: scale(1.1);
}

.search-results {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 50;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: none;
  width: 100%;
  min-width: 250px;
}

.search-results.active {
  display: block;
}

.search-result-item {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: background 150ms ease;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: rgba(255, 190, 11, 0.1);
}

.search-result-item a {
  text-decoration: none;
  color: var(--text);
  display: block;
}

.search-result-title {
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 0.25rem;
}

.search-result-preview {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.3;
}

.nav-list {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-list a {
  font-weight: 600;
  padding: 0.5rem 0.25rem;
  border-radius: 999px;
  transition: all 300ms ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.nav-list a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 300ms ease;
}

.nav-list a:hover::before,
.nav-list a:focus::before,
.nav-list a.active::before {
  width: 100%;
}

.nav-list a:hover,
.nav-list a:focus,
.nav-list a.active {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  outline: none;
}

.nav-list a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 999px;
  transition: background 150ms ease;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.nav-toggle:hover {
  background: rgba(0, 0, 0, 0.08);
}

.nav-toggle:active {
  background: rgba(0, 0, 0, 0.12);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 1.5rem;
  background: var(--text);
  border-radius: 999px;
  margin: 0.3rem 0;
  transition: all 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 4.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  text-align: center;
  padding: 3.5rem 1.5rem;
  border-radius: var(--radius);
  background: transparent;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
  margin: 0 0 1.75rem;
  color: var(--muted);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.btn {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #0b0b12;
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.08);
  color: var(--text);
}

.btn-accent {
  background: linear-gradient(130deg, var(--accent), var(--brand));
  color: #0b0b12;
}

.section {
  padding: 5rem 0;
  position: relative;
  background-size: cover;
  background-attachment: fixed;
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin: 0 0 1rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 2rem;
}

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

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.feature-card {
  background: var(--panel);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  max-width: 100%;
  overflow: hidden;
}

.feature-card h3 {
  margin-top: 0;
}

/* Gallery styles */
.gallery {
  display: grid;
  gap: 1.25rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 200ms ease, box-shadow 200ms ease;
  aspect-ratio: 1;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

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

/* Team member styles */
.team-member {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.team-member-image {
  width: 140px;
  height: 140px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--brand);
  box-shadow: 0 0 20px rgba(255, 190, 11, 0.3);
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  margin: 1rem 0 0.25rem;
  font-size: 1.2rem;
}

.team-member .title {
  color: var(--brand);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.team-member p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.highlight {
  background: rgba(0, 0, 0, 0.05);
}

.highlight-grid {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.highlight-media {
  flex: 1;
  display: flex;
  justify-content: center;
}

.highlight-media img {
  /* width: 100%; */
  height: auto;
  min-height: 350px;
  object-fit: cover;
  border-radius: var(--radius);
}

.highlight-content {
  flex: 1;
}

.highlight-content h2 {
  margin-top: 0;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.checklist li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.85rem;
}

.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
}

/* Itineraries & pricing */
.itinerary {
  display: grid;
  gap: 1.5rem;
}

.itinerary-day {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.itinerary-day h3 {
  margin-top: 0;
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.pricing-card h3 {
  margin-top: 0;
}

.pricing-card p {
  margin: 0.75rem 0;
  color: var(--muted);
}

.pricing-card .amount {
  font-size: 2.1rem;
  font-weight: 700;
  margin-top: 0.5rem;
  color: var(--brand);
}

.gallery-video {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.9);
}

.testimonials {
  background: rgba(255, 255, 255, 0.95);
}

.testimonial {
  background: rgba(255, 255, 255, 0.95);
  padding: 1.8rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
}

.testimonial footer {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta {
  background: linear-gradient(120deg, rgba(144, 238, 144, 0.92), rgba(46, 125, 50, 0.85));
  color: #0b0b12;
}

.cta-inner {
  text-align: center;
  padding: 4rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 3rem 0 1.5rem;
  color: #1a1a1a;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(248, 249, 250, 0.95);
}

.footer-inner {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-start;
  max-width: 100vw;
}

.footer-brand p {
  margin: 1.1rem 0 0;
  color: var(--muted);
  max-width: 300px;
}

.footer-links h3,
.footer-contact h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(26, 26, 26, 0.75);
  transition: color 150ms ease;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-social h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
}

.footer-social li {
  margin: 0;
}

.footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.1);
  color: var(--text);
  text-align: center;
  line-height: 40px;
  font-size: 1.2rem;
  transition: all 200ms ease;
}

.footer-social a:hover {
  background: var(--brand);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    max-width: 100vw;
  }
}

/* Form styles */
.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: #1a1a1a;
}

.contact-form input,
.contact-form textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
}

.contact-form select {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form select option {
  background: #ffffff;
  color: #1a1a1a;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(255, 190, 11, 0.9);
  box-shadow: 0 0 0 3px rgba(255, 190, 11, 0.25);
}

.contact-form .note {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.7);
}

/* Breadcrumb Navigation */
.breadcrumb {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb li:not(:last-child)::after {
  content: '>';
  color: rgba(26, 26, 26, 0.6);
  font-weight: bold;
}

.breadcrumb a {
  color: rgba(26, 26, 26, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--brand);
}

.breadcrumb span {
  color: rgba(26, 26, 26, 0.9);
  font-weight: 500;
}
.contact-form input.error,
.contact-form textarea.error,
.contact-form select.error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

.field-error {
  font-size: 0.875rem;
  color: #fca5a5;
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.field-error::before {
  content: '⚠';
  font-weight: bold;
}

.contact-form button[type="submit"] {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #0b0b12;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.contact-form button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-form button[type="submit"]:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 190, 11, 0.4);
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .highlight-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 1rem;
    min-height: 4rem;
    flex-wrap: wrap;
  }

  .search-bar {
    max-width: 180px;
    margin: 0 0.5rem;
    min-width: 150px;
  }

  .search-input {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
  }

  .search-btn {
    font-size: 1rem;
    padding: 0.4rem;
  }

  .logo {
    font-size: 1.1rem;
    gap: 0.35rem;
    order: 1;
  }

  .logo img {
    height: 35px;
  }

  .search-bar {
    order: 2;
  }

  .nav {
    order: 3;
  }

  .nav-toggle {
    display: inline-flex;
    padding: 0.6rem;
  }

  .nav-list {
    position: fixed;
    right: 0;
    top: 4rem;
    margin: 0;
    padding: 1.5rem 1.25rem;
    width: 100%;
    max-width: 300px;
    flex-direction: column;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
  }

  .nav-list.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-list li {
    padding: 0.5rem 0;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 300ms ease;
    position: relative;
  }

  .nav-list a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width 300ms ease;
  }

  .nav-list a:hover::before,
  .nav-list a.active::before {
    width: calc(100% - 2rem);
  }

  .nav-list a:hover,
  .nav-list a.active {
    background: rgba(255, 190, 11, 0.15);
    transform: translateX(4px);
  }
}

@media (max-width: 500px) {
  .header-inner {
    padding: 0 0.75rem;
    gap: 0.5rem;
  }

  .search-bar {
    max-width: 140px;
    margin: 0 0.25rem;
    min-width: 120px;
  }

  .search-input {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }

  .search-btn {
    font-size: 0.9rem;
    padding: 0.3rem;
    min-width: 32px;
    min-height: 32px;
  }

  .logo {
    font-size: 1rem;
    order: 1;
  }

  .logo img {
    height: 30px;
  }

  .nav-list {
    max-width: 100vw;
    right: 0;
    overflow-x: hidden;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-item {
    aspect-ratio: 1;
    gap: 0.75rem;
  }

  .team-member-image {
    width: 110px;
    height: 110px;
  }

  .team-member h3 {
    font-size: 1rem;
  }

  .logo {
    font-size: 1rem;
  }

  .logo img {
    height: 30px;
  }

  .section {
    padding: 3rem 0;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .hero-content {
    padding: 2rem 1rem;
  }

  .hero-content h1 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  }

  .nav-list {
    max-width: 100vw;
    right: 0;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 380px) {
  .header-inner {
    padding: 0 0.5rem;
    gap: 0.25rem;
  }

  .search-bar {
    max-width: 120px;
    margin: 0 0.25rem;
    min-width: 100px;
  }

  .search-input {
    font-size: 0.75rem;
    padding: 0.35rem 0.5rem;
  }

  .search-btn {
    font-size: 0.85rem;
    padding: 0.25rem;
    min-width: 28px;
    min-height: 28px;
  }

  .logo {
    font-size: 0.9rem;
    order: 1;
  }

  .logo img {
    height: 25px;
  }

  .hero-content h1 {
    font-size: 1.4rem;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn {
    width: 100%;
  }
}

/* Slider Styles */
.slider-section {
  padding: 2rem 0;
  background: var(--background);
}

.slider {
  width: min(100%, 1100px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  max-width: 100vw;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  position: relative;
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: min(60vh, 600px);
  object-fit: cover;
  display: block;
}

.slide-content {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1.5rem 1rem;
}

.slide-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.slide-content p {
  margin: 0;
  opacity: 0.9;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text);
  transition: background 0.3s ease;
  z-index: 15;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 1);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 15;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: rgba(255, 255, 255, 1);
}

@media (max-width: 768px) {
  .slider {
    max-width: 100%;
  }

  .slide img {
    height: min(40vh, 420px);
  }

  .slide-content {
    padding: 1.5rem 1rem 0.75rem;
    bottom: 35px;
  }

  .slide-content h3 {
    font-size: 1.25rem;
  }
}

/* Featured Video Section */
.featured-video-section {
  padding: 2rem 0;
  background: var(--background);
}

.full-video {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Reviews & Ratings */
.reviews-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  max-width: 100vw;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 200ms ease;
}

.review-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.review-info strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}

.review-date {
  font-size: 0.85rem;
  color: var(--muted);
  display: block;
  margin-top: 0.25rem;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.stars {
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.rating-number {
  font-weight: 600;
  color: var(--brand);
  font-size: 0.95rem;
}

.review-text {
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.review-form-container {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.review-form-container h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  color: var(--text);
}

.review-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text);
}

.form-group input[type="text"],
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 150ms ease;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 190, 11, 0.1);
}

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

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  width: fit-content;
  gap: 0.5rem;
}

.star-rating input {
  display: none;
}

.star-rating label {
  font-size: 2rem;
  cursor: pointer;
  color: #ddd;
  transition: all 150ms ease;
  margin: 0;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: var(--brand);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .reviews-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .review-header {
    flex-direction: column;
  }

  .review-form-container {
    padding: 1.5rem;
  }
}

.booking-btn {
  background: linear-gradient(120deg, var(--accent), var(--brand));
  color: #0b0b12;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 999px;
  padding: 1rem 2rem;
  margin-top: 1rem;
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.15);
  transition: background 0.2s, transform 0.2s;
}
.booking-btn:hover {
  background: linear-gradient(120deg, var(--brand), var(--accent));
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/* Floating WhatsApp button (fixed while scrolling) */
.whatsapp-float {
  position: fixed;
  right: 20px;
  /* Keep the button just below the sticky navbar */
  top: calc(4.5rem + 16px);
  bottom: auto;
  /* Icon markup is in the HTML inside: <a class="whatsapp-float"> ... </a>
     Replace the inline SVG there with your own <img src="..."> if needed. */
  z-index: 35;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  display: block;
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 12px;
    top: calc(4rem + 16px);
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 500px) {
  .whatsapp-float {
    right: 10px;
    top: calc(4rem + 12px);
    width: 48px;
    height: 48px;
  }
  
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 380px) {
  .whatsapp-float {
    right: 8px;
    top: calc(4rem + 10px);
    width: 44px;
    height: 44px;
  }
  
  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }
}
