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

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

:root {
  /* Colors */
  --color-charcoal: #1a1a1a;
  --color-gold: #d4af37;
  --color-cream: #f5f5f0;
  --color-gray-light: #e5e5e5;
  --color-gray-medium: #666666;
  --color-white: #ffffff;

  /* Semantic tokens */
  --background: var(--color-cream);
  --foreground: var(--color-charcoal);
  --primary: var(--color-charcoal);
  --primary-foreground: var(--color-cream);
  --secondary: var(--color-gray-light);
  --accent: var(--color-gold);
  --accent-foreground: var(--color-charcoal);
  --muted-foreground: var(--color-gray-medium);
  --border: #d0d0d0;
  --card: var(--color-white);
  --card-foreground: var(--color-charcoal);

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  /* Spacing */
  --container-max-width: 1200px;
  --spacing-section: 6rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(245, 245, 240, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

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

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

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--accent);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

.hamburger {
  position: relative;
  width: 1.5rem;
  height: 2px;
  background-color: currentColor;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.3s ease;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  bottom: -6px;
}

.mobile-menu {
  display: none;
  background-color: var(--background);
  border-top: 1px solid var(--border);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--accent);
}

.mobile-phone {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

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

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

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

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

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg {
  padding: 1.25rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--background) 0%, rgba(229, 229, 229, 0.3) 50%, var(--background) 100%);
}

.hero-wave-top,
.hero-wave-bottom {
  position: absolute;
  width: 100%;
  height: 50%;
  opacity: 0.1;
  color: var(--accent);
}

.hero-wave-top {
  top: 0;
  left: 0;
}

.hero-wave-bottom {
  bottom: 0;
  right: 0;
}

.hero-lines {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  overflow: hidden;
}

.hero-lines::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-15deg, var(--accent), var(--accent) 1px, transparent 1px, transparent 5%);
}

.hero-container {
  padding-top: 8rem;
  padding-bottom: 8rem;
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 9999px;
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-wrap: balance;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-wrap: pretty;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 48rem;
  margin: 0 auto;
}

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

.hero-stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Section Styles */
section {
  padding: var(--spacing-section) 0;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  text-wrap: balance;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
  text-wrap: pretty;
}

/* Advantages Section */
.advantages {
  background-color: rgba(229, 229, 229, 0.3);
  position: relative;
  overflow: hidden;
}

.advantages-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12rem;
  opacity: 0.08;
  color: var(--accent);
}

.advantages-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: linear-gradient(var(--accent) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent) 1px, transparent 1px);
  background-size: 50px 50px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

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

.advantage-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  display: inline-flex;
  padding: 1rem;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease;
}

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

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

.advantage-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.75rem;
}

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

/* Services Section */
.services {
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

.services-wave {
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
  opacity: 0.08;
  color: var(--accent);
  pointer-events: none;
}

.services-circles {
  position: absolute;
  top: 50%;
  right: 0;
  width: 24rem;
  height: 24rem;
  opacity: 0.05;
  pointer-events: none;
}

.services-circles::before,
.services-circles::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.services-circles::before {
  width: 12rem;
  height: 12rem;
}

.services-circles::after {
  width: 18rem;
  height: 18rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

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

.service-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-featured {
  border-color: var(--accent);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: scale(1);
}

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

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

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

.service-price {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

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

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--card-foreground);
}

.service-features svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Stats Section */
.stats {
  background-color: var(--primary);
  color: var(--primary-foreground);
  position: relative;
  overflow: hidden;
}

.stats-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(
    45deg,
    var(--accent),
    var(--accent) 1px,
    transparent 1px,
    transparent 40px
  );
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
  position: relative;
  z-index: 10;
}

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

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.stat-label {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: rgba(245, 245, 240, 0.8);
}

/* Testimonials Section */
.testimonials {
  background-color: rgba(229, 229, 229, 0.3);
}

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

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

.testimonial-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

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

.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testimonial-name {
  font-weight: 700;
  color: var(--card-foreground);
}

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

/* SEO Text Section */
.seo-text {
  background-color: var(--background);
}

.seo-content {
  max-width: 64rem;
  margin: 0 auto;
}

.seo-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.seo-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.seo-content ul {
  list-style-position: inside;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.seo-content ul li {
  margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq {
  background-color: rgba(229, 229, 229, 0.3);
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.5);
}

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

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

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

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

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

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

/* Contact Section */
.contact {
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

.contact-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 16rem;
  opacity: 0.02;
  color: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 90rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  background-color: var(--card);
  color: var(--foreground);
  transition: border-color 0.3s ease;
}

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

.contact-form textarea {
  resize: none;
}

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

.contact-info-card {
  background-color: var(--card);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--card-foreground);
  margin-bottom: 1.5rem;
}

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

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

.contact-info-icon {
  padding: 0.75rem;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 0.5rem;
}

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

.contact-info-label {
  font-weight: 500;
  color: var(--card-foreground);
  margin-bottom: 0.25rem;
}

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

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

.contact-emergency {
  background-color: rgba(212, 175, 55, 0.1);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-emergency p {
  font-size: 0.875rem;
  color: var(--foreground);
  line-height: 1.6;
}

.contact-emergency a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.contact-emergency a:hover {
  text-decoration: underline;
}

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

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

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

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

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-description {
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.8);
  line-height: 1.6;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-links li:not(:has(a)) {
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.8);
}

.footer-highlight {
  color: var(--accent) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 245, 240, 0.2);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.6);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--accent);
}

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

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .header-actions {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

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

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
