@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@500;600;700;800&family=Crimson+Text:wght@400;600&display=swap');

:root {
  --primary: hsl(118, 32%, 35%);
  --secondary: hsl(268, 25%, 18%);
  --accent: hsl(328, 56%, 57%);
  --clr-primary: hsl(118, 32%, 35%);
  --clr-secondary: hsl(268, 25%, 18%);
  --clr-accent: hsl(328, 56%, 57%);
}

body{
  font-family: 'Crimson Text', serif;
  color: #222;
  background-color: #fff;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Work Sans', sans-serif;
}
.navbar{
  border-bottom: 1px solid #e5e5e5;
  background-color: #fff;
}
.navbar-brand{
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand img{
  border-radius: 0;
}
.navbar-nav .nav-link{
  color: var(--secondary);
  font-weight: 600;
  padding: 8px 14px;
}
.navbar-nav .nav-link:hover{
  color: var(--accent);
}
.navbar-toggler{
  border-radius: 0;
}

#contact-page {
  background-color: #f8f9fa;
  color: #222;
  font-family: 'Crimson Text', serif;
  padding: 50px 0;
}
#contact-page h1, #contact-page h2, #contact-page h3 {
  font-family: 'Work Sans', sans-serif;
}
#contact-page .page-heading {
  color: hsl(268, 25%, 18%);
  font-weight: 700;
  border-bottom: 3px solid hsl(328, 56%, 57%);
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
#contact-page .intro-text {
  font-size: 1.15rem;
  max-width: 700px;
  margin-bottom: 40px;
}
#contact-page .contact-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 30px;
  height: 100%;
}
#contact-page .info-card {
  background-color: hsl(268, 25%, 18%);
  color: #f8f9fa;
  border-radius: 0;
  padding: 30px;
  height: 100%;
}
#contact-page .info-card h3 {
  color: #fff;
  margin-bottom: 20px;
}
#contact-page .info-card a {
  color: hsl(328, 56%, 57%);
  text-decoration: none;
}
#contact-page .info-card a:hover {
  text-decoration: underline;
}
#contact-page .info-card p {
  margin-bottom: 12px;
  color: #f0f0f0;
}
#contact-page .info-label {
  font-weight: 700;
  color: #fff;
  display: block;
}
#contact-page .form-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: hsl(268, 25%, 18%);
}
#contact-page .form-control {
  border-radius: 0;
  border: 1px solid #bbb;
  padding: 10px 14px;
}
#contact-page .form-control:focus {
  border-color: hsl(118, 32%, 35%);
  box-shadow: 0 0 0 0.2rem hsla(118, 32%, 35%, 0.25);
}
#contact-page .btn-submit {
  background-color: hsl(118, 32%, 35%);
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 12px 30px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
#contact-page .btn-submit:hover {
  background-color: hsl(118, 32%, 28%);
  color: #fff;
}
#contact-page .directions-line {
  background-color: #fff;
  border-left: 4px solid hsl(328, 56%, 57%);
  padding: 16px 20px;
  margin-top: 25px;
}
#contact-page .directions-line a {
  color: hsl(328, 56%, 57%);
  font-weight: 600;
  text-decoration: none;
}
#contact-page .directions-line a:hover {
  text-decoration: underline;
}
#contact-page .cta-block {
  background-color: hsl(118, 32%, 35%);
  color: #fff;
  padding: 35px;
  text-align: center;
  margin-top: 50px;
}
#contact-page .cta-block h2 {
  color: #fff;
}
#contact-page .cta-block a.btn-cta {
  background-color: hsl(328, 56%, 57%);
  color: #fff;
  border-radius: 0;
  padding: 12px 34px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}
#contact-page .cta-block a.btn-cta:hover {
  background-color: hsl(328, 56%, 47%);
}

