@charset "UTF-8";

:root {
  --chocolate-dark: #2C1810;
  --chocolate-rich: #4A3728;
  --chocolate-medium: #6B4423;
  --gold-burnished: #C9A227;
  --gold-soft: #E8D5A3;
  --emerald-deep: #1A5F4A;
  --emerald-bright: #2E8B6D;
  --amber-warm: #D97706;
  --amber-light: #F59E0B;
  --cream-rich: #FDF6E3;
  --cream-light: #FAF8F2;
  --text-dark: #2C1810;
  --text-light: #FAF8F2;
  --text-muted: #8B7355;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--cream-light);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

strong, p {
  color: inherit;
}

a {
  transition: all 0.3s ease;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--chocolate-dark) 0%, var(--chocolate-rich) 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%23ffffff" fill-opacity="0.02" width="100" height="100"/></svg>');
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 24, 16, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  padding: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1rem;
  color: var(--gold-soft);
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 2rem;
  color: var(--cream-light);
  font-weight: 300;
  opacity: 0.9;
}

.section {
  padding: 5rem 1.5rem;
  position: relative;
}

.section-dark {
  background-color: var(--chocolate-rich);
  color: var(--text-light);
}

.section-cream {
  background-color: var(--cream-rich);
}

.section-accent {
  background: linear-gradient(135deg, var(--emerald-deep) 0%, var(--emerald-bright) 100%);
  color: var(--text-light);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: inherit;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.glass-card-dark {
  background: rgba(44, 24, 16, 0.6);
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.service-card {
  background: var(--cream-light);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--gold-burnished);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(44, 24, 16, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold-burnished) 0%, var(--amber-warm) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--chocolate-dark);
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--chocolate-dark);
}

.service-description {
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--emerald-bright);
  margin-top: auto;
}

.advantage-card {
  background: linear-gradient(145deg, var(--cream-light) 0%, var(--cream-rich) 100%);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  border-left: 4px solid var(--gold-burnished);
}

.advantage-card:hover {
  transform: scale(1.03);
  border-left-color: var(--emerald-bright);
}

.advantage-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.advantage-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--chocolate-dark);
}

.review-card {
  background: var(--cream-light);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all 0.4s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(44, 24, 16, 0.12);
}

.review-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--gold-burnished);
}

.review-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.review-author {
  font-weight: 700;
  color: var(--chocolate-dark);
}

.review-rating {
  color: var(--amber-light);
  margin-bottom: 0.5rem;
}

.team-card {
  background: var(--cream-light);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(44, 24, 16, 0.15);
}

.team-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.3rem;
  color: var(--chocolate-dark);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--emerald-bright);
  font-weight: 500;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-burnished) 0%, var(--amber-warm) 100%);
  color: var(--chocolate-dark) !important;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(201, 162, 39, 0.4);
  background: linear-gradient(135deg, var(--amber-warm) 0%, var(--gold-burnished) 100%);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light) !important;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid var(--gold-burnished);
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--gold-burnished);
  color: var(--chocolate-dark) !important;
}

.section-cream .btn-secondary {
  color: var(--chocolate-dark) !important;
}

.btn-dark {
  background: var(--chocolate-dark);
  color: var(--text-light) !important;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.btn-dark:hover {
  background: var(--chocolate-rich);
  transform: translateY(-3px);
}

.contact-info-card {
  background: var(--cream-light);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(44, 24, 16, 0.12);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--emerald-bright) 0%, var(--emerald-deep) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--text-light);
}

.contact-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-value {
  font-size: 1.1rem;
  color: var(--chocolate-dark);
  font-weight: 600;
}

.input-field {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--cream-light);
  color: var(--text-dark);
}

.input-field:focus {
  outline: none;
  border-color: var(--gold-burnished);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
}

.textarea-field {
  min-height: 150px;
  resize: vertical;
}

.divider-text {
  text-align: center;
  position: relative;
  margin: 3rem 0;
}

.divider-text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-burnished), transparent);
}

