@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

body {
    font-family: 'Playfair Display', serif;
    background-color: #f5f4f1;
    color: #222;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Ubuntu', sans-serif;
  }
  .navbar-custom {
    background-color: #f5f4f1;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .navbar-custom .navbar-brand {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: hsl(352, 17%, 14%);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .navbar-custom .nav-link {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(352, 17%, 14%);
    font-weight: 600;
    margin-left: 12px;
    padding: 8px 14px !important;
    border-radius: 16px;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .navbar-custom .nav-link:hover,
  .navbar-custom .nav-link:focus {
    background-color: hsl(300, 23%, 47%);
    color: #ffffff;
  }
  .navbar-toggler {
    border-color: hsl(324, 17%, 28%);
  }
  .navbar-toggler-icon {
    filter: none;
  }
  @media (max-width: 991px) {
    .navbar-custom .nav-link {
      margin-left: 0;
      margin-bottom: 6px;
    }
  }

.hero-section {
  background-color: #f4f4f1;
  padding: 96px 0;
  font-family: 'Playfair Display', serif;
}
.hero-section h1 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  color: hsl(352, 17%, 14%);
  font-size: 2.6rem;
}
.hero-section h2 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  color: hsl(300, 23%, 47%);
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.hero-section p.hero-desc {
  color: hsl(352, 17%, 14%);
  font-size: 1.1rem;
  max-width: 700px;
}
.hero-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 48px;
}
.hero-img-wrap img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}
.btn-hero {
  background-color: hsl(300, 23%, 47%);
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  padding: 14px 36px;
  border-radius: 18px;
  border: none;
  font-size: 1.05rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-hero:hover {
  background-color: hsl(324, 17%, 28%);
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .hero-section h1 { font-size: 2rem; }
  .hero-section h2 { font-size: 1.15rem; }
  .hero-section { padding: 64px 0; }
}

.services-section {
  background-color: #f4f4f1;
  padding: 96px 0;
  font-family: 'Playfair Display', serif;
}
.services-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(352, 17%, 14%);
  font-weight: 700;
}
.services-section .lead-text {
  color: hsl(324, 17%, 28%);
  max-width: 700px;
}
.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  border: 1px solid #e8e6e2;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(60, 30, 50, 0.15);
  border-color: hsl(300, 23%, 47%);
}
.service-icon-wrap {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: hsl(324, 17%, 28%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.service-card:hover .service-icon-wrap {
  background: hsl(300, 23%, 47%);
}
.service-icon-wrap i {
  font-size: 30px;
  color: #f7f6f3;
}
.service-content h3 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.25rem;
  color: hsl(352, 17%, 14%);
  margin-bottom: 8px;
  font-weight: 700;
}
.service-content p {
  color: #4a4550;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid #eee;
  padding-top: 14px;
}
.service-price {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  color: hsl(300, 23%, 47%);
  font-size: 1.05rem;
}
.service-term {
  font-size: 0.85rem;
  color: hsl(324, 17%, 28%);
  background: #f4f4f1;
  padding: 5px 12px;
  border-radius: 12px;
}
@media (max-width: 576px) {
  .service-card {
    flex-direction: column;
    text-align: left;
  }
}

#projects {
  background:#f4f4f1;
  padding:96px 0;
  font-family:'Playfair Display', serif;
  color:#222;
}
#projects h2 {
  font-family:'Ubuntu', sans-serif;
  color:hsl(324, 17%, 28%);
  font-weight:700;
}
#projects .lead-text {
  color:hsl(352, 17%, 14%);
  max-width:680px;
  margin:0 auto 56px;
}
#projects .case-card {
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  height:100%;
  box-shadow:0 4px 14px rgba(0,0,0,0.06);
  border:none;
  transition:transform .2s ease, box-shadow .2s ease;
}
#projects .case-card:hover {
  transform:translateY(-4px);
  box-shadow:0 10px 24px rgba(0,0,0,0.1);
}
#projects .case-card img {
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  display:block;
}
#projects .case-card .card-body {
  padding:22px;
}
#projects .case-card .badge-cat {
  background:hsl(300, 23%, 47%);
  color:#fff;
  font-family:'Ubuntu', sans-serif;
  font-size:0.75rem;
  padding:6px 12px;
  border-radius:30px;
  display:inline-block;
  margin-bottom:12px;
}
#projects .case-card h3 {
  font-family:'Ubuntu', sans-serif;
  font-size:1.15rem;
  color:hsl(352, 17%, 14%);
  margin-bottom:10px;
}
#projects .case-card p {
  color:#444;
  font-size:0.95rem;
  line-height:1.5;
}
#projects .btn-details {
  background:hsl(324, 17%, 28%);
  color:#fff;
  border:none;
  border-radius:14px;
  padding:8px 18px;
  font-family:'Ubuntu', sans-serif;
  font-size:0.9rem;
  margin-top:10px;
}
#projects .btn-details:hover {
  background:hsl(300, 23%, 47%);
  color:#fff;
}
#projects .modal-content {
  border-radius:20px;
  border:none;
  font-family:'Playfair Display', serif;
}
#projects .modal-header {
  background:hsl(324, 17%, 28%);
  color:#fff;
  border-radius:20px 20px 0 0;
}
#projects .modal-header .btn-close {
  filter:brightness(0) invert(1);
}
#projects .modal-title {
  font-family:'Ubuntu', sans-serif;
}
#projects .modal-body img {
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:18px;
}
#projects .modal-body .badge-cat {
  background:hsl(300, 23%, 47%);
  color:#fff;
  padding:6px 12px;
  border-radius:30px;
  font-family:'Ubuntu', sans-serif;
  font-size:0.8rem;
}
#projects .modal-body p {
  color:#333;
  line-height:1.6;
}
@media (max-width:576px){
  #projects {padding:64px 0;}
}