footer {
    background: hsl(268, 25%, 18%);
    color: #f5f5f5;
    font-family: 'Crimson Text', serif;
    border-radius: 0;
    padding: 52px 0 24px;
  }
  footer h5 {
    font-family: 'Work Sans', sans-serif;
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 1.15rem;
  }
  footer p, footer li, footer a {
    color: #e2ddea;
  }
  footer a {
    text-decoration: none;
  }
  footer a:hover {
    color: hsl(328, 56%, 57%);
    text-decoration: underline;
  }
  footer ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }
  footer ul li {
    margin-bottom: 8px;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: hsl(118, 32%, 35%);
    color: #ffffff;
    margin-right: 8px;
    border-radius: 0;
    font-size: 1.1rem;
    transition: background 0.2s ease;
  }
  .footer-social a:hover {
    background: hsl(328, 56%, 57%);
    color: #ffffff;
  }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 32px;
    padding-top: 16px;
    font-size: 0.9rem;
    color: #cfc7dc;
  }
  #consentPanel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: hsl(268, 25%, 18%);
    color: #f5f5f5;
    border-top: 3px solid hsl(328, 56%, 57%);
    padding: 16px 0;
    max-height: 60vh;
    overflow-y: auto;
    font-family: 'Crimson Text', serif;
  }
  #consentPanel h6 {
    font-family: 'Work Sans', sans-serif;
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 6px;
  }
  #consentPanel p, #consentPanel li {
    color: #e2ddea;
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  #consentPanel ul {
    padding-left: 18px;
    margin-bottom: 10px;
  }
  .consent-btn {
    font-family: 'Work Sans', sans-serif;
    border-radius: 0;
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    width: 100%;
  }
  .btn-consent-accept {
    background: hsl(118, 32%, 35%);
    color: #ffffff;
    border-color: hsl(118, 32%, 35%);
  }
  .btn-consent-accept:hover {
    background: hsl(118, 32%, 28%);
    color: #ffffff;
  }
  .btn-consent-reject {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
  }
  .btn-consent-reject:hover {
    background: hsl(328, 56%, 57%);
    border-color: hsl(328, 56%, 57%);
    color: #ffffff;
  }
  .consent-manage {
    color: hsl(328, 56%, 70%);
    font-size: 0.85rem;
    text-decoration: underline;
  }
  .consent-manage:hover {
    color: #ffffff;
  }

.hero-compact {
  background: #f8f9fa;
  padding: 52px 0 48px 0;
  border-bottom: 3px solid hsl(118, 32%, 35%);
}

.hero-compact h1 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(268, 25%, 18%);
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.hero-compact h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  color: hsl(118, 32%, 35%);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.hero-compact p.hero-desc {
  font-family: 'Crimson Text', serif;
  font-size: 1.2rem;
  color: #333;
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: hsl(268, 25%, 18%);
  color: #fff;
  padding: 6px 16px;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  border-radius: 0;
}

.hero-badge i {
  color: hsl(328, 56%, 57%);
}

