@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600;700;800&family=Raleway:wght@400;500;600&display=swap');

:root {
  --primary: hsl(290, 27%, 40%);
  --secondary: hsl(50, 22%, 25%);
  --accent: hsl(170, 52%, 40%);
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: #f4f4f1;
    color: #2b2b2b;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
  }
  .navbar {
    background-color: #f7f6f3;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .navbar-brand {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: hsl(290, 27%, 40%);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
  }
  .navbar-brand img {
    border-radius: 12px;
  }
  .nav-link {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: #2b2b2b !important;
    margin: 0 8px;
    transition: color 0.2s ease;
  }
  .nav-link:hover {
    color: hsl(170, 52%, 40%) !important;
  }
  .navbar-toggler {
    border-color: hsl(290, 27%, 40%);
  }
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem hsla(290, 27%, 40%, 0.25);
  }



  

  .thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(290, 27%, 96%) 0%, hsl(170, 52%, 95%) 100%);
    padding: 3rem 1rem;
    font-family: 'Raleway', sans-serif;
  }

  .thankyou-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 3rem 2.5rem;
    max-width: 640px;
    width: 100%;
    text-align: center;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    border-top: 6px solid var(--accent);
  }

  .success-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), hsl(170, 52%, 32%));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    box-shadow: 0 0.5rem 1.5rem hsla(170, 52%, 40%, 0.35);
    animation: pop-in 0.5s ease-out;
  }

  .success-icon-wrapper svg {
    width: 50px;
    height: 50px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  @keyframes pop-in {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
  }

  .thankyou-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }

  .thankyou-text {
    color: var(--secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
  }

  .thankyou-divider {
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: 1.5rem auto;
  }

  .info-box {
    background: hsl(290, 27%, 97%);
    border-left: 4px solid var(--primary);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    text-align: left;
    margin: 1.75rem 0;
  }

  .info-box p {
    color: var(--secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .info-box p:last-child {
    margin-bottom: 0;
  }

  .info-box svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    margin-top: 2px;
  }

  .btn-thankyou {
    background-color: var(--primary);
    border: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2.25rem;
    border-radius: 0.6rem;
    font-size: 1rem;
    transition: all 0.25s ease;
    box-shadow: 0 0.4rem 1rem hsla(290, 27%, 40%, 0.3);
  }

  .btn-thankyou:hover {
    background-color: hsl(290, 27%, 32%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0.6rem 1.4rem hsla(290, 27%, 40%, 0.4);
  }

  @media (max-width: 576px) {
    .thankyou-card {
      padding: 2rem 1.5rem;
    }

    .thankyou-heading {
      font-size: 1.6rem;
    }
  }

footer.site-footer {
  background: hsl(50, 22%, 25%);
  color: #f4f4f1;
  font-family: 'Raleway', sans-serif;
  border-radius: 24px 24px 0 0;
  padding: 48px 0 24px;
}
footer.site-footer h5 {
  font-family: 'Inter', sans-serif;
  color: hsl(170, 52%, 40%);
  margin-bottom: 16px;
}
footer.site-footer a {
  color: #f4f4f1;
  text-decoration: none;
}
footer.site-footer a:hover {
  color: hsl(170, 52%, 40%);
}
footer.site-footer .footer-desc {
  color: #e6e4de;
  font-size: 0.95rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: hsl(290, 27%, 40%);
  color: #fff;
  margin-right: 10px;
  font-size: 1.2rem;
  transition: background 0.3s ease, transform 0.3s ease;
}
.footer-social a:hover {
  background: hsl(170, 52%, 40%);
  color: #fff;
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(244,244,241,0.15);
  margin-top: 24px;
  padding-top: 16px;
  font-size: 0.85rem;
  color: #cfcdc6;
}
.footer-links li {
  margin-bottom: 8px;
}

#consentBox {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #f4f4f1;
  border-top: 3px solid hsl(290, 27%, 40%);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 18px 0;
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Raleway', sans-serif;
}
#consentBox h5 {
  font-family: 'Inter', sans-serif;
  color: hsl(290, 27%, 40%);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
#consentBox p, #consentBox li {
  color: #333;
  font-size: 0.85rem;
  margin-bottom: 4px;
}
#consentBox .cookie-cat {
  background: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  margin-bottom: 6px;
  border: 1px solid #e0dfda;
}
#consentBox .cookie-cat strong {
  color: hsl(170, 52%, 40%);
}
.consent-btn {
  border-radius: 14px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  width: 100%;
  transition: all 0.3s ease;
}
.btn-accept-all {
  background: hsl(290, 27%, 40%);
  color: #fff;
}
.btn-accept-all:hover {
  background: hsl(290, 27%, 30%);
  color: #fff;
}
.btn-reject-optional {
  background: hsl(170, 52%, 40%);
  color: #fff;
}
.btn-reject-optional:hover {
  background: hsl(170, 52%, 30%);
  color: #fff;
}
.link-manage {
  color: hsl(50, 22%, 25%);
  font-size: 0.85rem;
  text-decoration: underline;
}
.link-manage:hover {
  color: hsl(290, 27%, 40%);
}

