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

:root {
  --primary: hsl(306, 65%, 30%);
  --secondary: hsl(334, 61%, 14%);
  --accent: hsl(282, 79%, 59%);
}

body{
  font-family: 'Raleway', sans-serif;
  color: #222;
  background-color: #ffffff;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Inter', sans-serif;
}
.navbar{
  background-color: #ffffff;
  border-bottom: 1px solid #e9e9e9;
}
.navbar-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--secondary);
}
.navbar-brand:hover{
  color: var(--primary);
}
.nav-link{
  color: #333 !important;
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  border-radius: 6px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-link:hover{
  color: var(--primary) !important;
  background-color: #f5eef8;
}
.navbar-toggler{
  border-color: var(--primary);
}
.navbar-toggler:focus{
  box-shadow: 0 0 0 0.2rem hsla(306, 65%, 30%, 0.25);
}



  

  .thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 55%, var(--accent) 100%);
    font-family: 'Raleway', sans-serif;
  }

  .thankyou-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    max-width: 640px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    animation: fadeInUp 0.7s ease-out;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .success-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px hsla(282, 79%, 59%, 0.4);
    animation: popIn 0.6s ease-out 0.15s backwards;
  }

  @keyframes popIn {
    0% {
      opacity: 0;
      transform: scale(0.5);
    }
    80% {
      transform: scale(1.08);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  .success-icon-wrapper svg {
    width: 50px;
    height: 50px;
    stroke: #ffffff;
  }

  .thankyou-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .thankyou-text {
    color: #4a4a4a;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
  }

  .thankyou-text strong {
    color: var(--primary);
  }

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

  .info-box ul {
    margin: 0;
    padding-left: 1.25rem;
  }

  .info-box li {
    color: var(--secondary);
    font-size: 0.98rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }

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

  .btn-home {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 0.85rem 2.5rem;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 20px hsla(306, 65%, 30%, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px hsla(282, 79%, 59%, 0.5);
    color: #ffffff;
  }

  .btn-home svg {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
    vertical-align: -3px;
  }

  @media (max-width: 576px) {
    .thankyou-card {
      padding: 2.25rem 1.5rem;
      border-radius: 1.25rem;
    }

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

    .success-icon-wrapper {
      width: 80px;
      height: 80px;
    }

    .success-icon-wrapper svg {
      width: 40px;
      height: 40px;
    }
  }

footer {
  background: hsl(334, 61%, 14%);
  color: #f5f5f5;
  font-family: 'Raleway', sans-serif;
  padding: 80px 0 24px;
}
footer h5, footer h6 {
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  margin-bottom: 18px;
}
footer p, footer a {
  color: #e6d9e2;
  font-size: 0.95rem;
}
footer a {
  text-decoration: none;
  transition: color 0.2s ease;
}
footer a:hover {
  color: hsl(282, 79%, 59%);
}
footer .footer-links li {
  margin-bottom: 10px;
}
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: hsl(306, 65%, 30%);
  color: #ffffff !important;
  font-size: 1.1rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer-social-icon:hover {
  background: hsl(282, 79%, 59%);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 48px;
  padding-top: 24px;
  font-size: 0.85rem;
  color: #cbb7c6;
}
.footer-bottom a {
  color: #cbb7c6;
}
.footer-bottom a:hover {
  color: hsl(282, 79%, 59%);
}

#privacyNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #ffffff;
  border-top: 3px solid hsl(306, 65%, 30%);
  box-shadow: 0 -4px 18px rgba(0,0,0,0.15);
  font-family: 'Raleway', sans-serif;
  color: #222222;
  padding: 18px 0;
  max-height: 60vh;
  overflow-y: auto;
}
#privacyNotice h6 {
  font-family: 'Inter', sans-serif;
  color: hsl(334, 61%, 14%);
  margin-bottom: 6px;
  font-weight: 700;
}
#privacyNotice p, #privacyNotice li {
  font-size: 0.85rem;
  color: #333333;
  margin-bottom: 6px;
}
#privacyNotice ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
.cookie-btn {
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  padding: 10px 16px;
  font-weight: 600;
  border: none;
  transition: all 0.2s ease;
  width: 100%;
}
.btn-accept-all {
  background: hsl(306, 65%, 30%);
  color: #ffffff;
}
.btn-accept-all:hover {
  background: hsl(282, 79%, 59%);
  color: #ffffff;
}
.btn-reject-optional {
  background: hsl(334, 61%, 14%);
  color: #ffffff;
}
.btn-reject-optional:hover {
  background: hsl(282, 79%, 59%);
  color: #ffffff;
}
.cookie-manage-link {
  font-size: 0.8rem;
  color: hsl(306, 65%, 30%);
  text-decoration: underline;
}
.cookie-manage-link:hover {
  color: hsl(282, 79%, 59%);
}