#why-us {
  background-color: #f4f4f1;
  padding: 100px 0;
  font-family: 'Playfair Display', serif;
}
#why-us h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(352, 17%, 14%);
  font-weight: 700;
}
#why-us .lead {
  color: hsl(324, 17%, 28%);
}
#why-us .advantage-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
#why-us .advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
  background-color: hsl(324, 17%, 28%);
}
#why-us .advantage-card:hover h3,
#why-us .advantage-card:hover p {
  color: #f7f6f3;
}
#why-us .advantage-card:hover .icon-wrap {
  background-color: hsl(300, 23%, 47%);
  color: #fff;
}
#why-us .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: hsl(300, 23%, 47%, 0.12);
  background-color: rgba(159, 68, 158, 0.12);
  color: hsl(300, 23%, 47%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#why-us .advantage-card h3 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: hsl(352, 17%, 14%);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
#why-us .advantage-card p {
  color: hsl(324, 17%, 28%);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 0;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  #why-us { padding: 64px 0; }
}

#statistics {
  background-color: #f4f4f1;
  padding: 96px 0;
  font-family: 'Playfair Display', serif;
}

#statistics h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(352, 17%, 14%);
  font-weight: 700;
}

#statistics .lead-text {
  color: hsl(324, 17%, 28%);
  max-width: 640px;
  margin: 0 auto 56px;
}

#statistics .stat-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  height: 100%;
  border: 1px solid #e8e6e2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#statistics .stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

#statistics .stat-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background-color: hsl(300, 23%, 47%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

#statistics .stat-number {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: hsl(352, 17%, 14%);
  line-height: 1;
  margin-bottom: 8px;
  animation: countUp 0.8s ease-out;
}

#statistics .stat-label {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(324, 17%, 28%);
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

#statistics .stat-context {
  color: #6b6469;
  font-size: 0.92rem;
  font-style: italic;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 767px) {
  #statistics {
    padding: 64px 0;
  }
  #statistics .stat-card {
    padding: 32px 20px;
    margin-bottom: 16px;
  }
}