.btn-hero-cta {
  background: hsl(328, 56%, 57%);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 12px 32px;
  border: 2px solid hsl(328, 56%, 57%);
  border-radius: 0;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-hero-cta:hover {
  background: transparent;
  color: hsl(328, 56%, 57%);
  border-color: hsl(328, 56%, 57%);
}

@media (max-width: 576px) {
  .hero-compact h1 {
    font-size: 1.9rem;
  }
  .hero-compact h2 {
    font-size: 1.15rem;
  }
}

.services-section {
  background-color: #f8f9fa;
  padding: 52px 0;
  font-family: 'Crimson Text', serif;
}
.services-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(268, 25%, 18%);
  font-weight: 700;
}
.services-section .lead-text {
  color: #333;
  font-size: 1.15rem;
  max-width: 780px;
}
.service-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  height: 100%;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  background-color: hsl(118, 32%, 35%);
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}
.service-card:hover .service-title,
.service-card:hover .service-desc,
.service-card:hover .service-price {
  color: #fff;
}
.service-card:hover .service-icon {
  background-color: hsl(328, 56%, 57%);
  color: #fff;
}
.service-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 0;
  background-color: hsl(268, 25%, 18%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.service-content {
  flex: 1;
  min-width: 0;
}
.service-title {
  font-family: 'Work Sans', sans-serif;
  color: hsl(268, 25%, 18%);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.25s ease;
}
.service-desc {
  color: #444;
  font-size: 1rem;
  margin-bottom: 10px;
  transition: color 0.25s ease;
}
.service-price {
  font-family: 'Work Sans', sans-serif;
  color: hsl(118, 32%, 35%);
  font-weight: 700;
  font-size: 1.05rem;
  transition: color 0.25s ease;
}
.services-section .row.g-4 {
  --bs-gutter-x: 1.5rem;
}

#cases {
  background:#f5f5f5;
  padding:52px 0;
  font-family:'Crimson Text',serif;
  color:#222;
}
#cases h2 {
  font-family:'Work Sans',sans-serif;
  color:hsl(268,25%,18%);
  font-weight:700;
}
#cases .lead-text {
  max-width:720px;
  font-size:1.15rem;
  color:#333;
}
#cases .case-card {
  background:#fff;
  border:1px solid #ddd;
  border-radius:0;
  overflow:hidden;
  height:100%;
  display:flex;
  flex-direction:column;
}
#cases .case-card img {
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  display:block;
}
#cases .case-card .badge-cat {
  background:hsl(118,32%,35%);
  color:#fff;
  font-family:'Work Sans',sans-serif;
  font-size:0.75rem;
  font-weight:600;
  border-radius:0;
  padding:5px 10px;
  display:inline-block;
  margin-bottom:10px;
  letter-spacing:0.03em;
}
#cases .case-body {
  padding:18px 18px 20px;
  display:flex;
  flex-direction:column;
  flex-grow:1;
}
#cases .case-card h3 {
  font-family:'Work Sans',sans-serif;
  font-size:1.15rem;
  color:hsl(268,25%,18%);
  font-weight:600;
  margin-bottom:8px;
}
#cases .case-card p {
  font-size:1.02rem;
  color:#333;
  flex-grow:1;
}
#cases .btn-case {
  background:hsl(328,56%,57%);
  color:#fff;
  border:none;
  border-radius:0;
  font-family:'Work Sans',sans-serif;
  font-weight:600;
  padding:8px 16px;
  font-size:0.9rem;
  align-self:flex-start;
  margin-top:10px;
}
#cases .btn-case:hover {
  background:hsl(328,56%,45%);
  color:#fff;
}
#cases .modal-content {
  border-radius:0;
  font-family:'Crimson Text',serif;
}
#cases .modal-header {
  background:hsl(268,25%,18%);
  color:#fff;
  border-radius:0;
}
#cases .modal-header .btn-close {
  filter:invert(1);
}
#cases .modal-title {
  font-family:'Work Sans',sans-serif;
  font-weight:600;
}
#cases .modal-body img {
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  margin-bottom:16px;
}
#cases .modal-body p {
  color:#333;
  font-size:1.05rem;
}
#cases .stats-strip {
  border-top:1px solid #ddd;
  border-bottom:1px solid #ddd;
  padding:20px 0;
  margin-bottom:40px;
  font-family:'Work Sans',sans-serif;
}
#cases .stats-strip .num {
  font-size:1.8rem;
  font-weight:700;
  color:hsl(118,32%,35%);
}
#cases .stats-strip .lbl {
  font-size:0.9rem;
  color:#333;
}

#statistics {
  background: hsl(0, 0%, 98%);
  padding: 52px 0;
  font-family: 'Crimson Text', serif;
}
#statistics .stats-heading {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(268, 25%, 18%);
  margin-bottom: 8px;
}
#statistics .stats-sub {
  color: #333;
  font-size: 1.15rem;
  margin-bottom: 40px;
}
#statistics .stat-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 28px 20px;
  height: 100%;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#statistics .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