#about-main {
  font-family: 'Raleway', sans-serif;
  color: #222;
  background-color: #ffffff;
  padding: 96px 0;
}
#about-main h1, #about-main h2, #about-main h3 {
  font-family: 'Inter', sans-serif;
  color: hsl(334, 61%, 14%);
}
#about-main .intro-block {
  max-width: 900px;
  margin: 0 auto 64px;
}
#about-main .section-block {
  margin-bottom: 88px;
}
#about-main .tinted {
  background-color: #f7f2f9;
  border-radius: 8px;
  padding: 48px;
}
#about-main img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e2d9e6;
}
#about-main .card {
  border: 1px solid #e2d9e6;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  background-color: #ffffff;
  padding: 28px;
  height: 100%;
}
#about-main .card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
#about-main .stat-number {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: hsl(306, 65%, 30%);
}
#about-main .stat-label {
  font-size: 0.9rem;
  color: #555;
}
#about-main .accent-line {
  width: 60px;
  height: 4px;
  background-color: hsl(282, 79%, 59%);
  border-radius: 2px;
  margin-bottom: 20px;
}
#about-main .qa-item {
  border-bottom: 1px solid #e2d9e6;
  padding: 24px 0;
}
#about-main .qa-item:last-child {
  border-bottom: none;
}
#about-main .qa-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
#about-main .cta-box {
  background-color: hsl(306, 65%, 30%);
  border-radius: 8px;
  padding: 56px;
  text-align: center;
}
#about-main .cta-box h2 {
  color: #ffffff;
}
#about-main .cta-box p {
  color: #f0e6f2;
}
#about-main .btn-accent {
  background-color: hsl(282, 79%, 59%);
  color: #ffffff;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
#about-main .btn-accent:hover {
  background-color: hsl(282, 79%, 49%);
  color: #ffffff;
}
@media (max-width: 767px) {
  #about-main .tinted, #about-main .cta-box {
    padding: 28px;
  }
  #about-main {
    padding: 64px 0;
  }
  #about-main .section-block {
    margin-bottom: 56px;
  }
}

#portfolio-body {
  background-color: #ffffff;
  padding: 96px 0;
  font-family: 'Raleway', sans-serif;
  color: #222;
}
#portfolio-body h1, #portfolio-body h2, #portfolio-body h3, #portfolio-body h4 {
  font-family: 'Inter', sans-serif;
  color: hsl(334, 61%, 14%);
}
#portfolio-body .page-header {
  margin-bottom: 80px;
}
#portfolio-body .page-header p.lead {
  max-width: 760px;
  color: #333;
}
#portfolio-body .badge-category {
  background-color: hsl(282, 79%, 59%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.8rem;
}
#portfolio-body .project-card {
  border: 1px solid #e2d6e0;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  background-color: #ffffff;
  overflow: hidden;
  height: 100%;
  transition: box-shadow 0.2s ease;
}
#portfolio-body .project-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
#portfolio-body .project-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
#portfolio-body .card-body-custom {
  padding: 20px;
}
#portfolio-body .card-body-custom h3 {
  font-size: 1.15rem;
  margin: 12px 0 8px;
}
#portfolio-body .card-body-custom p {
  font-size: 0.92rem;
  color: #444;
  margin-bottom: 16px;
}
#portfolio-body .btn-details {
  background-color: hsl(306, 65%, 30%);
  border: none;
  color: #ffffff;
  border-radius: 6px;
  padding: 8px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}
