/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-900: #064e3b;
  --emerald-950: #022c22;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-900: #0f172a;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #FDFDFD;
  color: #0f172a;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background-color: var(--emerald-100);
  color: var(--emerald-900);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navigation Styles */
nav {
  position: fixed;
  width: 100%;
  z-index: 50;
  transition: all 0.5s ease;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  padding: 1rem 0;
}

nav:not(.scrolled) {
  background: transparent;
  padding: 2rem 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  background-color: var(--emerald-600);
  padding: 0.625rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  transform: rotate(3deg);
}

.logo-icon svg {
  color: white;
  width: 1.5rem;
  height: 1.5rem;
  transform: rotate(-3deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

nav:not(.scrolled) .logo-title {
  color: white;
}

nav.scrolled .logo-title {
  color: var(--emerald-900);
}

.logo-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
}

nav:not(.scrolled) .logo-subtitle {
  color: var(--emerald-400);
}

nav.scrolled .logo-subtitle {
  color: var(--emerald-600);
}

.desktop-menu {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

.desktop-menu a {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s ease;
}

nav:not(.scrolled) .desktop-menu a {
  color: rgba(255, 255, 255, 0.9);
}

nav.scrolled .desktop-menu a {
  color: var(--slate-600);
}

.desktop-menu a:hover {
  color: var(--emerald-500);
}

.btn-primary {
  background-color: var(--emerald-600);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--emerald-700);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

nav:not(.scrolled) .mobile-menu-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

nav.scrolled .mobile-menu-btn {
  background: var(--slate-100);
}

.mobile-sidebar {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 70;
  padding: 2.5rem;
  display: none;
  flex-direction: column;
  gap: 2.5rem;
  animation: slideIn 0.3s ease;
}

.mobile-sidebar.active {
  display: flex;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-close {
  padding: 0.5rem;
  background: var(--slate-100);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.5rem;
  font-weight: 900;
}

.mobile-menu-links a {
  color: var(--emerald-950);
  text-decoration: none;
}

.mobile-cta {
  background-color: var(--emerald-600);
  color: white;
  width: 100%;
  padding: 1.25rem;
  border-radius: 1.5rem;
  font-weight: 900;
  margin-top: auto;
  border: none;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
  cursor: pointer;
}

/* Floating Concierge Button */
.floating-concierge {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 60;
  background-color: var(--emerald-600);
  color: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.floating-concierge:hover {
  background-color: var(--emerald-700);
  transform: scale(1.1);
}

.floating-concierge:active {
  transform: scale(0.95);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(1.1);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: pulse-slow 20s infinite;
}

@keyframes pulse-slow {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(2, 44, 34, 0.8), rgba(6, 78, 59, 0.4), rgba(0, 0, 0, 0.2));
}

.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, transparent, #FDFDFD);
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
  margin-top: 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
  animation: fadeInUp 0.7s ease;
}

.hero-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald-50);
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 0.9;
  letter-spacing: -0.05em;
  animation: fadeInUp 1s ease;
}

.hero-gradient-text {
  background: linear-gradient(to right, var(--emerald-300), var(--emerald-100));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  color: rgba(236, 253, 245, 0.8);
  max-width: 42rem;
  font-weight: 500;
  line-height: 1.6;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Search Bar */
.search-bar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(40px);
  padding: 0.75rem;
  border-radius: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 80rem;
}

.search-inputs {
  flex: 1;
  display: grid;
  gap: 0.5rem;
}

.search-field {
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.search-field:focus-within {
  ring: 4px solid rgba(5, 150, 105, 0.2);
}

.search-field svg {
  color: var(--emerald-600);
  width: 1.25rem;
  height: 1.25rem;
}

.search-field-label {
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--slate-400);
}

.search-field input,
.search-field select {
  background: transparent;
  color: var(--slate-900);
  font-weight: 700;
  border: none;
  outline: none;
  width: 100%;
}

.search-field input::placeholder {
  color: var(--slate-300);
}

