:root {
  --primary: #5B7B6F;
  --primary-dark: #3D5A4F;
  --primary-light: #8FAF9F;
  --secondary: #C8956D;
  --secondary-light: #E8C4A0;
  --bg: #FDFAF6;
  --surface: #F5EFE7;
  --text: #2D2D2D;
  --text-light: #6B6B6B;
  --white: #FFFFFF;
  --border: #E0D8CE;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  min-width: 320px;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--text);
}

h1 { font-size: 2.2rem; font-weight: 600; }
h2 { font-size: 1.7rem; font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 0.8em; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: relative;
  z-index: 100;
  background: var(--white);
}

.header-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary-light));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.3px;
  text-decoration: none;
}

.brand:hover {
  color: var(--primary);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  padding: 4px 10px;
  position: relative;
  transition: color var(--transition);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition);
}

.header-nav a:hover {
  color: var(--primary);
}

.header-nav a:hover::after {
  width: 70%;
}

.nav-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--secondary);
  display: inline-block;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(61, 90, 79, 0.97);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.overlay-nav a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0.85;
  transition: all var(--transition);
}

.overlay-nav a:hover {
  opacity: 1;
  color: var(--secondary-light);
}

.nav-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-nav-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
  transform: scale(0);
  transition: all var(--transition);
}

.floating-nav-btn.visible {
  transform: scale(1);
}

.floating-nav-btn:hover {
  background: var(--primary-dark);
}

.floating-nav-btn .fa-xmark {
  display: none;
}

.floating-nav-btn.active .fa-bars {
  display: none;
}

.floating-nav-btn.active .fa-xmark {
  display: inline;
}

.hero-home {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-home::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(200, 149, 109, 0.12);
}

.hero-home::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -8%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.hero-home .container {
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  opacity: 0.75;
}

.hero-home h1 {
  color: var(--white);
  margin-bottom: 14px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-home p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 48px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 8px;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.9rem;
}

.breadcrumb {
  font-size: 0.72rem;
  margin-bottom: 10px;
  opacity: 0.75;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
  color: var(--white);
}

.section {
  padding: 52px 0;
}

.section-alt {
  background: var(--surface);
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  margin-bottom: 8px;
}

.section-title p {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.88rem;
}

.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.img-text-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.img-text-section img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
}

.img-text-content h2 {
  margin-bottom: 10px;
}

.img-text-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.1rem;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.service-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.price-note {
  font-size: 0.7rem;
  color: var(--text-light);
  display: block;
  margin-top: 2px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.process-step {
  text-align: center;
  padding: 20px 12px;
  position: relative;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-heading);
}

.process-step h4 {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.process-step p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.feature-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.feature-item h4 {
  font-size: 0.88rem;
  margin-bottom: 3px;
}

.feature-item p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 52px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  max-width: 460px;
  margin: 0 auto 22px;
  font-size: 0.9rem;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: #b5834f;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-white:hover {
  background: var(--surface);
  color: var(--primary-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.contact-form-card h3 {
  margin-bottom: 4px;
}

.contact-form-card > p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 18px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  transition: border-color var(--transition);
  background: var(--bg);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.form-check input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.4;
}

.contact-info-card {
  padding: 28px;
}

.contact-info-card h3 {
  margin-bottom: 18px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.contact-detail i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.contact-detail h4 {
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.contact-detail p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-wrapper iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 22px;
}

.value-card {
  background: var(--white);
  padding: 24px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.value-card i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.value-card h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.consultation-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.consult-feature {
  display: flex;
  gap: 12px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.consult-feature:hover {
  box-shadow: var(--shadow);
}

.consult-feature i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.consult-feature h4 {
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.consult-feature p {
  font-size: 0.76rem;
  color: var(--text-light);
}

.faq-list {
  max-width: 680px;
  margin: 22px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item h4 {
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.faq-item p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 22px 0;
  font-size: 0.74rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  color: var(--white);
  padding: 14px 20px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.privacy-popup.visible {
  transform: translateY(0);
}

.privacy-popup-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.privacy-popup-inner p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.85);
  flex: 1;
  margin: 0;
}

.privacy-popup-inner a {
  color: var(--secondary-light);
}

.privacy-accept {
  padding: 7px 20px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.78rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}

.privacy-accept:hover {
  background: #b5834f;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-wrapper > main {
  flex: 1;
}

.page-fullheight > main {
  display: flex;
  flex-direction: column;
}

.fullpage-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.fullpage-content {
  max-width: 480px;
}

.fullpage-content i {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

.fullpage-content h1 {
  margin-bottom: 10px;
}

.fullpage-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.policy-content {
  padding: 40px 0 60px;
}

.policy-content h1 {
  margin-bottom: 6px;
}

.policy-date {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 26px;
}

.policy-content h2 {
  font-size: 1.25rem;
  margin-top: 30px;
  margin-bottom: 10px;
}

.policy-content h3 {
  font-size: 1.05rem;
  margin-top: 20px;
  margin-bottom: 8px;
}

.policy-content p {
  font-size: 0.86rem;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.7;
}

.policy-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.policy-content ul li {
  font-size: 0.86rem;
  margin-bottom: 6px;
  color: var(--text);
  list-style: disc;
  line-height: 1.65;
}

.approach-block {
  background: var(--white);
  border-left: 3px solid var(--secondary);
  padding: 22px 24px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-top: 20px;
}

.approach-block p {
  font-size: 0.88rem;
  color: var(--text-light);
}

.steps-timeline {
  margin-top: 24px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  position: relative;
}

.timeline-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
}

.timeline-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 42px;
  width: 2px;
  height: calc(100% - 18px);
  background: var(--border);
}

.timeline-content h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.contact-hero-decor {
  position: relative;
}

.contact-hero-decor::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 30px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

@media (max-width: 900px) {
  .services-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .img-text-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }

  .hero-home {
    padding: 50px 0;
  }

  .consultation-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .services-grid,
  .values-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 36px 0;
  }

  .hero-home {
    padding: 36px 0;
  }

  .page-hero {
    padding: 34px 0;
  }

  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.2rem; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .privacy-popup-inner {
    flex-direction: column;
    text-align: center;
  }

  .fullpage-content i {
    font-size: 2.5rem;
  }

  .contact-form-card {
    padding: 20px;
  }
}

@media (max-width: 380px) {
  body {
    font-size: 13px;
  }

  .container {
    padding: 0 14px;
  }

  .brand {
    font-size: 1.15rem;
  }

  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.1rem; }

  .hero-home {
    padding: 28px 0;
  }

  .service-card {
    padding: 22px 16px;
  }
}