#statistics .stat-icon {
  font-size: 2.2rem;
  color: hsl(328, 56%, 57%);
  margin-bottom: 14px;
  display: inline-block;
  animation: popIn 0.6s ease forwards;
}
#statistics .stat-number {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: hsl(118, 32%, 35%);
  line-height: 1;
  margin-bottom: 6px;
  animation: countUp 0.9s ease forwards;
}
#statistics .stat-label {
  font-weight: 600;
  color: hsl(268, 25%, 18%);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
#statistics .stat-context {
  color: #555;
  font-size: 0.95rem;
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

#answers {
  background-color: #f8f9fa;
  padding: 52px 0;
  font-family: 'Crimson Text', serif;
}
#answers h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(268, 25%, 18%);
  font-weight: 700;
}
#answers p.lead-text {
  font-size: 1.15rem;
  color: #333;
  max-width: 700px;
}
#answers .accordion-item {
  border-radius: 0;
  border: 1px solid #ddd;
  margin-bottom: 12px;
}
#answers .accordion-button {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: hsl(268, 25%, 18%);
  background-color: #fff;
  border-radius: 0;
  font-size: 1.05rem;
}
#answers .accordion-button:not(.collapsed) {
  background-color: hsl(118, 32%, 35%);
  color: #fff;
  box-shadow: none;
}
#answers .accordion-button:focus {
  box-shadow: none;
  border-color: hsl(118, 32%, 35%);
}
#answers .accordion-button::after {
  filter: none;
}
#answers .accordion-body {
  font-family: 'Crimson Text', serif;
  font-size: 1.08rem;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}
#answers .accordion-body strong {
  color: hsl(328, 56%, 57%);
}

#enquiry {
  font-family: 'Crimson Text', serif;
  background-color: #f8f9fa;
  padding: 52px 0;
  color: #222;
}
#enquiry h2, #enquiry h3, #enquiry h5 {
  font-family: 'Work Sans', sans-serif;
}
#enquiry .contact-wrap {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 0;
}
#enquiry .contact-info-panel {
  background-color: hsl(268, 25%, 18%);
  color: #f8f9fa;
  padding: 40px 32px;
  border-radius: 0;
}
#enquiry .contact-info-panel h3 {
  color: #ffffff;
  margin-bottom: 24px;
}
#enquiry .contact-info-panel a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid hsl(328, 56%, 57%);
}
#enquiry .contact-info-panel a:hover {
  color: hsl(328, 56%, 57%);
}
#enquiry .info-item {
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
#enquiry .info-icon {
  width: 22px;
  flex-shrink: 0;
  color: hsl(328, 56%, 57%);
  font-weight: 700;
}
#enquiry .hours-box {
  background-color: rgba(255,255,255,0.06);
  padding: 16px;
  border-left: 3px solid hsl(118, 32%, 35%);
  margin-top: 8px;
}
#enquiry .locate-line {
  font-size: 0.95rem;
  margin-top: 10px;
  color: #e6e6e6;
}
#enquiry .locate-line a {
  color: hsl(328, 56%, 57%);
  border-bottom: 1px solid hsl(328, 56%, 57%);
}
#enquiry .form-panel {
  padding: 40px 32px;
  background-color: #ffffff;
}
#enquiry .form-panel h3 {
  color: hsl(268, 25%, 18%);
  margin-bottom: 8px;
}
#enquiry .form-panel p.lead-text {
  color: #444;
  margin-bottom: 24px;
  font-size: 1.05rem;
}
#enquiry .form-control {
  border-radius: 0;
  border: 1px solid #ccc;
  padding: 10px 14px;
  font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
}
#enquiry .form-control:focus {
  border-color: hsl(118, 32%, 35%);
  box-shadow: 0 0 0 0.2rem rgba(46, 94, 42, 0.15);
}
#enquiry label {
  font-weight: 600;
  color: hsl(268, 25%, 18%);
  margin-bottom: 4px;
}
#enquiry .btn-send {
  background-color: hsl(118, 32%, 35%);
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 12px 32px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background-color 0.2s ease;
}
#enquiry .btn-send:hover {
  background-color: hsl(328, 56%, 57%);
  color: #ffffff;
}
#enquiry .reply-badge {
  display: inline-block;
  background-color: hsl(118, 32%, 35%);
  color: #ffffff;
  padding: 6px 14px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-family: 'Work Sans', sans-serif;
}
@media (max-width: 767px) {
  #enquiry .contact-info-panel, #enquiry .form-panel {
    padding: 28px 20px;
  }
}

