:root {
  --primary: #2d4a3e;
  --secondary: #8b7355;
  --accent: #c9a86c;
  --dark: #1a1a1a;
  --light: #f8f6f3;
  --white: #ffffff;
  --gray: #6b6b6b;
  --gray-light: #e8e5e0;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: Georgia, 'Times New Roman', serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background-color: var(--light);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.3;
}

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

.ad-disclosure {
  background-color: var(--gray-light);
  padding: 8px 0;
  text-align: center;
  font-size: 12px;
  color: var(--gray);
}

.floating-nav {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--primary);
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--dark);
  transition: var(--transition);
  padding: 8px 0;
  position: relative;
}

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

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

.split-section {
  display: flex;
  min-height: 100vh;
}

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

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
}

.split-image {
  flex: 1;
  background-color: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 8px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 52px;
  color: var(--dark);
  margin-bottom: 24px;
  max-width: 500px;
}

.hero-text {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 450px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
}

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

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

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

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

.section-intro {
  padding: 120px 0;
  text-align: center;
  background: var(--white);
}

.section-intro h2 {
  font-size: 42px;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-intro p {
  font-size: 18px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  padding: 80px 0 120px;
  background: var(--white);
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 27px);
  min-width: 300px;
  background: var(--light);
  padding: 40px;
  transition: var(--transition);
}

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

.service-card h3 {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 16px;
}

.service-card p {
  color: var(--gray);
  margin-bottom: 24px;
}

.service-price {
  font-size: 28px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}

.service-price span {
  font-size: 14px;
  color: var(--gray);
  font-weight: 400;
}

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

.about-section .split-content {
  background: var(--primary);
}

.about-section h2 {
  font-size: 42px;
  margin-bottom: 24px;
}

.about-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

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

.stat-number {
  font-size: 42px;
  font-family: var(--font-heading);
  color: var(--accent);
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-section {
  padding: 120px 0;
  background: var(--light);
}

.testimonial-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
  background: var(--white);
  padding: 48px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 120px;
  color: var(--gray-light);
  position: absolute;
  top: 20px;
  left: 30px;
  line-height: 1;
}

.testimonial-text {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

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

.testimonial-location {
  font-size: 14px;
  color: var(--gray);
}

.cta-section {
  padding: 100px 0;
  background: var(--accent);
  text-align: center;
}

.cta-section h2 {
  font-size: 38px;
  color: var(--dark);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: var(--dark);
  opacity: 0.8;
  margin-bottom: 32px;
}

.cta-section .btn-primary {
  background: var(--dark);
}

.cta-section .btn-primary:hover {
  background: var(--primary);
}

.form-section {
  padding: 120px 0;
  background: var(--white);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-container h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-family: var(--font-main);
  border: 2px solid var(--gray-light);
  background: var(--light);
  transition: var(--transition);
}

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

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

.form-submit {
  text-align: center;
  margin-top: 32px;
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 40px;
}

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

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

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--accent);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.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);
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

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

.disclaimer {
  background: var(--gray-light);
  padding: 40px 0;
  text-align: center;
}

.disclaimer p {
  font-size: 13px;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

.cookie-content p {
  flex: 1;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.cookie-content a {
  color: var(--accent);
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

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

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

.page-header {
  background: var(--primary);
  padding: 160px 0 80px;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
}

.page-content {
  padding: 80px 0;
  background: var(--white);
}

.page-content h2 {
  font-size: 28px;
  margin: 40px 0 20px;
  color: var(--dark);
}

.page-content h3 {
  font-size: 22px;
  margin: 32px 0 16px;
  color: var(--dark);
}

.page-content p {
  color: var(--gray);
  margin-bottom: 16px;
}

.page-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.page-content li {
  color: var(--gray);
  margin-bottom: 8px;
}

.contact-info {
  background: var(--light);
  padding: 48px;
  margin-bottom: 40px;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--dark);
}

.contact-item {
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
}

.contact-label {
  font-weight: 600;
  color: var(--dark);
  min-width: 120px;
}

.contact-value {
  color: var(--gray);
}

.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  background: var(--light);
}

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

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

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

.thanks-content h1 {
  font-size: 42px;
  color: var(--dark);
  margin-bottom: 16px;
}

.thanks-content p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 32px;
}

.services-detail {
  padding: 80px 0;
}

.service-detail-card {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  padding: 40px;
  background: var(--light);
}

.service-detail-card.reverse {
  flex-direction: row-reverse;
}

.service-detail-image {
  flex: 0 0 400px;
  height: 300px;
  background-color: var(--gray-light);
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail-content h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.service-detail-content p {
  color: var(--gray);
  margin-bottom: 20px;
}

.service-detail-price {
  font-size: 32px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 24px;
}

@media (max-width: 968px) {
  .floating-nav {
    width: calc(100% - 48px);
    padding: 12px 20px;
    gap: 16px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .split-section {
    flex-direction: column;
    min-height: auto;
  }

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

  .split-content {
    padding: 60px 24px;
  }

  .split-image {
    min-height: 400px;
  }

  .hero-title {
    font-size: 36px;
  }

  .service-card {
    flex: 1 1 100%;
  }

  .testimonial-card {
    flex: 1 1 100%;
  }

  .stats-row {
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-grid {
    gap: 40px;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .service-detail-card {
    flex-direction: column;
  }

  .service-detail-card.reverse {
    flex-direction: column;
  }

  .service-detail-image {
    flex: 0 0 auto;
    height: 250px;
  }
}

@media (max-width: 600px) {
  .floating-nav {
    flex-direction: column;
    border-radius: 16px;
    padding: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-title {
    font-size: 28px;
  }

  .section-intro h2 {
    font-size: 32px;
  }

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