#about-main {
  background: #f4f4f1;
  font-family: 'Raleway', sans-serif;
  color: #2a2a2a;
  padding: 56px 0;
}
#about-main h1, #about-main h2, #about-main h3 {
  font-family: 'Inter', sans-serif;
  color: hsl(50, 22%, 25%);
}
#about-main .hero-box {
  background: hsl(290, 27%, 40%);
  color: #f7f6f3;
  border-radius: 24px;
  padding: 48px 32px;
  margin-bottom: 48px;
}
#about-main .hero-box h1 {
  color: #ffffff;
}
#about-main .hero-box p {
  color: #f0eaf3;
  font-size: 1.1rem;
}
#about-main .content-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 48px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
#about-main img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}
#about-main .value-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  height: 100%;
  border-top: 4px solid hsl(170, 52%, 40%);
}
#about-main .value-card h3 {
  font-size: 1.1rem;
  color: hsl(290, 27%, 40%);
}
#about-main .stat-box {
  background: hsl(170, 52%, 40%);
  color: #ffffff;
  border-radius: 20px;
  padding: 28px 16px;
  text-align: center;
  height: 100%;
}
#about-main .stat-box .num {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
}
#about-main .stat-box .label {
  color: #eafaf5;
  font-size: 0.95rem;
}
#about-main .qa-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 16px;
}
#about-main .qa-item h3 {
  font-size: 1.05rem;
  color: hsl(290, 27%, 40%);
  margin-bottom: 8px;
}
#about-main .cta-box {
  background: hsl(50, 22%, 25%);
  color: #f7f6f3;
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
}
#about-main .cta-box h2 {
  color: #ffffff;
}
#about-main .cta-box p {
  color: #e8e4da;
}
#about-main .btn-accent {
  background: hsl(170, 52%, 40%);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 12px 32px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
#about-main .btn-accent:hover {
  background: hsl(170, 52%, 32%);
  color: #ffffff;
}
#about-main .section-title {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  #about-main .hero-box {
    padding: 32px 20px;
  }
  #about-main .content-card {
    padding: 20px;
  }
}

#contact-section {
  background: #f4f4f1;
  font-family: 'Raleway', sans-serif;
  padding: 52px 0;
  color: #2a2a2a;
}
#contact-section h1, #contact-section h2, #contact-section h3 {
  font-family: 'Inter', sans-serif;
}
#contact-section .lead-text {
  color: #2a2a2a;
  max-width: 760px;
}
#contact-section .info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  height: 100%;
}
#contact-section .info-card h3 {
  color: hsl(290, 27%, 40%);
  font-size: 1.3rem;
  margin-bottom: 20px;
}
#contact-section .info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
#contact-section .info-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: hsl(170, 52%, 40%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
#contact-section .info-item a {
  color: hsl(290, 27%, 40%);
  text-decoration: none;
  font-weight: 600;
}
#contact-section .info-item a:hover {
  color: hsl(170, 52%, 40%);
  text-decoration: underline;
}
#contact-section .info-item p {
  margin: 0;
  color: #2a2a2a;
}
#contact-section .hours-box {
  background: #f4f4f1;
  border-radius: 14px;
  padding: 16px 18px;
  margin-top: 8px;
  font-size: 0.95rem;
}
#contact-section .map-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.9rem;
  color: hsl(170, 52%, 40%);
  font-weight: 600;
  text-decoration: none;
}
#contact-section .map-link:hover {
  text-decoration: underline;
}
#contact-section .form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
#contact-section .form-control {
  border-radius: 12px;
  border: 1px solid #ddd8cf;
  padding: 12px 16px;
  font-family: 'Raleway', sans-serif;
}
#contact-section .form-control:focus {
  border-color: hsl(290, 27%, 40%);
  box-shadow: 0 0 0 0.2rem hsla(290, 27%, 40%, 0.15);
}
#contact-section label {
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 6px;
}
#contact-section .btn-submit {
  background: hsl(290, 27%, 40%);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 13px 32px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s ease;
}
#contact-section .btn-submit:hover {
  background: hsl(170, 52%, 40%);
  color: #ffffff;
}
#contact-section .response-note {
  background: hsl(170, 52%, 40%);
  color: #ffffff;
  border-radius: 16px;
  padding: 18px 24px;
  margin-bottom: 32px;
  display: inline-block;
}
#contact-section .cta-bottom {
  text-align: center;
  margin-top: 48px;
}
#contact-section .cta-bottom .btn {
  background: hsl(290, 27%, 40%);
  color: #ffffff;
  border-radius: 14px;
  padding: 14px 38px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-block;
}
#contact-section .cta-bottom .btn:hover {
  background: hsl(170, 52%, 40%);
  color: #ffffff;
}