#portfolio-body .btn-details:hover {
  background-color: hsl(282, 79%, 59%);
  color: #ffffff;
}
#portfolio-body .process-section {
  margin-top: 100px;
  background-color: #faf5f9;
  border-radius: 10px;
  padding: 56px 32px;
}
#portfolio-body .process-step {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}
#portfolio-body .process-number {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: hsl(306, 65%, 30%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
#portfolio-body .process-step h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
#portfolio-body .process-step p {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0;
}
#portfolio-body .stats-bar {
  margin-top: 88px;
  border-top: 1px solid #e6dbe3;
  border-bottom: 1px solid #e6dbe3;
  padding: 40px 0;
}
#portfolio-body .stat-item h3 {
  font-size: 2rem;
  color: hsl(306, 65%, 30%);
  margin-bottom: 4px;
}
#portfolio-body .stat-item p {
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 0;
}
#portfolio-body .cta-final {
  margin-top: 96px;
  background-color: hsl(334, 61%, 14%);
  border-radius: 10px;
  padding: 56px 32px;
  text-align: center;
  color: #ffffff;
}
#portfolio-body .cta-final h2 {
  color: #ffffff;
}
#portfolio-body .cta-final p {
  color: #f0e6ec;
  max-width: 640px;
  margin: 0 auto 24px;
}
#portfolio-body .cta-final .btn {
  background-color: hsl(282, 79%, 59%);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 12px 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
#portfolio-body .cta-final .btn:hover {
  background-color: #ffffff;
  color: hsl(334, 61%, 14%);
}
#portfolio-body .modal-content {
  border-radius: 10px;
  border: none;
}
#portfolio-body .modal-header {
  background-color: hsl(306, 65%, 30%);
  color: #ffffff;
  border-radius: 10px 10px 0 0;
}
#portfolio-body .modal-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}
#portfolio-body .modal-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
}

#contact-section {
  font-family: 'Raleway', sans-serif;
  background-color: #ffffff;
  color: #222222;
  padding: 96px 0;
}
#contact-section h1, #contact-section h2, #contact-section h3 {
  font-family: 'Inter', sans-serif;
}
#contact-section .intro-text {
  max-width: 700px;
  color: #333333;
}
#contact-section .card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  background-color: #ffffff;
}
#contact-section .info-card {
  background-color: #f8f5fa;
  border: 1px solid #e0d5e8;
  border-radius: 8px;
  padding: 32px;
}
#contact-section .info-card h3 {
  color: hsl(306, 65%, 30%);
  margin-bottom: 20px;
}
#contact-section .info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
#contact-section .info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 6px;
  background-color: hsl(306, 65%, 30%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
#contact-section .info-item a {
  color: hsl(306, 65%, 30%);
  text-decoration: none;
  font-weight: 600;
}
#contact-section .info-item a:hover {
  color: hsl(282, 79%, 59%);
  text-decoration: underline;
}
#contact-section .info-item p {
  margin-bottom: 0;
  color: #333333;
}
#contact-section .find-us-note {
  background-color: #ffffff;
  border: 1px solid #e0d5e8;
  border-radius: 6px;
  padding: 16px;
  margin-top: 10px;
  font-size: 0.92rem;
  color: #333333;
}
#contact-section .find-us-note a {
  color: hsl(282, 79%, 59%);
  font-weight: 600;
  text-decoration: none;
}
#contact-section .find-us-note a:hover {
  text-decoration: underline;
}
#contact-section .form-card {
  padding: 40px;
}
#contact-section .form-label {
  font-weight: 600;
  color: #222222;
}
#contact-section .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 10px 14px;
}
#contact-section .form-control:focus {
  border-color: hsl(282, 79%, 59%);
  box-shadow: 0 0 0 0.2rem rgba(157, 46, 224, 0.15);
}
#contact-section .btn-submit {
  background-color: hsl(306, 65%, 30%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: background-color 0.2s ease;
}
#contact-section .btn-submit:hover {
  background-color: hsl(282, 79%, 59%);
  color: #ffffff;
}
#contact-section .hours-table {
  width: 100%;
  font-size: 0.92rem;
  color: #333333;
}
#contact-section .hours-table td {
  padding: 4px 0;
  border-bottom: 1px dashed #e0d5e8;
}
#contact-section .hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: #222222;
}
#contact-section .cta-banner {
  background-color: hsl(334, 61%, 14%);
  color: #ffffff;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  margin-top: 80px;
}
#contact-section .cta-banner h3 {
  color: #ffffff;
  margin-bottom: 12px;
}
#contact-section .cta-banner p {
  color: #f0e0f0;
  margin-bottom: 20px;
}
#contact-section .cta-banner .btn-cta {
  background-color: hsl(282, 79%, 59%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  display: inline-block;
}
#contact-section .btn-cta:hover {
  background-color: #ffffff;
  color: hsl(306, 65%, 30%);
}
@media (max-width: 767px) {
  #contact-section { padding: 64px 0; }
  #contact-section .form-card { padding: 24px; }
  #contact-section .info-card { padding: 24px; }
}