.search-button {
  background-color: var(--emerald-600);
  color: white;
  height: 72px;
  border-radius: 2rem;
  font-weight: 900;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.search-button:hover {
  background-color: var(--emerald-500);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

/* Trusted Partners */
.trusted-section {
  padding: 5rem 0;
  overflow: hidden;
}

.trusted-label {
  font-size: 0.875rem;
  font-weight: 900;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  text-align: center;
  margin-bottom: 3rem;
}

/* Marquee Container */
.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: transparent;
  display: flex;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, #FDFDFD, transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, #FDFDFD, transparent);
}

.marquee-content {
  display: flex;
  animation: scroll 25s linear infinite;
  flex-shrink: 0;
  min-width: 100%;
  align-items: center;
}

.marquee:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.trusted-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--slate-400);
  margin: 0 3rem;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.trusted-logo:hover {
  color: var(--emerald-600);
  transform: scale(1.1);
}

.trusted-logo svg {
  width: 2rem;
  height: 2rem;
  transition: all 0.3s ease;
}

.trusted-logo:hover svg {
  color: var(--emerald-600);
}

/* Packages Section */
.packages-section {
  padding: 8rem 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
  gap: 2rem;
}

.section-text {
  max-width: 42rem;
}

.section-badge {
  color: var(--emerald-600);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 3.75rem;
  font-weight: 900;
  color: var(--emerald-950);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.section-title .italic {
  color: var(--emerald-500);
  font-style: italic;
  font-family: Georgia, serif;
}

.section-description {
  color: var(--slate-500);
  font-size: 1.25rem;
  line-height: 1.6;
}

/* Category Filter */
.category-filter {
  display: flex;
  gap: 0.5rem;
  background: var(--neutral-100);
  padding: 0.5rem;
  border-radius: 1.5rem;
  align-self: flex-start;
}

.category-btn {
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 900;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.category-btn.active {
  background: white;
  color: var(--emerald-600);
  box-shadow: 0 10px 30px var(--neutral-200);
}

.category-btn:not(.active) {
  background: transparent;
  color: var(--slate-400);
}

.category-btn:not(.active):hover {
  color: var(--slate-600);
}

/* Package Cards */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.package-card {
  display: flex;
  flex-direction: column;
}

.package-image-wrapper {
  position: relative;
  height: 480px;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.package-card:hover .package-image-wrapper {
  transform: translateY(-1rem);
}

.package-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.package-card:hover .package-image {
  transform: scale(1.1);
}

.package-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 44, 34, 0.8), transparent, transparent);
  opacity: 0.8;
}

.package-badges {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rating-badge {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 900;
  color: var(--emerald-900);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-badge svg {
  width: 1rem;
  height: 1rem;
  fill: var(--emerald-500);
  color: var(--emerald-500);
}

.duration-badge {
  background: rgba(5, 150, 105, 0.9);
  backdrop-filter: blur(12px);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.package-info {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
}

.package-location {
  color: var(--emerald-300);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.package-location svg {
  width: 0.75rem;
  height: 0.75rem;
}

.package-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
  line-height: 1.2;
}

.package-card:hover .package-title {
  color: var(--emerald-200);
}

.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.package-price-wrapper .price-label {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.25rem;
  letter-spacing: -0.025em;
}

.package-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
}

.package-arrow {
  width: 3.5rem;
  height: 3.5rem;
  background: white;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-900);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.package-arrow:hover {
  transform: scale(1.1);
  background: var(--emerald-400);
  color: white;
}

/* Services Section */
.services-section {
  background-color: var(--emerald-950);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
}

.services-blob-1 {
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: var(--emerald-400);
  border-radius: 9999px;
  filter: blur(120px);
}

.services-blob-2 {
  position: absolute;
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: var(--emerald-600);
  border-radius: 9999px;
  filter: blur(120px);
}

.services-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 5rem;
  position: relative;
  z-index: 10;
}

.services-header h2 {
  font-size: 4.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 2rem;
  letter-spacing: -0.05em;
}

.services-header p {
  color: rgba(236, 253, 245, 0.6);
  font-size: 1.25rem;
  font-weight: 500;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 3rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-0.5rem);
}

.service-icon {
  background: var(--emerald-500);
  width: 5rem;
  height: 5rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  color: var(--emerald-950);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: rotate(6deg);
}