#updates {
  background-color: hsl(324, 17%, 28%);
  padding: 96px 0;
  border-radius: 24px;
  margin: 96px auto;
  max-width: 1200px;
}
#updates h2 {
  font-family: 'Ubuntu', sans-serif;
  color: #f7f6f3;
  font-weight: 700;
  margin-bottom: 16px;
}
#updates p {
  font-family: 'Playfair Display', serif;
  color: #f4f4f1;
  font-size: 1.05rem;
  margin-bottom: 32px;
}
#updates .newsletter-box {
  background-color: hsl(352, 17%, 14%);
  border-radius: 20px;
  padding: 48px;
}
#updates .form-control {
  border-radius: 16px;
  border: none;
  padding: 12px 20px;
  font-family: 'Playfair Display', serif;
  color: #222;
}
#updates .form-control:focus {
  box-shadow: 0 0 0 3px hsl(300, 23%, 47%);
}
#updates .btn-subscribe {
  background-color: hsl(300, 23%, 47%);
  color: #f7f6f3;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  border-radius: 16px;
  padding: 12px 32px;
  border: none;
  transition: background-color 0.2s ease;
}
#updates .btn-subscribe:hover {
  background-color: hsl(300, 23%, 37%);
  color: #ffffff;
}
#updates small {
  color: #d8d3d6;
  font-family: 'Playfair Display', serif;
  display: block;
  margin-top: 16px;
}

#answers {
  background-color: #f4f4f1;
  padding: 96px 0;
  font-family: 'Playfair Display', serif;
}
#answers h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(352, 17%, 14%);
  font-weight: 700;
}
#answers .lead-text {
  color: hsl(324, 17%, 28%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}
#answers .accordion-item {
  border: none;
  border-radius: 18px;
  margin-bottom: 16px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
#answers .accordion-button {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  color: hsl(352, 17%, 14%);
  background-color: #ffffff;
  padding: 22px 28px;
  border-radius: 18px !important;
}
#answers .accordion-button:not(.collapsed) {
  background-color: hsl(324, 17%, 28%);
  color: #ffffff;
  box-shadow: none;
}
#answers .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
#answers .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
#answers .accordion-body {
  font-family: 'Playfair Display', serif;
  color: hsl(352, 17%, 14%);
  background-color: #ffffff;
  padding: 24px 28px;
  line-height: 1.7;
  font-size: 1.02rem;
}
@media (max-width: 576px) {
  #answers {
    padding: 64px 0;
  }
  #answers .accordion-button {
    padding: 16px 18px;
    font-size: 0.98rem;
  }
  #answers .accordion-body {
    padding: 18px 18px;
  }
}

#reach-us {
    background-color: #f4f4f1;
    padding: 100px 0;
    font-family: 'Playfair Display', serif;
}
#reach-us h2, #reach-us h3 {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(352, 17%, 14%);
}
#reach-us .contact-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}
#reach-us .form-card {
    background-color: hsl(324, 17%, 28%);
    border-radius: 20px;
    padding: 40px;
    color: #f7f6f3;
}
#reach-us .form-card h3 {
    color: #ffffff;
}
#reach-us .form-label {
    color: #f7f6f3;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
}
#reach-us .form-control {
    border-radius: 14px;
    border: none;
    padding: 12px 16px;
    font-family: 'Playfair Display', serif;
}
#reach-us .form-control:focus {
    box-shadow: 0 0 0 3px hsl(300, 23%, 47%);
}
#reach-us .btn-submit {
    background-color: hsl(300, 23%, 47%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 12px 32px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    transition: background-color 0.2s ease;
}
#reach-us .btn-submit:hover {
    background-color: hsl(300, 23%, 37%);
    color: #ffffff;
}
#reach-us .info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
#reach-us .info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: hsl(300, 23%, 47%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}
#reach-us .info-item a {
    color: hsl(324, 17%, 28%);
    text-decoration: none;
    font-weight: 600;
}
#reach-us .info-item a:hover {
    color: hsl(300, 23%, 47%);
    text-decoration: underline;
}
#reach-us .info-item p {
    margin-bottom: 0;
    color: #333333;
}
#reach-us .map-link {
    color: hsl(300, 23%, 47%);
    font-weight: 600;
    text-decoration: underline;
}
#reach-us .map-link:hover {
    color: hsl(324, 17%, 28%);
}
#reach-us .hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #333333;
    font-size: 0.95rem;
}
#reach-us .hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid #eee;
}
@media (max-width: 767px) {
    #reach-us {
        padding: 60px 0;
    }
    #reach-us .contact-card, #reach-us .form-card {
        padding: 24px;
    }
}