#important {
  font-family: 'Crimson Text', serif;
  background-color: #f5f5f5;
  color: #222;
  padding: 48px 0;
}
#important .disclaimer-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 40px;
}
#important h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(268, 25%, 18%);
  font-weight: 600;
  margin-bottom: 24px;
}
#important .icon-wrap {
  color: hsl(118, 32%, 35%);
  font-size: 2rem;
  margin-right: 16px;
}
#important p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 0;
}





.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(118, 32%, 96%) 0%, #ffffff 55%, hsl(328, 56%, 96%) 100%);
  font-family: 'Crimson Text', serif;
  padding: 3rem 1rem;
}

.thankyou-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  max-width: 640px;
  width: 100%;
  box-shadow: 0 1.5rem 3rem rgba(38, 22, 46, 0.12);
  text-align: center;
  border-top: 6px solid var(--clr-primary);
  position: relative;
  overflow: hidden;
}

.thankyou-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: var(--clr-accent);
  opacity: 0.08;
  border-radius: 50%;
}

.thankyou-card::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: -70px;
  width: 180px;
  height: 180px;
  background: var(--clr-primary);
  opacity: 0.08;
  border-radius: 50%;
}

.success-icon-wrapper {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.75rem;
  background: linear-gradient(135deg, var(--clr-primary), hsl(118, 32%, 45%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.75rem 1.75rem hsla(118, 32%, 35%, 0.35);
  animation: popIn 0.5s ease-out;
}

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

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

.thankyou-heading {
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  color: var(--clr-secondary);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.thankyou-text {
  font-size: 1.2rem;
  color: hsl(268, 15%, 30%);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.thankyou-note {
  background: hsl(118, 32%, 96%);
  border-left: 4px solid var(--clr-primary);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  color: var(--clr-secondary);
  margin: 1.75rem 0;
  text-align: left;
  position: relative;
  z-index: 1;
}

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

.btn-home {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  background-color: var(--clr-primary);
  border: none;
  color: #ffffff;
  padding: 0.85rem 2.5rem;
  border-radius: 3rem;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  box-shadow: 0 0.5rem 1.25rem hsla(118, 32%, 35%, 0.35);
  position: relative;
  z-index: 1;
}

.btn-home:hover {
  background-color: var(--clr-secondary);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 0.75rem 1.5rem hsla(268, 25%, 18%, 0.4);
}

.btn-home:active {
  transform: translateY(0);
}

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

@media (max-width: 576px) {
  .thankyou-card {
    padding: 2.25rem 1.5rem;
  }
  .thankyou-heading {
    font-size: 1.7rem;
  }
  .thankyou-text {
    font-size: 1.05rem;
  }
}

#portfolio-content {
  background: #f8f9fa;
  color: #222;
  padding: 52px 0;
  font-family: 'Crimson Text', serif;
}
#portfolio-content h1,
#portfolio-content h2,
#portfolio-content h3,
#portfolio-content h4 {
  font-family: 'Work Sans', sans-serif;
}
#portfolio-content .page-header {
  margin-bottom: 48px;
  border-bottom: 3px solid hsl(118, 32%, 35%);
  padding-bottom: 24px;
}
#portfolio-content .page-header h1 {
  color: hsl(268, 25%, 18%);
  font-weight: 700;
}
#portfolio-content .page-header p {
  font-size: 1.15rem;
  max-width: 760px;
}
#portfolio-content .stats-strip {
  background: hsl(268, 25%, 18%);
  color: #fff;
  padding: 20px;
  margin-bottom: 48px;
  border-radius: 0;
}
#portfolio-content .stats-strip .stat-num {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: hsl(328, 56%, 57%);
  display: block;
}
#portfolio-content .stats-strip .stat-label {
  font-size: 0.9rem;
  color: #f1f1f1;
}
#portfolio-content .card {
  border-radius: 0;
  border: 1px solid #ddd;
  background: #fff;
  height: 100%;
}
#portfolio-content .card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
#portfolio-content .card-body {
  display: flex;
  flex-direction: column;
}
#portfolio-content .badge-category {
  background: hsl(118, 32%, 35%);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  border-radius: 0;
  padding: 5px 10px;
  font-size: 0.78rem;
  align-self: flex-start;
  margin-bottom: 10px;
}
#portfolio-content .card-title {
  color: hsl(268, 25%, 18%);
  font-weight: 600;
}
#portfolio-content .card-text {
  font-size: 1rem;
  color: #333;
}
#portfolio-content .btn-details {
  background: hsl(328, 56%, 57%);
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: 'Work Sans', sans-serif;
  margin-top: 12px;
}
#portfolio-content .btn-details:hover {
  background: hsl(328, 56%, 47%);
  color: #fff;
}
#portfolio-content .modal-content {
  border-radius: 0;
}
#portfolio-content .modal-header {
  background: hsl(268, 25%, 18%);
  color: #fff;
}
#portfolio-content .modal-header .btn-close {
  filter: invert(1);
}
#portfolio-content .modal-body img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 16px;
}
#portfolio-content .modal-body dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 6px 12px;
  margin-bottom: 16px;
}
#portfolio-content .modal-body dt {
  font-weight: 600;
  color: hsl(268, 25%, 18%);
  font-family: 'Work Sans', sans-serif;
}
#portfolio-content .table-wrap table {
  background: #fff;
}
#portfolio-content .table-wrap th {
  background: hsl(118, 32%, 35%);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
}
#portfolio-content .table-wrap td, #portfolio-content .table-wrap th {
  vertical-align: middle;
  font-size: 0.95rem;
}
#portfolio-content .cta-box {
  background: hsl(118, 32%, 35%);
  color: #fff;
  padding: 40px;
  margin-top: 48px;
  text-align: center;
}
#portfolio-content .cta-box h2 {
  color: #fff;
}
#portfolio-content .cta-box p {
  color: #f1f1f1;
}
#portfolio-content .cta-box .btn {
  background: hsl(328, 56%, 57%);
  border: none;
  border-radius: 0;
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  padding: 12px 32px;
}
#portfolio-content .cta-box .btn:hover {
  background: hsl(328, 56%, 47%);
  color: #fff;
}
#portfolio-content .section-divider {
  margin: 48px 0;
  border-top: 1px solid #ddd;
}