.hero-section {
  background-color: #ffffff;
  padding: 96px 0;
}

.hero-section h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: hsl(334, 61%, 14%);
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.hero-section h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: hsl(306, 65%, 30%);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.hero-section p.lead-text {
  font-family: 'Raleway', sans-serif;
  color: #333333;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.hero-list li {
  font-family: 'Raleway', sans-serif;
  color: #222222;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-list li i {
  color: hsl(282, 79%, 59%);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.btn-hero-primary {
  background-color: hsl(306, 65%, 30%);
  border: 2px solid hsl(306, 65%, 30%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.btn-hero-primary:hover {
  background-color: hsl(282, 79%, 59%);
  border-color: hsl(282, 79%, 59%);
  color: #ffffff;
}

.btn-hero-secondary {
  background-color: transparent;
  border: 2px solid hsl(334, 61%, 14%);
  color: hsl(334, 61%, 14%);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.btn-hero-secondary:hover {
  background-color: hsl(334, 61%, 14%);
  color: #ffffff;
  border-color: hsl(334, 61%, 14%);
}

.hero-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  border: 1px solid #e5e5e5;
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 56px 0;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}

.services-section {
  background-color: #ffffff;
  padding: 96px 0;
  font-family: 'Raleway', sans-serif;
}

.services-section h2, .services-section h3 {
  font-family: 'Inter', sans-serif;
}

.services-header {
  margin-bottom: 64px;
}

.services-header .eyebrow {
  color: hsl(282, 79%, 59%);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.85rem;
}

.services-header h2 {
  color: hsl(334, 61%, 14%);
  font-weight: 700;
  margin-top: 8px;
}

.services-header p {
  color: #444;
  max-width: 680px;
  margin-top: 12px;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 12px;
  border-bottom: 1px solid #e2e2e2;
  transition: background-color 0.25s ease, transform 0.25s ease;
  border-radius: 8px;
}

.service-item:hover {
  background-color: #faf5fb;
  transform: translateX(4px);
}

.service-item:last-child {
  border-bottom: none;
}

.service-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background-color: hsl(306, 65%, 30%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background-color 0.25s ease;
}

.service-item:hover .service-icon {
  background-color: hsl(282, 79%, 59%);
}

.service-body {
  flex-grow: 1;
}

.service-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.service-title-row h3 {
  color: hsl(334, 61%, 14%);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

.service-price {
  color: hsl(306, 65%, 30%);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

.service-body p {
  color: #444;
  font-size: 0.94rem;
  margin: 8px 0 0 0;
  line-height: 1.55;
}

@media (max-width: 767px) {
  .services-section {
    padding: 64px 0;
  }
  .service-item {
    padding: 22px 6px;
  }
}

#strengths {
  padding: 96px 0;
  background-color: #ffffff;
}
#strengths h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: hsl(334, 61%, 14%);
}
#strengths .lead-text {
  font-family: 'Raleway', sans-serif;
  color: #333333;
  max-width: 700px;
}
#strengths .strength-card {
  background-color: #ffffff;
  border: 1px solid #e2d5e0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(51, 15, 46, 0.06);
  padding: 36px 28px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#strengths .strength-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(90, 20, 80, 0.15);
  border-color: hsl(282, 79%, 59%);
}
#strengths .icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background-color: hsl(306, 65%, 30%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: background-color 0.25s ease;
}
#strengths .strength-card:hover .icon-wrap {
  background-color: hsl(282, 79%, 59%);
}
#strengths .strength-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: hsl(334, 61%, 14%);
  margin-bottom: 12px;
}
#strengths .strength-card p {
  font-family: 'Raleway', sans-serif;
  color: #444444;
  font-size: 0.96rem;
  margin-bottom: 0;
  line-height: 1.6;
}

