/* ===================================
   CSS Variables & Base Styles
   =================================== */
:root {
  --primary: #d4a5a5;
  --primary-hover: #b58b8b;
  --secondary: #f9f5f2;
  --accent: #9e8c8c;
  --text-main: #4a4a4a;
  --text-light: #7a7a7a;
  --text-lighter: #a0a0a0;
  --white: #ffffff;
  --stone-900: #1c1917;
  --stone-800: #292524;
  --stone-600: #57534e;
  --stone-400: #a8a29e;
  --stone-200: #e7e5e4;
  --yellow: #fbbf24;
  --whatsapp: #25D366;
  --orange: #f97316;
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Lato', sans-serif;
  
  --transition: all 0.3s ease;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--secondary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* ===================================
   Navigation
   =================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.5rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .nav-container {
    padding: 0 2rem;
  }
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#navbar.scrolled .logo,
#navbar.scrolled .nav-links a {
  color: var(--text-main);
  text-shadow: none;
}

#navbar.scrolled .logo span {
  color: var(--primary);
  text-shadow: none;
}

@media (min-width: 768px) {
  .logo {
    font-size: 1.875rem;
  }
}

.logo span {
  color: #f5a5b8;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition);
  position: relative;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.nav-links a:not(.btn-phone):hover {
  color: #f5a5b8;
}

.nav-links a:not(.btn-phone)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:not(.btn-phone):hover::after {
  width: 100%;
}

.btn-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  text-transform: none;
  letter-spacing: normal;
}

.btn-phone:hover {
  background: var(--primary-hover);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.mobile-menu.active {
  max-height: 400px;
  opacity: 1;
  padding: 1.5rem;
}

.mobile-menu a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.125rem;
  font-family: var(--font-serif);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.4), rgba(249,245,242,0.7));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .hero-content {
    margin-top: 0;
  }
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 9999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  color: var(--white);
}

@media (min-width: 768px) {
  .badge {
    font-size: 0.875rem;
  }
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 5rem;
  }
}

.hero h1 .highlight {
  color: var(--primary);
  font-style: italic;
}

.tagline {
  font-size: 1.125rem;
  color: var(--white);
  max-width: 42rem;
  margin: 0 auto 2rem;
  font-weight: 400;
  font-style: italic;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

@media (min-width: 768px) {
  .tagline {
    font-size: 1.25rem;
  }
}

.subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

@media (min-width: 768px) {
  .subtitle {
    font-size: 1.125rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.animate-fade-in {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  font-family: var(--font-sans);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-main);
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: #f9fafb;
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid #d1d5db;
}

.btn-outline:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  box-shadow: var(--shadow-xl);
}

.btn-dark {
  background: var(--stone-800);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
}

.btn-dark:hover {
  background: #44403c;
}

.btn-outline-small {
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  color: var(--text-light);
  font-size: 0.875rem;
  border-radius: 0.5rem;
  background: transparent;
}

.btn-outline-small:hover {
  background: #f9fafb;
}

.btn-primary-small {
  padding: 0.5rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.btn-primary-small:hover {
  background: var(--primary-hover);
}

@media (min-width: 640px) {
  .btn {
    width: auto;
  }
}

/* ===================================
   About Section
   =================================== */
.about {
  padding: 5rem 0;
  background: #f9f5f2;
  position: relative;
  min-height: 600px;
}

@media (min-width: 768px) {
  .about {
    padding: 8rem 0;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    gap: 5rem;
  }
}

.about-text {
  order: 2;
}

@media (min-width: 768px) {
  .about-text {
    order: 1;
  }
}

.about h2 {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about h2 {
    font-size: 2.5rem;
  }
}

.about h2 .highlight {
  color: var(--primary);
  font-style: italic;
}

.divider {
  width: 4rem;
  height: 0.25rem;
  background: var(--primary);
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.text-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--text-light);
  font-size: 1.125rem;
  line-height: 1.8;
}

.text-content p {
  margin: 0;
}

.quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary);
  padding-top: 1rem;
  font-style: italic;
}

.about-image {
  order: 1;
}

@media (min-width: 768px) {
  .about-image {
    order: 2;
  }
}

.image-wrapper {
  position: relative;
}

.image-bg {
  position: absolute;
  inset: 0;
  background: rgba(212, 165, 165, 0.2);
  transform: translate(1rem, 1rem);
  border-radius: 1rem;
  z-index: 0;
}

.image-wrapper img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  z-index: 1;
}

/* ===================================
   Services Section
   =================================== */
.services {
  padding: 5rem 0;
  background: #ffffff;
  min-height: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

.section-header p {
  color: var(--text-light);
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .section-header p {
    font-size: 1.125rem;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--secondary);
  text-align: center;
  border: 1px solid transparent;
  transition: var(--transition);
}

.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-xl);
  border-color: rgba(212, 165, 165, 0.2);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background: rgba(212, 165, 165, 0.8);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon svg {
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.6;
}

.section-footer {
  text-align: center;
  margin-top: 3rem;
}

.link-underline {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 0.25rem;
  transition: var(--transition);
}

.link-underline:hover {
  color: var(--primary-hover);
  border-color: var(--primary-hover);
}