#services-content {
  background: #ffffff;
  color: #222222;
  font-family: 'Crimson Text', serif;
  padding: 52px 0;
}
#services-content h1, #services-content h2, #services-content h3, #services-content h4 {
  font-family: 'Work Sans', sans-serif;
}
#services-content .intro-block {
  max-width: 900px;
  margin: 0 auto 48px auto;
}
#services-content .intro-block h1 {
  color: hsl(268, 25%, 18%);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 2.4rem;
}
#services-content .intro-block p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333333;
}
#services-content .subhead-block {
  max-width: 900px;
  margin: 0 auto 48px auto;
}
#services-content .subhead-block h2 {
  color: hsl(118, 32%, 35%);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 12px;
  border-left: 4px solid hsl(328, 56%, 57%);
  padding-left: 12px;
}
#services-content .subhead-block p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #333333;
}
#services-content .service-grid-title {
  text-align: center;
  margin-bottom: 40px;
}
#services-content .service-grid-title h2 {
  color: hsl(268, 25%, 18%);
  font-weight: 700;
  font-size: 2rem;
}
#services-content .service-grid-title p {
  color: #444444;
  font-size: 1.1rem;
}
#services-content .card {
  border: 1px solid #dddddd;
  border-radius: 0;
  padding: 28px;
  height: 100%;
  background: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
