:root {
  --color-primary: #37cec6;
  --color-secondary: #a4af0e;
  --color-background: #F3F4F6;
  --color-surface: #E5E7EB;
  --color-text: #09201f;
  --color-text-light: #6B7280;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  
  --shadow-sm: 0 1px 2px 0 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);
  
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  font-size: var(--font-size-base);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

h1 {
  font-size: var(--font-size-3xl);
}

h2 {
  font-size: var(--font-size-2xl);
}

h3 {
  font-size: var(--font-size-xl);
}

p {
  margin-bottom: var(--space-sm);
  color: var(--color-text-light);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  background-color: var(--color-background);
  padding: var(--space-md) 0;
  position: relative;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-text);
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: var(--font-size-2xl);
  color: var(--color-text);
  cursor: pointer;
  padding: var(--space-xs);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav-menu a {
  color: var(--color-text);
  font-size: var(--font-size-sm);
  font-weight: 500;
  padding: var(--space-xs) 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--space-2xl) var(--space-md);
  margin-bottom: var(--space-2xl);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(9, 32, 31, 0.7) 0%, rgba(55, 206, 198, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 800px;
}

.hero h1 {
  color: white;
  margin-bottom: var(--space-md);
  font-size: clamp(var(--font-size-2xl), 5vw, var(--font-size-3xl));
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-lg);
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-sm);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-secondary:hover {
  background-color: white;
  color: var(--color-text);
}

.section {
  padding: var(--space-2xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  font-size: var(--font-size-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.card h3 {
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-xl);
}

.card p {
  font-size: var(--font-size-sm);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid var(--color-surface);
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-sm);
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(55, 206, 198, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-size: var(--font-size-xs);
  margin-bottom: 0;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background-color: var(--color-text);
  color: white;
  padding: var(--space-lg) 0;
  margin-top: var(--space-2xl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}

.footer-section h4 {
  color: white;
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-base);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-sm);
  display: block;
  margin-bottom: var(--space-xs);
}

.footer-section a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.6);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-page h1 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-md);
}

.error-page p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-lg);
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.thank-you-page h1 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-text);
  color: white;
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: none;
}

.privacy-popup.show {
  display: block;
}

.privacy-popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.privacy-popup p {
  color: white;
  margin: 0;
  font-size: var(--font-size-sm);
  flex: 1;
  min-width: 200px;
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-sm);
}

.privacy-popup .btn {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--font-size-xs);
}

.faq-item {
  margin-bottom: var(--space-md);
  background-color: white;
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
  font-size: var(--font-size-base);
}

.faq-answer {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
}

.image-gallery-section {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.image-gallery-item {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background-color: white;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.image-gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.image-gallery-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.image-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(9, 32, 31, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.image-gallery-item:hover .image-gallery-overlay {
  opacity: 1;
}

.image-gallery-content {
  padding: var(--space-lg);
  background-color: white;
}

.image-gallery-content h3 {
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-xl);
  transition: color 0.3s ease;
}

.image-gallery-item:hover .image-gallery-content h3 {
  color: var(--color-primary);
}

.image-gallery-content p {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  line-height: 1.7;
}

.featured-image-section {
  padding: var(--space-2xl) 0;
  background-color: var(--color-background);
}

.featured-image-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.featured-image-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.featured-image-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-image-wrapper:hover .featured-image {
  transform: scale(1.08);
}

.featured-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(55, 206, 198, 0.1) 0%, rgba(164, 175, 14, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.featured-image-wrapper:hover .featured-image-overlay {
  opacity: 1;
}

.featured-image-text {
  padding: var(--space-lg);
}

.featured-image-text h2 {
  color: var(--color-text);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-2xl);
  position: relative;
  padding-bottom: var(--space-sm);
}

.featured-image-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
  transition: width 0.4s ease;
}

.featured-image-wrapper:hover ~ .featured-image-text h2::after,
.featured-image-text:hover h2::after {
  width: 120px;
}

.featured-image-text p {
  color: var(--color-text-light);
  font-size: var(--font-size-base);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  transition: color 0.3s ease;
}

.featured-image-text:hover p {
  color: var(--color-text);
}

@media (max-width: 768px) {
  .image-gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .image-gallery-wrapper {
    height: 350px;
  }

  .featured-image-container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .featured-image-wrapper {
    height: 400px;
    order: 1;
  }

  .featured-image-text {
    order: 2;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-background);
    flex-direction: column;
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
    display: none;
    width: 100%;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero {
    min-height: 50vh;
    padding: var(--space-xl) var(--space-md);
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .privacy-popup-content {
    flex-direction: column;
    text-align: center;
  }

  .privacy-popup-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --space-xl: 2rem;
    --space-2xl: 3rem;
  }

  h1 {
    font-size: var(--font-size-2xl);
  }

  h2 {
    font-size: var(--font-size-xl);
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .image-gallery-wrapper {
    height: 300px;
  }

  .image-gallery-content {
    padding: var(--space-md);
  }

  .featured-image-wrapper {
    height: 350px;
  }

  .featured-image-text h2 {
    font-size: var(--font-size-xl);
  }

  .featured-image-text p {
    font-size: var(--font-size-sm);
  }
}

@media (max-width: 360px) {
  .logo {
    font-size: var(--font-size-base);
  }

  .logo img {
    width: 32px;
    height: 32px;
  }

  .card {
    padding: var(--space-md);
  }

  .btn {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-size-xs);
  }
}
