:root {
  --primary: #2c3e50;
  --secondary: #8b7355;
  --accent: #c9a86c;
  --light: #f8f6f3;
  --dark: #1a1a1a;
  --text: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Ad Disclosure Banner */
.ad-disclosure {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* Navigation */
.nav-header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
  padding: 5px 0;
  position: relative;
}

.nav-menu a:hover {
  color: var(--secondary);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  padding: 60px;
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 35px;
  opacity: 0.95;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: #b8974f;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary);
}

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

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

/* Sections */
.section {
  padding: 80px 0;
}

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

.section-dark {
  background-color: var(--primary);
  color: var(--white);
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.section-dark .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 50px;
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.8);
}

/* Split Layout */
.split-section {
  display: flex;
  align-items: center;
  gap: 60px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
}

.split-image {
  flex: 1;
  background-color: var(--secondary);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 400px;
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* Cards */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  flex: 1 1 300px;
  max-width: 380px;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.card-image {
  height: 220px;
  background-color: var(--secondary);
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
}

.card-content {
  padding: 25px;
}

.card-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.card-text {
  color: var(--text-light);
  margin-bottom: 15px;
}

.card-price {
  font-size: 1.4rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 15px;
}

.card-price span {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 400;
}

/* Services List */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-item:hover {
  box-shadow: var(--shadow-hover);
}

.service-info h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.service-info p {
  color: var(--text-light);
}

.service-price {
  text-align: right;
}

.service-price .price {
  font-size: 1.5rem;
  color: var(--secondary);
  font-weight: 700;
}

.service-price .unit {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Testimonials */
.testimonial {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 30px;
}

.testimonial-author-info h4 {
  color: var(--primary);
  font-weight: 600;
}

.testimonial-author-info span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Features */
.features-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  padding: 30px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--white);
}

.feature h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.feature p {
  color: var(--text-light);
}

/* Form Styles */
.form-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1a252f 100%);
  padding: 80px 0;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 50px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background-color: var(--accent);
  color: var(--dark);
  border: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  background-color: #b8974f;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--secondary) 0%, #6d5a42 100%);
  color: var(--white);
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.95;
}

/* Stats */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 5px;
}

.section-dark .stat-number {
  color: var(--accent);
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
}

.section-dark .stat-label {
  color: rgba(255,255,255,0.8);
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col h4 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-col p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-btn {
  padding: 12px 25px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.cookie-accept {
  background-color: var(--accent);
  color: var(--dark);
}

.cookie-reject {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

/* Thanks Page */
.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thanks-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--white);
}

.thanks-content h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.thanks-content p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

/* Legal Pages */
.legal-page {
  padding: 80px 0;
}

.legal-page h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 35px 0 15px;
}

.legal-page p {
  margin-bottom: 15px;
  color: var(--text);
}

.legal-page ul {
  margin-left: 25px;
  margin-bottom: 15px;
}

.legal-page li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--text);
}

/* Contact Page */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.contact-details h3 {
  color: var(--primary);
  margin-bottom: 5px;
}

.contact-details p {
  color: var(--text-light);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 80px;
  right: 30px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.sticky-cta.visible {
  opacity: 1;
  visibility: visible;
}

.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: var(--shadow-hover);
  transition: var(--transition);
}

.sticky-cta a:hover {
  transform: scale(1.1);
}

.sticky-cta svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* About Page */
.about-hero {
  background-color: var(--light);
  padding: 100px 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.team-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.team-member {
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  padding: 30px;
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.team-member-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  background-color: var(--secondary);
}

.team-member-image img {
  width: 100%;
  height: 100%;
}

.team-member h3 {
  color: var(--primary);
  margin-bottom: 5px;
}

.team-member span {
  color: var(--secondary);
  font-size: 0.95rem;
}

/* Disclaimer */
.disclaimer {
  background-color: #f9f5f0;
  padding: 30px;
  border-left: 4px solid var(--accent);
  margin: 40px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.disclaimer p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

/* References */
.references {
  background-color: var(--light);
  padding: 40px;
  border-radius: var(--radius);
  margin-top: 40px;
}

.references h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

.references ol {
  padding-left: 25px;
}

.references li {
  margin-bottom: 10px;
  color: var(--text-light);
}

.references a {
  color: var(--secondary);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .split-section {
    flex-direction: column;
  }

  .split-section.reverse {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

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

  .form-container {
    padding: 30px 20px;
  }

  .stats-row {
    gap: 30px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .service-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

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

@media (max-width: 480px) {
  .hero-content {
    padding: 30px 20px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .section {
    padding: 50px 0;
  }

  .btn {
    padding: 12px 25px;
  }
}