/* ===================================
   Pricing Section
   =================================== */
.pricing {
  padding: 5rem 0;
  background: #f9f5f2;
  min-height: 600px;
}

.pricing .section-header {
  margin-bottom: 4rem;
}

.label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.section-divider {
  width: 6rem;
  height: 1px;
  background: #d1d5db;
  margin: 1.5rem auto 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.pricing-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

@media (min-width: 768px) {
  .pricing-card {
    padding: 2rem;
  }
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
}

.pricing-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pricing-accent {
  width: 0.5rem;
  height: 2rem;
  background: var(--primary);
  border-radius: 9999px;
}

.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.pricing-desc {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
  padding-bottom: 0.5rem;
}

.pricing-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.item-name {
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.item-name > span:first-child {
  color: var(--text-main);
  font-weight: 500;
}

.item-duration {
  font-size: 0.75rem;
  color: var(--text-light);
  font-style: italic;
}

.item-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.125rem;
  white-space: nowrap;
}

.note {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
  padding: 5rem 0;
  background: #ffffff;
  min-height: 600px;
}

.gallery h2 {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .gallery h2 {
    font-size: 3rem;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  opacity: 0;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.gallery-overlay svg {
  color: var(--white);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  padding: 0.5rem;
}

.lightbox-close:hover {
  color: var(--primary);
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-xl);
}

/* ===================================
   Reviews Section
   =================================== */
.reviews {
  padding: 5rem 0;
  background: #f9f5f2;
  min-height: 600px;
}

.reviews h2 {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .reviews h2 {
    font-size: 3rem;
  }
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-card:hover {
  box-shadow: var(--shadow-lg);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(212, 165, 165, 0.2);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.review-header h4 {
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 0.25rem 0;
}

.local-guide {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--orange);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  color: var(--yellow);
}

.review-text {
  color: var(--text-light);
  font-style: italic;
  font-size: 0.875rem;
  line-height: 1.6;
  flex-grow: 1;
  margin: 0;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
  padding: 5rem 0;
  background: #ffffff;
  position: relative;
  min-height: 600px;
}

.contact-wrapper {
  background: rgba(212, 165, 165, 0.05);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(212, 165, 165, 0.1);
}

@media (min-width: 768px) {
  .contact-wrapper {
    padding: 3rem;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact h2 {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .contact h2 {
    font-size: 3rem;
  }
}

.contact-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: var(--white);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--primary);
  flex-shrink: 0;
}

.contact-item h3 {
  font-weight: 700;
  color: var(--text-main);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--text-light);
  margin: 0;
}

.contact-phone {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
}

.contact-phone:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
}

@media (min-width: 640px) {
  .contact-buttons {
    flex-direction: row;
  }
}

.contact-buttons .btn {
  flex: 1;
  padding: 1rem 1.5rem;
}

.contact-map {
  height: 400px;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===================================
   Footer
   =================================== */
.footer {
  background: var(--stone-900);
  color: var(--stone-400);
  padding: 3rem 0;
  text-align: center;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--stone-200);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-links {
    gap: 2rem;
  }
}

.footer-link {
  background: none;
  border: none;
  color: var(--stone-400);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-divider {
  width: 100%;
  max-width: 24rem;
  height: 1px;
  background: var(--stone-800);
  margin: 0 auto 2rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--stone-600);
  line-height: 1.8;
}

/* ===================================
   Cookie Banner
   =================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 1rem;
  display: none;
  animation: slideUp 0.4s ease;
}

@media (min-width: 768px) {
  .cookie-banner {
    padding: 1.5rem;
  }
}

.cookie-banner.active {
  display: block;
}

.cookie-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cookie-banner .container {
    flex-direction: row;
  }
}

.cookie-content {
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: center;
}

@media (min-width: 768px) {
  .cookie-content {
    text-align: left;
    max-width: 42rem;
  }
}

.cookie-link {
  background: none;
  border: none;
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
}

.cookie-link:hover {
  color: var(--primary-hover);
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* ===================================
   Legal Modal
   =================================== */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.legal-modal.active {
  display: flex;
}

.legal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.legal-content {
  position: relative;
  background: var(--white);
  border-radius: 1rem;
  width: 100%;
  max-width: 42rem;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  animation: fadeInUp 0.4s ease;
}

.legal-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 1rem 1rem 0 0;
}

.legal-header h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-main);
  margin: 0;
}

.legal-close {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  padding: 0.25rem;
}

.legal-close:hover {
  color: var(--primary);
}

.legal-body {
  padding: 1.5rem;
  overflow-y: auto;
  color: var(--text-main);
  font-size: 0.875rem;
  line-height: 1.8;
}

.legal-body h3 {
  font-weight: 700;
  font-size: 1.125rem;
  margin: 1.5rem 0 1rem;
}

.legal-body h3:first-child {
  margin-top: 0;
}

.legal-body p {
  margin-bottom: 1rem;
}

.legal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: #f9fafb;
  text-align: right;
  border-radius: 0 0 1rem 1rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===================================
   Utility Classes
   =================================== */
.hidden {
  display: none !important;
}

/* Scroll reveal animation - DISABLED to prevent white screen */
.scroll-reveal {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}
