/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer-bottom{
    justify-content: center !important;
}

:root {
  --background: #fafaf9;
  --foreground: #1c1917;
  --card: #ffffff;
  --card-foreground: #1c1917;
  --primary: #292524;
  --primary-foreground: #fafaf9;
  --secondary: #e7e5e4;
  --muted: #f5f5f4;
  --muted-foreground: #78716c;
  --accent: #cf957b;;
  --accent-foreground: #fafaf9;
  --border: #e7e5e4;
  --radius: 1.5rem;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Background Decorations */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(41, 37, 36, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(212, 165, 116, 0.02) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 100px,
    rgba(212, 165, 116, 0.01) 100px,
    rgba(212, 165, 116, 0.01) 101px
  );
  pointer-events: none;
  z-index: 0;
}

section {
  position: relative;
  z-index: 1;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Styles */
.section {
  padding: 8rem 1.5rem;
}

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

.section-gradient {
  background: linear-gradient(135deg, var(--background) 0%, rgba(212, 165, 116, 0.05) 50%, var(--background) 100%);
  position: relative;
  overflow: hidden;
}

.section-curve {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background-color: var(--background);
  clip-path: ellipse(70% 100% at 50% 0%);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 3.75rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  font-weight: 300;
  line-height: 1.6;
}

.text-center {
  text-align: center;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--background);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-bg-circle-1 {
  top: -50%;
  right: -12.5%;
  width: 800px;
  height: 800px;
  background-color: rgba(212, 165, 116, 0.05);
}

.hero-bg-circle-2 {
  bottom: -50%;
  left: -12.5%;
  width: 600px;
  height: 600px;
  background-color: rgba(41, 37, 36, 0.05);
}

.hero-pattern {
  position: absolute;
  border: 1px solid;
  border-radius: 1.5rem;
}

.hero-pattern-1 {
  top: 5rem;
  right: 5rem;
  width: 8rem;
  height: 8rem;
  border-color: rgba(212, 165, 116, 0.1);
  transform: rotate(12deg);
}

.hero-pattern-2 {
  bottom: 10rem;
  left: 10rem;
  width: 6rem;
  height: 6rem;
  border-color: rgba(41, 37, 36, 0.1);
  transform: rotate(-12deg);
}

.hero-dot {
  position: absolute;
  border-radius: 50%;
}

.hero-dot-1 {
  top: 33.333%;
  left: 25%;
  width: 0.5rem;
  height: 0.5rem;
  background-color: rgba(212, 165, 116, 0.2);
}

.hero-dot-2 {
  bottom: 33.333%;
  right: 33.333%;
  width: 0.75rem;
  height: 0.75rem;
  background-color: rgba(41, 37, 36, 0.2);
}

/* Navigation */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 2rem 1.5rem;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.nav-title {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.nav-phone {
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 9999px;
  background-color: transparent;
  color: var(--foreground);
  text-decoration: none;
  transition: all 0.3s;
}

.nav-phone:hover {
  background-color: var(--muted);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text {
  text-align: left;
}

.hero-title {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title-accent {
  display: block;
  color: var(--accent);
  font-weight: 400;
  margin-top: 0.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  font-weight: 300;
  max-width: 36rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
}

.hero-image-container {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(41, 37, 36, 0.1) 100%);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-frame {
  position: absolute;
  inset: 1rem;
  border: 2px solid rgba(212, 165, 116, 0.2);
  border-radius: 1.5rem;
}

.hero-image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 8rem;
  height: 8rem;
  background-color: rgba(212, 165, 116, 0.1);
  border-radius: 50%;
  filter: blur(40px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.scroll-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--muted-foreground);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  height: 3.5rem;
}

.btn-primary:hover {
  background-color: rgba(41, 37, 36, 0.9);
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
  height: 3.5rem;
}

.btn-outline:hover {
  background-color: var(--muted);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.btn-accent:hover {
  background-color: rgba(212, 165, 116, 0.9);
}

.btn-full {
  width: 100%;
}

.btn-large {
  height: 3.5rem;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Advantages Grid */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.advantage-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.advantage-card:hover {
  border-color: rgba(212, 165, 116, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background-color: rgba(212, 165, 116, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s;
}

.advantage-card:hover .advantage-icon {
  background-color: rgba(212, 165, 116, 0.2);
}

.advantage-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--accent);
}

.advantage-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}

.advantage-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  transition: all 0.3s;
}

.service-card:hover {
  border-color: rgba(212, 165, 116, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card-featured {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background-color: var(--accent);
  color: var(--accent-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}

.service-description {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.service-card-featured .service-description {
  color: rgba(250, 250, 249, 0.8);
}

.service-price {
  margin-bottom: 2rem;
}

.price-value {
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: -0.025em;
}

.price-period {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.service-card-featured .price-period {
  color: rgba(250, 250, 249, 0.7);
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.feature-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.service-card:not(.service-card-featured) .feature-icon {
  color: var(--accent);
}

.service-card-featured .feature-icon {
  color: var(--primary-foreground);
}

.service-feature span {
  font-size: 0.875rem;
  line-height: 1.6;
}

.service-card-featured .service-feature span {
  color: rgba(250, 250, 249, 0.9);
}

/* Statistics Section */
.stats-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.stats-bg-circle {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
}

.stats-bg-circle-1 {
  top: 0;
  right: 25%;
  background-color: rgba(212, 165, 116, 0.1);
}

.stats-bg-circle-2 {
  bottom: 0;
  left: 25%;
  background-color: rgba(41, 37, 36, 0.1);
}

.stats-pattern {
  position: absolute;
  border: 1px solid;
  border-radius: 1.5rem;
}

.stats-pattern-1 {
  top: 5rem;
  left: 2.5rem;
  width: 10rem;
  height: 10rem;
  border-color: rgba(212, 165, 116, 0.05);
  transform: rotate(12deg);
}

.stats-pattern-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 8rem;
  height: 8rem;
  border-color: rgba(41, 37, 36, 0.05);
  transform: rotate(-12deg);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  position: relative;
}

.stat-card-inner {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-card:hover .stat-card-inner {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(212, 165, 116, 0.5);
  transform: translateY(-4px);
}

.stat-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background-color: rgba(212, 165, 116, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s;
}

.stat-card:hover .stat-icon {
  background-color: rgba(212, 165, 116, 0.2);
}

.stat-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent);
}

.stat-value {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.stat-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 300;
}

.stat-corner {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-top: 2px solid rgba(212, 165, 116, 0.3);
  border-right: 2px solid rgba(212, 165, 116, 0.3);
  border-top-right-radius: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-card:hover .stat-corner {
  opacity: 1;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(212, 165, 116, 0.5);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.star-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

.testimonial-content {
  color: var(--foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-name {
  font-weight: 500;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* SEO Content */
.seo-title {
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .seo-title {
    font-size: 3rem;
  }
}

.seo-content {
  font-size: 1.125rem;
}

.seo-intro {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.seo-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.seo-text {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0 1.5rem;
  background-color: var(--background);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  color: var(--muted-foreground);
  line-height: 1.6;
  padding-bottom: 1.5rem;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-section {
  margin-bottom: 2rem;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background-color: rgba(212, 165, 116, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

.contact-info-label {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-info-value {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-value:hover {
  color: var(--accent);
}

.contact-info-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.contact-emergency {
  padding: 2rem;
  border-radius: 1.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.contact-emergency-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.contact-emergency-text {
  color: rgba(250, 250, 249, 0.8);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-emergency-phone {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary-foreground);
  text-decoration: none;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background-color: var(--background);
  color: var(--foreground);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-input {
  height: 3rem;
}

.form-textarea {
  min-height: 8rem;
  resize: none;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-privacy {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 4rem 1.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand {
  max-width: 28rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-icon {
  width: 2rem;
  height: 2rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.footer-description {
  color: rgba(250, 250, 249, 0.8);
  line-height: 1.6;
}

.footer-heading {
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: rgba(250, 250, 249, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--primary-foreground);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 250, 249, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(250, 250, 249, 0.7);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-link {
  color: rgba(250, 250, 249, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal-link:hover {
  color: var(--primary-foreground);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .section {
    padding: 4rem 1.5rem;
  }

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

  .section-subtitle {
    font-size: 1rem;
  }

  .hero-section {
    min-height: auto;
    padding: 8rem 0 4rem;
  }

  .nav {
    padding: 1.5rem 1rem;
  }

  .nav-title {
    font-size: 1rem;
  }

  .nav-phone {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
}