.service-icon svg {
  width: 2rem;
  height: 2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.service-card p {
  color: rgba(236, 253, 245, 0.5);
  line-height: 1.6;
  font-size: 1.125rem;
}

/* CTA Section */
.cta-section {
  padding: 10rem 0;
}

.cta-card {
  background: white;
  border: 1px solid var(--neutral-100);
  border-radius: 4rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.cta-decorative {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(236, 253, 245, 0.5);
  z-index: 0;
  border-radius: 5rem 0 0 5rem;
}

.cta-content,
.cta-visual {
  flex: 1;
  position: relative;
  z-index: 10;
}

.cta-badge {
  background: var(--emerald-100);
  color: var(--emerald-700);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: inline-block;
}

.cta-content h2 {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--emerald-950);
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.cta-content h2 span {
  color: var(--emerald-600);
}

.cta-content p {
  font-size: 1.25rem;
  color: var(--slate-500);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary-large {
  background: var(--emerald-600);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 1.5rem;
  font-weight: 900;
  font-size: 1.125rem;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
  transition: transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary-large:hover {
  transform: scale(1.05);
}

.btn-secondary-large {
  background: white;
  color: var(--emerald-900);
  border: 2px solid var(--emerald-50);
  padding: 1.25rem 2.5rem;
  border-radius: 1.5rem;
  font-weight: 900;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary-large:hover {
  background: var(--emerald-50);
}

.cta-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.cta-visual-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-visual-col:first-child {
  margin-top: 3rem;
}

.cta-img {
  border-radius: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.cta-stat {
  background: var(--emerald-600);
  padding: 2rem;
  border-radius: 2.5rem;
  color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-stat-number {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.cta-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.cta-testimonial {
  background: white;
  padding: 2rem;
  border-radius: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--emerald-50);
}

.cta-testimonial svg {
  color: var(--emerald-500);
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  fill: var(--emerald-500);
}

.cta-testimonial-text {
  font-weight: 900;
  color: var(--emerald-900);
  font-size: 1.125rem;
}

.cta-testimonial-author {
  color: var(--slate-400);
  font-size: 0.875rem;
}

/* Footer */
footer {
  background-color: #FDFDFD;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 5rem;
  margin-bottom: 6rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand p {
  color: var(--slate-400);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 3rem;
  height: 3rem;
  background: var(--neutral-100);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-icon:hover {
  background: var(--emerald-600);
  color: white;
}

.social-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-column h4 {
  color: var(--emerald-950);
  font-weight: 900;
  margin-bottom: 2.5rem;
  letter-spacing: -0.025em;
  font-size: 1.125rem;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-column ul li a {
  color: var(--slate-500);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--emerald-600);
}

.newsletter-form {
  background: var(--neutral-100);
  padding: 0.5rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  padding-right: 0.5rem;
}

.newsletter-form input {
  background: transparent;
  padding-left: 1.5rem;
  flex: 1;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  outline: none;
}

.newsletter-form button {
  background: var(--emerald-600);
  color: white;
  padding: 1rem;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--emerald-700);
}

.newsletter-form button svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-bottom {
  padding-top: 4rem;
  border-top: 1px solid var(--neutral-100);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-bottom-left {
  display: flex;
  gap: 2rem;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--slate-300);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--slate-400);
}

.footer-bottom-right span {
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}

.footer-powered {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 900;
  font-style: italic;
  color: var(--emerald-900);
}

.footer-powered svg {
  width: 1rem;
  height: 1rem;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .desktop-menu {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero-title {
    font-size: 6rem;
  }

  .search-inputs {
    grid-template-columns: repeat(3, 1fr);
  }

  .search-bar {
    flex-direction: row;
  }

  .search-button {
    width: 12rem;
  }

  .trusted-label {
    width: auto;
  }

  .section-header {
    flex-direction: row;
  }

  .section-title {
    font-size: 4.5rem;
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-card {
    flex-direction: row;
    padding: 6rem;
  }

  .footer-bottom {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .floating-concierge span {
    display: none;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .services-header h2 {
    font-size: 2.5rem;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
  }
}