#services-content .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
  background-color: hsl(118, 32%, 97%);
}
#services-content .card .icon-box {
  width: 56px;
  height: 56px;
  background: hsl(118, 32%, 35%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
#services-content .card:hover .icon-box {
  background: hsl(328, 56%, 57%);
}
#services-content .card h3 {
  color: hsl(268, 25%, 18%);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}
#services-content .card p {
  color: #333333;
  font-size: 1.05rem;
  line-height: 1.6;
  flex-grow: 1;
}
#services-content .card .price-tag {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #ffffff;
  background: hsl(268, 25%, 18%);
  padding: 6px 16px;
}
#services-content .card:hover .price-tag {
  background: hsl(118, 32%, 35%);
}
#services-content .cta-box {
  background: hsl(268, 25%, 18%);
  color: #ffffff;
  padding: 44px 32px;
  margin-top: 52px;
  text-align: center;
}
#services-content .cta-box h2 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 14px;
}
#services-content .cta-box p {
  color: #f0f0f0;
  font-size: 1.15rem;
  margin-bottom: 22px;
}
#services-content .cta-box .btn-cta {
  background: hsl(328, 56%, 57%);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease;
}
#services-content .cta-box .btn-cta:hover {
  background: hsl(118, 32%, 35%);
  color: #ffffff;
}

#about-body {
  font-family: 'Crimson Text', serif;
  color: #222;
  background: #ffffff;
  padding: 52px 0;
}
#about-body h1, #about-body h2, #about-body h3 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(268, 25%, 18%);
}
#about-body .hero-about {
  background: hsl(268, 25%, 18%);
  color: #f8f9fa;
  padding: 56px 0;
  margin-bottom: 52px;
}
#about-body .hero-about h1 {
  color: #ffffff;
}
#about-body .hero-about p {
  color: #e6e2ea;
  font-size: 1.2rem;
}
#about-body .section-block {
  padding: 24px 0;
}
#about-body img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
#about-body .fact-card {
  background: #f5f5f5;
  border: 1px solid #ddd;
  padding: 24px;
  height: 100%;
}
#about-body .fact-card .fact-number {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: hsl(118, 32%, 35%);
}
#about-body .fact-card p {
  margin-bottom: 0;
  color: #333;
}
#about-body .value-card {
  border-left: 4px solid hsl(328, 56%, 57%);
  background: #f8f9fa;
  padding: 20px 24px;
  height: 100%;
}
#about-body .value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
#about-body .value-card p {
  color: #333;
  margin-bottom: 0;
}
#about-body .cta-box {
  background: hsl(118, 32%, 35%);
  color: #ffffff;
  padding: 40px;
  text-align: center;
  margin-top: 52px;
}
#about-body .cta-box h2 {
  color: #ffffff;
}
#about-body .cta-box p {
  color: #eef4ea;
}
#about-body .btn-accent {
  background: hsl(328, 56%, 57%);
  color: #ffffff;
  border: none;
  padding: 12px 32px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border-radius: 0;
}
#about-body .btn-accent:hover {
  background: hsl(328, 56%, 47%);
  color: #ffffff;
}
#about-body hr.divider {
  border: none;
  border-top: 2px solid hsl(118, 32%, 35%);
  width: 60px;
  margin: 12px 0 24px 0;
}
@media (max-width: 767px) {
  #about-body .hero-about { padding: 40px 0; }
  #about-body .hero-about h1 { font-size: 2rem; }
}