.hero-compact{
  background:#f4f4f1;
  padding:56px 0 48px;
}
.hero-compact h1{
  font-family:'Inter',sans-serif;
  font-weight:700;
  color:hsl(290, 27%, 40%);
  font-size:2.4rem;
}
.hero-compact h2{
  font-family:'Inter',sans-serif;
  font-weight:500;
  color:hsl(170, 52%, 40%);
  font-size:1.3rem;
  margin-top:8px;
}
.hero-compact p{
  font-family:'Raleway',sans-serif;
  color:hsl(50, 22%, 25%);
  font-size:1.05rem;
  max-width:640px;
  margin:16px 0 24px;
}
.hero-cta-btn{
  background:hsl(290, 27%, 40%);
  color:#f8f9fa;
  border:none;
  border-radius:18px;
  padding:12px 28px;
  font-family:'Raleway',sans-serif;
  font-weight:600;
  font-size:1rem;
  transition:background 0.25s ease, transform 0.2s ease;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.hero-cta-btn:hover{
  background:hsl(170, 52%, 40%);
  color:#fff;
  transform:translateY(-2px);
}

.services-section {
  background: #f4f4f1;
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
}
.services-section h2, .services-section h3 {
  font-family: 'Inter', sans-serif;
}
.services-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
  color: #333;
}
.services-intro h2 {
  color: hsl(290, 27%, 40%);
  font-weight: 700;
  margin-bottom: 16px;
}
.service-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  height: 100%;
  border: 1px solid #ececec;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(85, 45, 90, 0.15);
  border-color: hsl(170, 52%, 40%);
}
.service-icon {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: hsl(290, 27%, 40%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: background 0.25s ease;
}
.service-card:hover .service-icon {
  background: hsl(170, 52%, 40%);
}
.service-body h3 {
  color: hsl(50, 22%, 25%);
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-body p {
  color: #444;
  font-size: 0.92rem;
  margin-bottom: 12px;
  line-height: 1.5;
}
.service-price {
  display: inline-block;
  background: hsl(170, 52%, 40%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 12px;
}
.services-note {
  max-width: 760px;
  margin: 44px auto 0;
  text-align: center;
  color: #555;
  font-size: 0.95rem;
}

#portfolio {
  background: #f4f4f1;
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
}
#portfolio h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(290, 27%, 40%);
  font-weight: 700;
}
#portfolio .lead-text {
  color: #333;
  max-width: 700px;
  margin: 0 auto;
}
#portfolio .portfolio-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#portfolio .portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
#portfolio .portfolio-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eee;
}
#portfolio .portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#portfolio .portfolio-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#portfolio .badge-category {
  background: hsl(170, 52%, 40%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 12px;
  align-self: flex-start;
}
#portfolio .portfolio-body h3 {
  font-family: 'Inter', sans-serif;
  color: hsl(50, 22%, 25%);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