#legal-notice {
  background-color: #f7f6f3;
  padding: 96px 0;
  font-family: 'Playfair Display', serif;
}
#legal-notice h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(352, 17%, 14%);
  font-weight: 700;
  margin-bottom: 24px;
}
#legal-notice .disclaimer-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
#legal-notice .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: hsl(300, 23%, 47%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#legal-notice .icon-wrap i {
  color: #ffffff;
  font-size: 1.6rem;
}
#legal-notice p {
  color: hsl(352, 17%, 14%);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  #legal-notice .disclaimer-card {
    padding: 32px 24px;
  }
}

footer {
  background: hsl(352, 17%, 14%);
  color: #f4f4f1;
  font-family: 'Playfair Display', serif;
  padding: 80px 0 32px;
}
footer h5 {
  font-family: 'Ubuntu', sans-serif;
  color: #ffffff;
  margin-bottom: 20px;
}
footer p, footer a {
  color: #e6e2e4;
}
footer a {
  text-decoration: none;
  transition: color 0.2s ease;
}
footer a:hover {
  color: hsl(300, 23%, 65%);
}
footer .footer-divider {
  border-color: rgba(255,255,255,0.15);
  margin: 40px 0 24px;
}
footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: hsl(324, 17%, 28%);
  color: #ffffff;
  margin-right: 10px;
  font-size: 1.2rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
footer .social-icons a:hover {
  background: hsl(300, 23%, 47%);
  transform: translateY(-3px);
  color: #ffffff;
}
footer .footer-bottom {
  font-size: 0.9rem;
  color: #cfc9cc;
}
footer ul {
  list-style: none;
  padding-left: 0;
}
footer ul li {
  margin-bottom: 10px;
}

#consentBox {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: hsl(352, 17%, 14%);
  color: #f4f4f1;
  border-top: 3px solid hsl(300, 23%, 47%);
  padding: 20px 0;
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Playfair Display', serif;
}
#consentBox h5 {
  font-family: 'Ubuntu', sans-serif;
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
#consentBox p, #consentBox li {
  font-size: 0.9rem;
  color: #e6e2e4;
  margin-bottom: 6px;
}
#consentBox ul {
  padding-left: 18px;
  margin-bottom: 12px;
}
.cookie-btn {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 16px;
  border: none;
  font-weight: 500;
  transition: all 0.2s ease;
  width: 100%;
}
.btn-cookie-accept {
  background: hsl(300, 23%, 47%);
  color: #ffffff;
}
.btn-cookie-accept:hover {
  background: hsl(300, 23%, 37%);
  color: #ffffff;
}
.btn-cookie-reject {
  background: hsl(324, 17%, 28%);
  color: #ffffff;
}
.btn-cookie-reject:hover {
  background: hsl(324, 17%, 20%);
  color: #ffffff;
}
.cookie-link {
  color: #e6e2e4;
  text-decoration: underline;
  font-size: 0.85rem;
}
.cookie-link:hover {
  color: #ffffff;
}