#answers {
  background-color: #ffffff;
  padding: 96px 0;
  font-family: 'Raleway', sans-serif;
  color: #222;
}
#answers h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: hsl(334, 61%, 14%);
}
#answers p.lead-text {
  color: #444;
  max-width: 700px;
}
#answers .accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
#answers .accordion-button {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: hsl(334, 61%, 14%);
  background-color: #ffffff;
  border-radius: 8px;
}
#answers .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: hsl(306, 65%, 30%);
  box-shadow: none;
}
#answers .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem hsla(282, 79%, 59%, 0.35);
}
#answers .accordion-button::after {
  filter: none;
}
#answers .accordion-body {
  background-color: #fbfbfd;
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
}
#answers .accordion-button:not(.collapsed)::after {
  filter: invert(1) grayscale(100%) brightness(200%);
}
@media (max-width: 576px) {
  #answers {
    padding: 64px 0;
  }
}

#statistics {
  background-color: #ffffff;
  padding: 96px 0;
  font-family: 'Raleway', sans-serif;
}

#statistics h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(334, 61%, 14%);
  font-weight: 700;
}

#statistics .section-subtitle {
  color: #444;
  max-width: 640px;
  margin: 0 auto;
}

#statistics .stat-card {
  background-color: #fff;
  border: 1px solid #e6dce6;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  padding: 32px 20px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#statistics .stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

#statistics .stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background-color: hsl(282, 79%, 59%, 0.12);
  color: hsl(306, 65%, 30%);
  font-size: 1.9rem;
}

#statistics .stat-number {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: hsl(306, 65%, 30%);
  display: inline-block;
  animation: countUp 1.2s ease-out;
}

#statistics .stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: hsl(334, 61%, 14%);
  font-size: 1rem;
  margin-top: 6px;
}

#statistics .stat-context {
  color: #555;
  font-size: 0.9rem;
  margin-top: 4px;
}

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

@media (max-width: 767px) {
  #statistics {
    padding: 64px 0;
  }
  #statistics .stat-number {
    font-size: 2rem;
  }
}