#portfolio .portfolio-body p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
}
#portfolio .btn-details {
  background: hsl(290, 27%, 40%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 10px 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 14px;
  align-self: flex-start;
  transition: background 0.2s ease;
}
#portfolio .btn-details:hover {
  background: hsl(170, 52%, 40%);
  color: #fff;
}
#portfolio .modal-content {
  border-radius: 20px;
  border: none;
  font-family: 'Raleway', sans-serif;
}
#portfolio .modal-header {
  border-bottom: none;
  padding: 24px 24px 0 24px;
}
#portfolio .modal-title {
  font-family: 'Inter', sans-serif;
  color: hsl(290, 27%, 40%);
  font-weight: 700;
}
#portfolio .modal-body {
  padding: 12px 24px 24px 24px;
  color: #333;
}
#portfolio .modal-body img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 18px;
}
#portfolio .modal-body .modal-badge {
  background: hsl(170, 52%, 40%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 14px;
}
#portfolio .btn-close-custom {
  background: hsl(50, 22%, 25%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 10px 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
#portfolio .btn-close-custom:hover {
  background: hsl(290, 27%, 40%);
  color: #fff;
}

#results {
  background: #f4f4f1;
  padding: 56px 0;
}
#results .section-heading {
  font-family: 'Inter', sans-serif;
  color: hsl(50, 22%, 25%);
  font-weight: 700;
}
#results .section-subtext {
  font-family: 'Raleway', sans-serif;
  color: #444;
  max-width: 640px;
}
#results .stat-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
}
#results .stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background: hsl(290, 27%, 40%);
  color: #ffffff;
  font-size: 1.8rem;
}
#results .stat-card:nth-child(2) .stat-icon {
  background: hsl(170, 52%, 40%);
}
#results .stat-card:nth-child(3) .stat-icon {
  background: hsl(50, 22%, 25%);
}
#results .stat-card:nth-child(4) .stat-icon {
  background: hsl(290, 27%, 40%);
}
#results .stat-number {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: hsl(290, 27%, 40%);
  display: block;
  animation: countUpFade 0.9s ease-out;
}
#results .stat-card:nth-child(2) .stat-number {
  color: hsl(170, 52%, 40%);
}
#results .stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: hsl(50, 22%, 25%);
  font-size: 1.05rem;
  margin-top: 6px;
  display: block;
}
#results .stat-context {
  font-family: 'Raleway', sans-serif;
  color: #666;
  font-size: 0.92rem;
  margin-top: 6px;
}
@keyframes countUpFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  #results .stat-number {
    font-size: 2.2rem;
  }
  #results .stat-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
}

#feedback {
  background-color: #f4f4f1;
  padding: 56px 0;
  font-family: 'Raleway', sans-serif;
}
#feedback h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(290, 27%, 40%);
  font-weight: 700;
}
#feedback .lead-text {
  color: #333;
  max-width: 700px;
}
#feedback .review-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #eceae6;
  display: flex;
  flex-direction: column;
}
#feedback .review-card.accent-border {
  border-left: 5px solid hsl(170, 52%, 40%);
}
#feedback .review-card.primary-border {
  border-left: 5px solid hsl(290, 27%, 40%);
}
#feedback .stars {
  color: hsl(50, 22%, 25%);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
#feedback .stars .empty {
  color: #d8d5cf;
}
#feedback .review-text {
  color: #333;
  font-size: 0.98rem;
  line-height: 1.55;
  flex-grow: 1;
}
#feedback .review-author {
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: hsl(290, 27%, 40%);
  font-size: 0.95rem;
}
#feedback .review-location {
  color: #6b6b66;
  font-size: 0.85rem;
  font-weight: 400;
}
#feedback .badge-rating {
  display: inline-block;
  background: hsl(170, 52%, 40%);
  color: #fff;
  border-radius: 12px;
  padding: 3px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}
#feedback .review-card.compact {
  padding: 22px;
}
#feedback .review-card.compact .review-text {
  font-size: 1.05rem;
  font-style: italic;
}
#feedback .stats-strip {
  background: hsl(290, 27%, 40%);
  color: #f7f6f3;
  border-radius: 20px;
  padding: 24px;
  margin-top: 40px;
}
#feedback .stats-strip .stat-num {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: hsl(170, 52%, 40%);
}
#feedback .stats-strip .stat-label {
  font-size: 0.85rem;
  color: #ece7f0;
}
@media (max-width: 767px) {
  #feedback .review-card { padding: 22px; }
}