#services-section {
  background: #f4f4f1;
  font-family: 'Playfair Display', serif;
  padding: 96px 0;
  color: #222;
}
#services-section h1, #services-section h2, #services-section h3 {
  font-family: 'Ubuntu', sans-serif;
}
#services-section .intro-block {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
#services-section .intro-block h1 {
  color: hsl(352, 17%, 14%);
  font-weight: 700;
  margin-bottom: 20px;
}
#services-section .intro-block p {
  font-size: 1.1rem;
  color: #3a3a3a;
  line-height: 1.7;
}
#services-section .stats-row {
  max-width: 900px;
  margin: 0 auto 72px;
  text-align: center;
}
#services-section .stats-row .stat-item {
  background: #fff;
  border-radius: 18px;
  padding: 20px 12px;
  height: 100%;
}
#services-section .stats-row .stat-item strong {
  display: block;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.6rem;
  color: hsl(300, 23%, 47%);
}
#services-section .stats-row .stat-item span {
  font-size: 0.9rem;
  color: #444;
}
#services-section .card {
  background: #fff;
  border: none;
  border-radius: 22px;
  padding: 40px 28px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
#services-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 30px rgba(74, 40, 60, 0.18);
}
#services-section .icon-wrap {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: hsl(324, 17%, 28%);
  display: flex;
  align-items: center;
  justify-content: center;
}
#services-section .icon-wrap i {
  font-size: 2rem;
  color: #f7f6f3;
}
#services-section .card h3 {
  color: hsl(352, 17%, 14%);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
}
#services-section .card p.desc {
  color: #444;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 96px;
}
#services-section .price-tag {
  display: inline-block;
  background: hsl(300, 23%, 47%);
  color: #fdf9fc;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 16px;
  margin-bottom: 18px;
}
#services-section .card .details-list {
  list-style: none;
  padding: 0;
  margin: 0 0 6px;
  text-align: left;
  font-size: 0.9rem;
  color: #4a4a4a;
}
#services-section .card .details-list li {
  padding: 4px 0;
  border-bottom: 1px solid #efece f0;
}
#services-section .card .details-list li:before {
  content: "— ";
  color: hsl(300, 23%, 47%);
}
#services-section .qa-block {
  max-width: 820px;
  margin: 96px auto 0;
}
#services-section .qa-block h2 {
  text-align: center;
  color: hsl(352, 17%, 14%);
  font-weight: 700;
  margin-bottom: 40px;
}
#services-section .accordion-item {
  background: #fff;
  border: none;
  border-radius: 16px !important;
  margin-bottom: 14px;
  overflow: hidden;
}
#services-section .accordion-button {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  color: hsl(352, 17%, 14%);
  background: #fff;
}
#services-section .accordion-button:not(.collapsed) {
  color: hsl(300, 23%, 47%);
  background: #fbf8fa;
}
#services-section .accordion-button:focus {
  box-shadow: none;
}
#services-section .accordion-body {
  color: #444;
  line-height: 1.7;
}
#services-section .cta-final {
  margin-top: 88px;
  text-align: center;
  background: hsl(324, 17%, 28%);
  border-radius: 24px;
  padding: 56px 24px;
  color: #f7f6f3;
}
#services-section .cta-final h2 {
  color: #f7f6f3;
  font-weight: 700;
  margin-bottom: 16px;
}
#services-section .cta-final p {
  color: #e6dde3;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
#services-section .btn-cta {
  background: hsl(300, 23%, 47%);
  color: #fff;
  border: none;
  padding: 12px 36px;
  border-radius: 16px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s ease;
}
#services-section .btn-cta:hover {
  background: #7d4a6e;
  color: #fff;
}
@media (max-width: 767px) {
  #services-section { padding: 64px 0; }
  #services-section .cta-final { margin-top: 56px; }
}