#works .portfolio-section {background:#ffffff;padding:104px 0;font-family:'Raleway',sans-serif;color:#222;}
#works .portfolio-section h2 {font-family:'Inter',sans-serif;color:hsl(306,65%,30%);font-weight:700;}
#works .portfolio-section .lead-text {color:#444;max-width:700px;}
#works .portfolio-card {border:1px solid #e2d5e0;border-radius:8px;box-shadow:0 4px 14px rgba(0,0,0,0.06);overflow:hidden;background:#fff;height:100%;transition:transform .2s ease;}
#works .portfolio-card:hover {transform:translateY(-4px);}
#works .portfolio-img-wrap {width:100%;aspect-ratio:4/3;overflow:hidden;background:#f0eaf0;}
#works .portfolio-img-wrap img {width:100%;height:100%;object-fit:cover;display:block;}
#works .portfolio-body {padding:20px;}
#works .portfolio-body h3 {font-family:'Inter',sans-serif;font-size:1.15rem;color:hsl(334,61%,14%);font-weight:700;margin-bottom:8px;}
#works .category-badge {background:hsl(282,79%,59%);color:#fff;font-size:0.75rem;font-weight:600;padding:5px 12px;border-radius:20px;display:inline-block;margin-bottom:10px;}
#works .portfolio-body p {font-size:0.92rem;color:#444;margin-bottom:14px;}
#works .btn-details {background:hsl(306,65%,30%);color:#fff;border:none;border-radius:6px;padding:8px 18px;font-weight:600;font-size:0.9rem;}
#works .btn-details:hover {background:hsl(306,65%,22%);color:#fff;}
#works .modal-content {border-radius:8px;border:1px solid #e2d5e0;}
#works .modal-header {background:hsl(306,65%,30%);color:#fff;border-bottom:none;}
#works .modal-header .modal-title {font-family:'Inter',sans-serif;font-weight:700;color:#fff;}
#works .modal-header .btn-close {filter:invert(1) brightness(2);}
#works .modal-body {background:#fff;color:#222;}
#works .modal-body img {width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:6px;margin-bottom:16px;}
#works .modal-body .category-badge {margin-bottom:12px;}

#who-we-are .about-section {
    font-family: 'Raleway', sans-serif;
    background-color: #ffffff;
    padding: 96px 0;
    color: #2a2a2a;
}
#who-we-are .about-section h2, #who-we-are .about-section h3 {
    font-family: 'Inter', sans-serif;
}
#who-we-are .about-section .eyebrow {
    color: hsl(282, 79%, 59%);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    font-size: 0.85rem;
}
#who-we-are .about-section h2 {
    color: hsl(334, 61%, 14%);
    font-weight: 800;
    margin-bottom: 24px;
}
#who-we-are .about-section p {
    line-height: 1.75;
    font-size: 1.02rem;
    color: #333333;
}
#who-we-are .about-img {
    aspect-ratio: 3 / 2;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e2e2e2;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
#who-we-are .about-card {
    background-color: #faf6fb;
    border: 1px solid #e5dbe8;
    border-radius: 8px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
#who-we-are .about-card h3 {
    color: hsl(306, 65%, 30%);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}
#who-we-are .about-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}
#who-we-are .stat-strip {
    background-color: hsl(334, 61%, 14%);
    border-radius: 8px;
    padding: 32px 24px;
    margin-top: 64px;
}
#who-we-are .stat-strip .stat-num {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #ffffff;
}
#who-we-are .stat-strip .stat-label {
    color: #e8d6ec;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
@media (max-width: 767px) {
    #who-we-are .about-section { padding: 64px 0; }
    #who-we-are .stat-strip { margin-top: 40px; }
}

#voices {
  padding: 100px 0;
  background-color: #ffffff;
  font-family: 'Raleway', sans-serif;
}
#voices h2, #voices h3 {
  font-family: 'Inter', sans-serif;
}
#voices .section-label {
  color: hsl(282, 79%, 59%);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}
#voices h2 {
  color: hsl(334, 61%, 14%);
  font-weight: 700;
}
#voices .lead-text {
  color: #4a4a4a;
  max-width: 640px;
}
#voices .testimonial-card {
  background: #ffffff;
  border: 1px solid #e4e0e6;
  border-radius: 8px;
  padding: 28px 26px;
  box-shadow: 0 4px 14px rgba(51, 15, 51, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}
