
/* ===== PAGE LOADER ===== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-orbit {
  position: relative;
  width: 140px;
  height: 140px;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(10, 46, 31, 0.25);
}

.loader-plane-wrapper {
  position: absolute;
  inset: 0;
  animation: orbit 2s linear infinite;
  transform-origin: 50% 50%;
}

.loader-plane {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  color: hsl(45, 70%, 55%);
  filter: drop-shadow(0 0 6px hsla(45, 70%, 55%, 0.7));
}

@keyframes orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.loader-text {
  color: var(--primary, #0a2e1f);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: pulse-text 1.5s ease-in-out infinite;
}

@keyframes pulse-text {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* 
 * The Patriarch Group Adventures - Static Site Styles
 * Color Scheme: Forest Green, Gold Accents, Organic Feel
 */

/* ===== IMPORTS & VARIABLES ===== */
/* Google Fonts loaded via <link> in HTML for better performance */

:root {
  /* Primary: Deep Forest Green */
  --primary: hsl(145, 63%, 18%);
  --primary-foreground: hsl(60, 30%, 96%);
  
  /* Secondary: Sage / Moss */
  --secondary: hsl(140, 30%, 45%);
  --secondary-foreground: hsl(0, 0%, 100%);
  
  /* Accent: Gold/Brass */
  --accent: hsl(45, 70%, 55%);
  --accent-foreground: hsl(145, 63%, 18%);
  
  /* Backgrounds */
  --background: hsl(140, 35%, 92%);
  --foreground: hsl(145, 63%, 12%);
  
  /* Cards */
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(145, 63%, 12%);
  
  /* Muted */
  --muted: hsl(120, 10%, 90%);
  --muted-foreground: hsl(145, 20%, 40%);
  
  /* Borders */
  --border: hsl(145, 20%, 85%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Font Families */
  --font-sans: 'DM Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;
  
  /* Spacing */
  --container-max: 1200px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--primary);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.centered {
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 600px;
}

.section-header.centered p {
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: hsl(145, 63%, 22%);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--primary);
}

.btn-accent:hover {
  background-color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: white;
  color: white;
}

.btn-outline:hover {
  background-color: white;
  color: var(--primary);
}