#updates {
  background: #f4f4f1;
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
}
#updates .updates-card {
  background: hsl(290, 27%, 40%);
  border-radius: 22px;
  padding: 48px 40px;
  color: #f7f6f3;
}
#updates h2 {
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 16px;
}
#updates p {
  color: #f0e9f3;
  font-size: 1.02rem;
  margin-bottom: 28px;
}
#updates .form-control {
  border-radius: 16px;
  border: none;
  padding: 14px 18px;
  font-family: 'Raleway', sans-serif;
}
#updates .form-control:focus {
  box-shadow: 0 0 0 3px hsl(170, 52%, 40%, 0.4);
}
#updates .btn-submit {
  background: hsl(170, 52%, 40%);
  color: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 14px 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: background 0.2s ease;
}
#updates .btn-submit:hover {
  background: hsl(170, 52%, 32%);
  color: #ffffff;
}
#updates small {
  display: block;
  margin-top: 16px;
  color: #e5dce8;
}

#common-questions {
  background: #f4f4f1;
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
}
#common-questions h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(290, 27%, 40%);
  font-weight: 700;
}
#common-questions .lead {
  color: #333;
}
#common-questions .accordion-item {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
#common-questions .accordion-button {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: hsl(50, 22%, 25%);
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px;
}
#common-questions .accordion-button:not(.collapsed) {
  color: #fff;
  background: hsl(290, 27%, 40%);
  box-shadow: none;
}
#common-questions .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(120, 70, 140, 0.25);
}
#common-questions .accordion-button::after {
  filter: none;
}
#common-questions .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
#common-questions .accordion-body {
  color: #333;
  padding: 20px 22px;
  line-height: 1.7;
  background: #fff;
}
#common-questions .accent-text {
  color: hsl(170, 52%, 40%);
  font-weight: 600;
}

#contacts {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
  color: #2b2b2b;
}
#contacts h2, #contacts h3 {
  font-family: 'Inter', sans-serif;
  color: hsl(290, 27%, 40%);
}
#contacts .contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
#contacts .info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
#contacts .info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background-color: hsl(170, 52%, 40%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
#contacts .info-item a {
  color: hsl(290, 27%, 40%);
  text-decoration: none;
  font-weight: 600;
}
#contacts .info-item a:hover {
  text-decoration: underline;
}
#contacts .info-item p {
  margin: 0;
  color: #3a3a3a;
}
#contacts .map-link {
  color: hsl(170, 52%, 40%);
  font-weight: 600;
  text-decoration: none;
}
#contacts .map-link:hover {
  text-decoration: underline;
}
#contacts .form-control {
  border-radius: 14px;
  border: 1px solid #d8d6d0;
  padding: 12px 16px;
  font-family: 'Raleway', sans-serif;
}
#contacts .form-control:focus {
  border-color: hsl(290, 27%, 40%);
  box-shadow: 0 0 0 0.2rem hsla(290, 27%, 40%, 0.15);
}
#contacts .btn-submit {
  background-color: hsl(290, 27%, 40%);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 12px 30px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: background-color 0.2s ease;
}
#contacts .btn-submit:hover {
  background-color: hsl(170, 52%, 40%);
  color: #ffffff;
}
#contacts .hours-box {
  background-color: hsl(50, 22%, 25%);
  color: #f7f6f3;
  border-radius: 16px;
  padding: 20px;
  margin-top: 10px;
}
#contacts .hours-box p {
  margin: 0;
  color: #f7f6f3;
}

#legal-notice {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
}
#legal-notice h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(50, 22%, 25%);
  font-weight: 700;
}
#legal-notice .disclaimer-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #e8e6e1;
}
#legal-notice .icon-wrapper {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  background-color: hsl(170, 52%, 40%);
  display: flex;
  align-items: center;
  justify-content: center;
}
#legal-notice .icon-wrapper i {
  color: #ffffff;
  font-size: 1.6rem;
}
#legal-notice p {
  color: #333333;
  line-height: 1.7;
  font-size: 1.02rem;
  margin-bottom: 0;
}

#portfolio-content {
  background-color: #f4f4f1;
  font-family: 'Raleway', sans-serif;
  color: #2a2a2a;
  padding: 52px 0;
}
#portfolio-content h1,
#portfolio-content h2,
#portfolio-content h3,
#portfolio-content .modal-title {
  font-family: 'Inter', sans-serif;
}
#portfolio-content .intro-block {
  max-width: 860px;
  margin: 0 auto 48px auto;
}
#portfolio-content .intro-block h1 {
  color: hsl(290, 27%, 40%);
  font-weight: 700;
  margin-bottom: 20px;
}
#portfolio-content .sub-heading-block {
  margin-bottom: 32px;
}
#portfolio-content .sub-heading-block h2 {
  color: hsl(50, 22%, 25%);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
}
#portfolio-content .sub-heading-block p {
  line-height: 1.7;
  margin-bottom: 0;
}
#portfolio-content .card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#portfolio-content .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
#portfolio-content .card-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #e8e6e1;
}
#portfolio-content .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#portfolio-content .badge-category {
  background-color: hsl(170, 52%, 40%);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 10px;
}
#portfolio-content .card-body {
  padding: 20px;
}
#portfolio-content .card-title {
  color: hsl(50, 22%, 25%);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