.divider-text span {
  background: var(--cream-light);
  padding: 0 2rem;
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  color: var(--gold-burnished);
  font-family: 'Georgia', serif;
  font-style: italic;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(transparent, rgba(44, 24, 16, 0.9));
  color: var(--text-light);
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.faq-item {
  background: var(--cream-light);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--gold-burnished);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--chocolate-dark);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--emerald-bright);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--gold-burnished);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--text-muted);
}

.footer-section {
  background: var(--chocolate-dark);
  color: var(--cream-light);
  padding: 4rem 1.5rem 2rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 1rem;
  font-family: 'Georgia', serif;
}

.footer-tagline {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.2rem;
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
  font-family: 'Georgia', serif;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--cream-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-burnished);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: var(--chocolate-dark);
  color: var(--cream-light);
  padding: 2rem;
  border-radius: 16px;
  z-index: 1000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--gold-burnished);
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--gold-soft);
  font-family: 'Georgia', serif;
}

.cookie-text {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.9rem;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--gold-burnished) 0%, var(--amber-warm) 100%);
  color: var(--chocolate-dark);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 162, 39, 0.4);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--cream-light);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
  border-color: var(--cream-light);
}

.navbar {
  background: var(--chocolate-dark) !important;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.4s ease;
}

.navbar-brand {
  font-family: 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-soft) !important;
}

.navbar-item {
  color: var(--cream-light) !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar-item:hover {
  color: var(--gold-burnished) !important;
  background: transparent !important;
}

.navbar-burger {
  color: var(--cream-light) !important;
}

.navbar-burger span {
  background-color: var(--cream-light);
}

.badge-accent {
  background: var(--gold-burnished);
  color: var(--chocolate-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-left: 0.5rem;
}

.featured-section {
  background: linear-gradient(135deg, var(--chocolate-rich) 0%, var(--chocolate-dark) 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.featured-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.featured-content {
  position: relative;
  z-index: 2;
}

.featured-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  color: var(--gold-soft);
}

.featured-text {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold-burnished) 0%, var(--amber-warm) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--chocolate-dark);
  position: relative;
  z-index: 2;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 60%;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-burnished), transparent);
}

.process-step:last-child::after {
  display: none;
}

.process-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--chocolate-dark);
}

.process-description {
  color: var(--text-muted);
  max-width: 250px;
  margin: 0 auto;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(44, 24, 16, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.form-container {
  background: var(--cream-light);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 25px 60px rgba(44, 24, 16, 0.12);
}

.form-label {
  font-weight: 600;
  color: var(--chocolate-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.form-field {
  margin-bottom: 1.5rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--chocolate-dark);
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-heading {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--chocolate-rich);
}

.legal-text {
  color: var(--text-muted);
  line-height: 1.8;
}

.thank-you-content {
  text-align: center;
  padding: 4rem 2rem;
}

.thank-you-icon {
  font-size: 5rem;
  margin-bottom: 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--chocolate-dark);
}

.thank-you-text {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hidden {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }

  .hero-section {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 1.5rem;
  }

  .process-step::after {
    display: none;
  }

  .gallery-overlay {
    transform: translateY(0);
    padding: 1rem;
  }

  .btn-primary, .btn-secondary, .btn-dark {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

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

@media screen and (min-width: 769px) {
  .navbar-menu {
    display: flex !important;
    justify-content: flex-end;
  }

  .navbar-burger {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--chocolate-dark);
    padding: 1rem;
    display: none;
  }

  .navbar-menu.is-active {
    display: block;
  }

  .navbar-item {
    padding: 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.columns.is-multiline {
  margin-bottom: 0 !important;
}

.column {
  padding: 1.5rem;
}

.is-fullheight {
  min-height: calc(100vh - 80px);
}

.has-text-gold {
  color: var(--gold-burnished) !important;
}

.has-text-emerald {
  color: var(--emerald-bright) !important;
}

.has-background-chocolate {
  background-color: var(--chocolate-dark) !important;
}

.mb-6 {
  margin-bottom: 3rem;
}

.mt-6 {
  margin-top: 3rem;
}

.py-6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.px-6 {
  padding-left: 3rem;
  padding-right: 3rem;
}

@media screen and (max-width: 768px) {
  .px-6 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .py-6 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}