.btn-outline-primary {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: white;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.navbar-cta {
  flex-shrink: 0;
}

.navbar-brand img {
  width: 56px;
  height: 56px;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-brand-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  transition: color 0.3s ease;
}

.navbar.scrolled .navbar-brand-text {
  color: var(--primary);
  text-shadow: none;
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex: 1;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.navbar.scrolled .nav-link {
  color: var(--foreground);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--accent);
}

.navbar-cta .btn {
  background-color: white;
  color: var(--primary);
}

.navbar.scrolled .navbar-cta .btn {
  background-color: var(--primary);
  color: white;
}

/* Mobile Nav */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: white;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-toggle span {
  background-color: var(--primary);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu .nav-link {
  display: block;
  color: var(--foreground);
  padding: 0.75rem 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 1rem;
  background-color: var(--primary);
  color: white;
}

@media (max-width: 992px) {
  .navbar-nav,
  .navbar-cta {
    display: none;
  }
  
  .navbar-toggle {
    display: block;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: black;
}

.hero.medium {
  min-height: 60vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent, rgba(0,0,0,0.2));
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  padding-top: 5rem;
  max-width: 900px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
  animation: fadeSlideUp 0.8s ease forwards;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 2rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  animation: fadeSlideUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeSlideUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 20;
}

.hero-indicator {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-indicator.active {
  width: 32px;
  background-color: white;
}

.hero-social {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 1rem;
  z-index: 20;
}

.hero-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.hero-social a:hover {
  background-color: var(--accent);
  color: var(--primary);
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== CARDS ===== */
.card {
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.card-img-wrapper {
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card:hover .card-img {
  transform: scale(1.1);
}

.card-body {
  padding: 1.5rem;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  background-color: hsla(45, 70%, 55%, 0.1);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.card:hover .card-title {
  color: var(--accent);
}

.card-text {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.card-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

/* Location Badge */
.location-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  position: relative;
  height: 16rem;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
}

.service-card-front,
.service-card-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  transition: opacity 0.3s ease;
}

.service-card-front {
  background: linear-gradient(135deg, var(--primary), hsl(145, 63%, 22%));
  color: white;
}

.service-card-back {
  background-color: rgba(21, 58, 33, 0.95);
  color: white;
  opacity: 0;
}

.service-card:hover .service-card-back {
  opacity: 1;
}

.service-card-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-card-title {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.service-card-back p {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===== FEATURES SECTION ===== */
.features {
  background-color: var(--primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  transform: skewX(12deg);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.features-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.features-content > p {
  color: var(--primary, #0a2e1f);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background-color: hsla(45, 70%, 55%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.feature-item h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: white;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.features-image {
  position: relative;
}

.features-image img {
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 1s ease;
}

.features-image:hover img {
  transform: scale(1.05);
}

.floating-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-xl);
  max-width: 280px;
}

.floating-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.avatar-group {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e5e5e5;
  border: 2px solid white;
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

.floating-card-header span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #666;
}

.floating-card p {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--primary);
}

/* ===== GRID LAYOUTS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ===== DESTINATION CARDS ===== */
.destination-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
}

.destination-card .card-img-wrapper {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: white;
}

.destination-card h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.destination-card p {
  color: var(--primary, #0a2e1f);
  transform: translateY(1rem);
  opacity: 0;
  transition: all 0.3s ease;
}

.destination-card:hover p {
  transform: translateY(0);
  opacity: 1;
}

.destination-card .discover-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  transform: translateY(1rem);
  opacity: 0;
  transition: all 0.3s ease 0.1s;
}

.destination-card:hover .discover-link {
  transform: translateY(0);
  opacity: 1;
}

/* ===== FILTER BUTTONS ===== */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid hsla(145, 63%, 18%, 0.2);
  background-color: white;
  color: var(--primary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--primary);
}

.filter-btn.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

/* ===== TOUR SECTION ===== */
.tour-item {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.tour-item:nth-child(even) {
  flex-direction: row-reverse;
}

.tour-image,
.tour-content {
  flex: 1;
}

.tour-image-wrapper {
  position: relative;
}

.tour-image-wrapper::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 100%;
  height: 100%;
  border: 2px solid hsla(145, 63%, 18%, 0.1);
  border-radius: 0.75rem;
  transition: transform 0.5s ease;
}

.tour-image-wrapper:hover::before {
  transform: translate(0.5rem, 0.5rem);
}

.tour-image img {
  border-radius: 0.75rem;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-image:hover img {
  transform: scale(1.02);
}

.tour-category {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.tour-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.tour-meta-item svg {
  color: var(--accent);
}

.tour-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.tour-highlights {
  margin-bottom: 2rem;
}

.tour-highlights h5 {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.highlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
}

.tour-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.tour-price-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.tour-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--accent);
}

@media (max-width: 992px) {
  .tour-item,
  .tour-item:nth-child(even) {
    flex-direction: column;
  }
  
  .tour-title {
    font-size: 2rem;
  }
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--foreground);
  background-color: white;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
}

.form-control::placeholder {
  color: hsla(145, 63%, 12%, 0.4);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-card {
  background-color: var(--muted);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Checkbox */
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: hsla(45, 70%, 55%, 0.1);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid hsla(45, 70%, 55%, 0.2);
}

.form-checkbox input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}

/* ===== CTA SECTION ===== */
.cta {
  text-align: center;
}

.cta-card {
  background-color: hsla(120, 10%, 90%, 0.3);
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--primary);
  color: white;
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-brand img {
  width: 64px;
  height: 64px;
}

.footer-brand-text h3 {
  font-size: 1.5rem;
  color: white;
}

.footer-brand-text p {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--accent);
  color: var(--primary);
}

.footer h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-contact svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.25rem;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.875rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.newsletter-form button {
  width: 100%;
  padding: 0.75rem;
  border-radius: 9999px;
  border: none;
  background-color: var(--accent);
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

/* ===== TEAM CARDS ===== */
.team-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

.team-card-image {
  height: 200px;
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-body {
  padding: 1.5rem;
}

.team-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.team-card .role {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== VALUE CARDS ===== */
.value-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

.value-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--accent);
}

.value-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-item svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.25rem;
}

.contact-info-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-info-item p {
  color: hsla(145, 63%, 12%, 0.7);
}

/* ===== HOTEL CARDS ===== */
.hotel-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hotel-card:hover,
.hotel-card.selected {
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.hotel-card-image {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.hotel-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-card-image img {
  transform: scale(1.05);
}

.hotel-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hotel-card-body {
  padding: 1.5rem;
}

.hotel-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.hotel-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.hotel-location svg {
  color: var(--accent);
}

.hotel-card p {
  font-size: 0.875rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.hotel-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  background-color: hsla(45, 70%, 55%, 0.1);
  color: var(--accent);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.hotel-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.hotel-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent);
}

.hotel-price span {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== INFO CARDS ===== */
.info-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.info-card svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin: 0 auto 1rem;
}

.info-card h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.info-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--accent);
  color: var(--primary);
  transform: translateY(-4px);
}

/* ===== REVIEW SECTION ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.review-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: hsla(45, 70%, 55%, 0.3);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.review-header h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  color: var(--accent);
}

.review-rating {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-left: 0.5rem;
}

.review-card p {
  color: hsla(145, 63%, 12%, 0.7);
  font-style: italic;
  line-height: 1.6;
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}

.toast {
  background-color: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideUp 0.3s ease;
}

.toast.success {
  background-color: hsl(145, 63%, 30%);
}

.toast.error {
  background-color: hsl(0, 84%, 50%);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-header h3 {
  font-size: 1.5rem;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background-color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.modal-close:hover {
  background-color: var(--border);
}

/* ===== SEARCH BAR ===== */
.search-bar {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  margin-top: 3rem;
}

.search-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: end;
}

@media (max-width: 992px) {
  .search-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .search-bar-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== STORY SECTION ===== */
.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-content p {
  font-size: 1.125rem;
  color: var(--foreground);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ===== PROCESS SECTION ===== */
.process-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.process-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.process-number.active {
  background-color: var(--accent);
  color: var(--primary);
}

.process-number:not(.active) {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.process-content h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: white;
  margin-bottom: 0.5rem;
}

.process-content p {
  color: var(--primary, #0a2e1f);
}

/* ===== RESPONSIVE VISIBILITY ===== */
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .floating-card {
    display: none;
  }
}