#portfolio-content .card-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #444;
}
#portfolio-content .btn-details {
  background-color: hsl(290, 27%, 40%);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 12px;
}
#portfolio-content .btn-details:hover {
  background-color: hsl(290, 27%, 32%);
  color: #ffffff;
}
#portfolio-content .modal-content {
  border-radius: 20px;
  border: none;
}
#portfolio-content .modal-header {
  border-bottom: 1px solid #eee;
}
#portfolio-content .modal-title {
  color: hsl(290, 27%, 40%);
  font-weight: 700;
}
#portfolio-content .modal-body img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
}
#portfolio-content .modal-body p {
  line-height: 1.7;
  color: #444;
}
#portfolio-content .cta-block {
  margin-top: 52px;
  background-color: hsl(290, 27%, 40%);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
}
#portfolio-content .cta-block h2 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 14px;
}
#portfolio-content .cta-block p {
  color: #f0e9f3;
  margin-bottom: 22px;
}
#portfolio-content .cta-block .btn-cta {
  background-color: hsl(170, 52%, 40%);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 12px 30px;
  font-weight: 700;
  font-size: 1rem;
}
#portfolio-content .cta-block .btn-cta:hover {
  background-color: hsl(170, 52%, 32%);
  color: #ffffff;
}

#services-body {
  background-color: #f4f4f1;
  font-family: 'Raleway', sans-serif;
  color: #2a2a2a;
  padding: 56px 0;
}
#services-body h1, #services-body h2, #services-body h3 {
  font-family: 'Inter', sans-serif;
}
#services-body .intro {
  max-width: 780px;
  margin: 0 auto 48px auto;
  text-align: center;
}
#services-body .intro h1 {
  color: hsl(290, 27%, 40%);
  font-weight: 700;
  margin-bottom: 16px;
}
#services-body .intro p {
  color: #3a3a3a;
  font-size: 1.05rem;
}
#services-body .service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  height: 100%;
  border: 1px solid #eae7e2;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#services-body .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(90, 50, 100, 0.15);
  border-color: hsl(170, 52%, 40%);
}
#services-body .service-icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: hsl(290, 27%, 40%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
#services-body .service-card:hover .service-icon {
  background: hsl(170, 52%, 40%);
}
#services-body .service-content h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: hsl(50, 22%, 25%);
  margin-bottom: 8px;
}
#services-body .service-content p {
  font-size: 0.92rem;
  color: #4a4a4a;
  margin-bottom: 12px;
}
#services-body .service-price {
  display: inline-block;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  background: hsl(170, 52%, 40%);
  padding: 5px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
}
#services-body .details-section {
  margin-top: 56px;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
}
#services-body .details-section h2 {
  color: hsl(290, 27%, 40%);
  font-weight: 700;
  margin-bottom: 20px;
}
#services-body .table-responsive table {
  margin-bottom: 0;
}
#services-body table th {
  background: hsl(50, 22%, 25%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
#services-body table td, #services-body table th {
  vertical-align: middle;
  padding: 12px 14px;
}
#services-body table tbody tr:nth-child(odd) {
  background-color: #f9f8f6;
}
#services-body .cta-box {
  margin-top: 56px;
  background: hsl(290, 27%, 40%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  color: #ffffff;
}
#services-body .cta-box h2 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 12px;
}
#services-body .cta-box p {
  color: #f0e9f2;
  margin-bottom: 20px;
}
#services-body .cta-box .btn-cta {
  background: hsl(170, 52%, 40%);
  color: #ffffff;
  border: none;
  padding: 12px 32px;
  border-radius: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s ease;
}
#services-body .cta-box .btn-cta:hover {
  background: #ffffff;
  color: hsl(290, 27%, 40%);
}
@media (max-width: 576px) {
  #services-body .service-card {
    flex-direction: column;
  }
}