#voices .testimonial-card.featured {
  background: hsl(306, 65%, 30%);
  border-color: hsl(306, 65%, 30%);
  color: #ffffff;
}
#voices .testimonial-card.featured .review-text, #voices .testimonial-card.featured .reviewer-name, #voices .testimonial-card.featured .reviewer-loc {
  color: #ffffff;
}
#voices .testimonial-card.tinted {
  background: #faf5fb;
  border-color: #e9d9ee;
}
#voices .stars {
  color: hsl(282, 79%, 59%);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
#voices .testimonial-card.featured .stars {
  color: #f2c9ff;
}
#voices .review-text {
  color: #333333;
  font-size: 0.98rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 18px;
}
#voices .reviewer-block {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 14px;
}
#voices .testimonial-card.featured .reviewer-block {
  border-top: 1px solid rgba(255,255,255,0.25);
}
#voices .reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: hsl(334, 61%, 14%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
#voices .testimonial-card.featured .reviewer-avatar {
  background: #ffffff;
  color: hsl(306, 65%, 30%);
}
#voices .reviewer-name {
  font-weight: 700;
  color: hsl(334, 61%, 14%);
  font-size: 0.95rem;
  margin: 0;
}
#voices .reviewer-loc {
  font-size: 0.8rem;
  color: #777777;
  margin: 0;
}
#voices .testimonial-card.featured .reviewer-loc {
  color: #f2d9f7;
}
#voices .stats-strip {
  border-top: 1px solid #e9e2ea;
  margin-top: 72px;
  padding-top: 36px;
}
#voices .stat-figure {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: hsl(306, 65%, 30%);
}
#voices .stat-caption {
  font-size: 0.85rem;
  color: #555555;
}

#get-in-touch .contact-section {
  padding: 96px 0;
  background-color: #ffffff;
  font-family: 'Raleway', sans-serif;
  color: #222222;
}
#get-in-touch .contact-section h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(334, 61%, 14%);
  font-weight: 700;
}
#get-in-touch .contact-section .lead {
  color: #333333;
}
#get-in-touch .contact-card {
  background-color: #ffffff;
  border: 1px solid #e0d5df;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  padding: 32px;
  height: 100%;
}
#get-in-touch .contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#get-in-touch .contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  color: #222222;
}
#get-in-touch .contact-info-list li:last-child {
  margin-bottom: 0;
}
#get-in-touch .contact-info-list .icon-box {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 8px;
  background-color: hsl(306, 65%, 30%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
#get-in-touch .contact-info-list a {
  color: hsl(306, 65%, 30%);
  text-decoration: none;
  font-weight: 600;
}
#get-in-touch .contact-info-list a:hover {
  color: hsl(282, 79%, 59%);
  text-decoration: underline;
}
#get-in-touch .find-us-note {
  font-size: 0.92rem;
  color: #555555;
  margin-top: 4px;
}
#get-in-touch .hours-table {
  font-size: 0.95rem;
  color: #333333;
}
#get-in-touch .hours-table td {
  padding: 2px 8px 2px 0;
}
#get-in-touch .form-label {
  font-weight: 600;
  color: #222222;
}
#get-in-touch .form-control {
  border-radius: 7px;
  border: 1px solid #cfc2cc;
  padding: 10px 14px;
}
#get-in-touch .form-control:focus {
  border-color: hsl(282, 79%, 59%);
  box-shadow: 0 0 0 0.2rem hsla(282, 79%, 59%, 0.2);
}
#get-in-touch .btn-submit {
  background-color: hsl(306, 65%, 30%);
  color: #ffffff;
  border: none;
  border-radius: 7px;
  padding: 12px 32px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: background-color 0.2s ease;
}
#get-in-touch .btn-submit:hover {
  background-color: hsl(282, 79%, 59%);
  color: #ffffff;
}
#get-in-touch .response-note {
  font-size: 0.9rem;
  color: #555555;
  margin-top: 12px;
}
@media (max-width: 767px) {
  #get-in-touch .contact-section { padding: 64px 0; }
  #get-in-touch .contact-card { padding: 24px; }
}