#contact-body {
  background: #f4f4f1;
  padding: 96px 0;
  font-family: 'Playfair Display', serif;
  color: #222;
}
#contact-body .heading-font {
  font-family: 'Ubuntu', sans-serif;
}
#contact-body h1 {
  color: hsl(352, 17%, 14%);
  font-weight: 700;
}
#contact-body .lead-text {
  color: hsl(324, 17%, 28%);
  font-size: 1.1rem;
  max-width: 700px;
}
#contact-body .card-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: none;
}
#contact-body .form-label {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(352, 17%, 14%);
  font-weight: 500;
}
#contact-body .form-control {
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 12px 16px;
  font-family: 'Playfair Display', serif;
}
#contact-body .form-control:focus {
  border-color: hsl(300, 23%, 47%);
  box-shadow: 0 0 0 0.2rem hsla(300, 23%, 47%, 0.2);
}
#contact-body .btn-submit {
  background: hsl(300, 23%, 47%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px 32px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  transition: background 0.2s ease;
}
#contact-body .btn-submit:hover {
  background: hsl(324, 17%, 28%);
  color: #fff;
}
#contact-body .info-card {
  background: hsl(352, 17%, 14%);
  color: #f7f6f3;
  border-radius: 20px;
  padding: 40px;
  height: 100%;
}
#contact-body .info-card h2 {
  color: #f7f6f3;
  font-family: 'Ubuntu', sans-serif;
}
#contact-body .info-card a {
  color: hsl(300, 40%, 78%);
  text-decoration: none;
}
#contact-body .info-card a:hover {
  color: #fff;
  text-decoration: underline;
}
#contact-body .info-item {
  margin-bottom: 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
#contact-body .info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: hsl(300, 23%, 47%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
}
#contact-body .info-item p, #contact-body .info-item span {
  color: #f0e9ec;
  margin: 0;
}
#contact-body .hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}
#contact-body .hours-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 6px 0;
  color: #ece3e7;
}
#contact-body .map-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
}
#contact-body .cta-box {
  background: hsl(324, 17%, 28%);
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-top: 80px;
}
#contact-body .cta-box h3 {
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
}
#contact-body .cta-box p {
  color: #f0e6ec;
}
#contact-body .cta-box .btn-cta {
  background: #fff;
  color: hsl(324, 17%, 28%);
  border-radius: 14px;
  padding: 12px 30px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
  transition: all 0.2s ease;
}
#contact-body .cta-box .btn-cta:hover {
  background: hsl(300, 23%, 47%);
  color: #fff;
}
@media (max-width: 768px) {
  #contact-body { padding: 64px 0; }
  #contact-body .card-box, #contact-body .info-card { padding: 28px; }
}



.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, hsl(352, 17%, 14%) 0%, hsl(324, 17%, 28%) 100%);
}

.thankyou-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 3rem 2.5rem;
  max-width: 640px;
  width: 100%;
  text-align: center;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.35);
}

.thankyou-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  background: hsl(300, 23%, 47%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.5s ease-out;
}

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

.thankyou-icon-wrapper svg {
  width: 52px;
  height: 52px;
  stroke: #ffffff;
}

.thankyou-heading {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  color: hsl(352, 17%, 14%);
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.thankyou-text {
  font-family: 'Playfair Display', serif;
  color: hsl(324, 17%, 28%);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.thankyou-subtext {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: hsl(300, 23%, 47%);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.btn-thankyou {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  background-color: hsl(324, 17%, 28%);
  border: none;
  color: #ffffff;
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.btn-thankyou:hover {
  background-color: hsl(300, 23%, 47%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.25);
}

@media (max-width: 576px) {
  .thankyou-card {
    padding: 2rem 1.5rem;
  }
  .thankyou-heading {
    font-size: 1.5rem;
  }
  .thankyou-icon-wrapper {
    width: 80px;
    height: 80px;
  }
  .thankyou-icon-wrapper svg {
    width: 42px;
    height: 42px;
  }
}