#legal-notice {
  background-color: #f8f7fa;
  padding: 96px 0;
  font-family: 'Raleway', sans-serif;
}
#legal-notice .disclaimer-card {
  background-color: #ffffff;
  border: 1px solid #e0d5e8;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(72, 15, 61, 0.06);
  padding: 48px;
}
#legal-notice .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background-color: hsl(282, 79%, 96%);
  color: hsl(306, 65%, 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
#legal-notice h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: hsl(334, 61%, 14%);
  margin-bottom: 0;
}
#legal-notice p {
  color: #333333;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  #legal-notice .disclaimer-card {
    padding: 32px 24px;
  }
}

#services-main {
  background-color: #ffffff;
  font-family: 'Raleway', sans-serif;
  color: #262626;
  padding: 96px 0;
}
#services-main h1, #services-main h2, #services-main h3, #services-main h4 {
  font-family: 'Inter', sans-serif;
  color: hsl(334, 61%, 14%);
}
#services-main .page-header {
  margin-bottom: 64px;
}
#services-main .page-header p.lead {
  color: #4a4a4a;
  max-width: 760px;
}
#services-main .badge-count {
  display: inline-block;
  background-color: hsl(282, 79%, 59%, 0.12);
  color: hsl(306, 65%, 30%);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}
#services-main .service-card {
  background-color: #ffffff;
  border: 1px solid #e2dde3;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 32px 24px;
  height: 100%;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#services-main .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(89, 15, 74, 0.16);
  border-color: hsl(282, 79%, 59%);
}
#services-main .icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  background-color: hsl(306, 65%, 30%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 1.7rem;
  transition: background-color 0.25s ease;
}
#services-main .service-card:hover .icon-wrap {
  background-color: hsl(282, 79%, 59%);
}
#services-main .service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
#services-main .service-card p {
  color: #4d4d4d;
  font-size: 0.94rem;
  line-height: 1.55;
  margin-bottom: 16px;
}
#services-main .price-tag {
  display: inline-block;
  background-color: hsl(334, 61%, 14%);
  color: #ffffff;
  border-radius: 6px;
  padding: 6px 16px;
  font-weight: 700;
  font-size: 1rem;
}
#services-main .terms-section {
  margin-top: 96px;
  background-color: #f7f2f6;
  border-radius: 8px;
  padding: 48px 32px;
}
#services-main .terms-section h2 {
  margin-bottom: 24px;
}
#services-main dl.row dt {
  font-weight: 700;
  color: hsl(306, 65%, 30%);
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2dde3;
}
#services-main dl.row dd {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2dde3;
  color: #4d4d4d;
}
#services-main .table-wrap {
  margin-top: 40px;
}
#services-main table {
  background-color: #ffffff;
  border-collapse: collapse;
  width: 100%;
}
#services-main table th {
  background-color: hsl(306, 65%, 30%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 12px 14px;
}
#services-main table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e2dde3;
  color: #333333;
  vertical-align: middle;
}
#services-main table tr:nth-child(even) td {
  background-color: #faf7fa;
}
#services-main .cta-box {
  margin-top: 96px;
  background-color: hsl(334, 61%, 14%);
  border-radius: 8px;
  padding: 56px 32px;
  text-align: center;
}
#services-main .cta-box h2 {
  color: #ffffff;
  margin-bottom: 14px;
}
#services-main .cta-box p {
  color: #f1e6ee;
  max-width: 640px;
  margin: 0 auto 24px auto;
}
#services-main .cta-box .btn-cta {
  background-color: hsl(282, 79%, 59%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.25s ease;
}
#services-main .cta-box .btn-cta:hover {
  background-color: hsl(306, 65%, 30%);
  color: #ffffff;
}
@media (max-width: 767px) {
  #services-main { padding: 64px 0; }
  #services-main .terms-section, #services-main .cta-box { padding: 32px 20px; margin-top: 64px; }
}
