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

:root {
  --primary: hsl(280, 32%, 38%);
  --secondary: hsl(308, 19%, 20%);
  --accent: hsl(256, 43%, 68%);
}

body{
  font-family: 'Crimson Text', serif;
  color: #222;
  background-color: #ffffff;
}
h1,h2,h3,h4,h5,h6,.navbar-brand{
  font-family: 'Work Sans', sans-serif;
}
.navbar{
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.navbar-brand{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.3rem;
}
.navbar-brand img{
  display: block;
}
.navbar-nav .nav-link{
  color: var(--secondary);
  font-weight: 600;
  padding: 0.5rem 1rem;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus{
  color: var(--primary);
}
.navbar-toggler{
  border-color: var(--primary);
}
.navbar-toggler-icon{
  filter: none;
}

#portfolio-body {
  font-family: 'Crimson Text', serif;
  color: #222;
  background: #fff;
  padding: 96px 0;
}
#portfolio-body h1, #portfolio-body h2, #portfolio-body h3, #portfolio-body h4 {
  font-family: 'Work Sans', sans-serif;
}
#portfolio-body .intro-block {
  max-width: 820px;
  margin: 0 auto 64px;
}
#portfolio-body .intro-block h1 {
  color: hsl(308, 19%, 20%);
  font-weight: 700;
  margin-bottom: 20px;
}
#portfolio-body .intro-block p {
  font-size: 1.15rem;
  line-height: 1.7;
}
#portfolio-body .card {
  border: 1px solid #ddd;
  border-radius: 0;
  height: 100%;
  background: #fff;
}
#portfolio-body .card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
#portfolio-body .badge-category {
  background: hsl(256, 43%, 68%);
  color: hsl(308, 19%, 20%);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  border-radius: 0;
  padding: 6px 12px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 12px;
}
#portfolio-body .card-title {
  color: hsl(308, 19%, 20%);
  font-weight: 700;
}
#portfolio-body .card-text {
  font-size: 1.02rem;
  line-height: 1.6;
}
#portfolio-body .btn-details {
  background: hsl(280, 32%, 38%);
  color: #fff;
  border-radius: 0;
  border: none;
  font-family: 'Work Sans', sans-serif;
  padding: 10px 20px;
}
#portfolio-body .btn-details:hover {
  background: hsl(308, 19%, 20%);
  color: #fff;
}
#portfolio-body .row.g-4 {
  margin-top: 8px;
}
#portfolio-body .details-table th {
  background: hsl(280, 32%, 38%);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  width: 40%;
}
#portfolio-body .details-table td, #portfolio-body .details-table th {
  padding: 10px 14px;
  border: 1px solid #ddd;
  font-size: 0.98rem;
}
#portfolio-body .modal-header {
  background: hsl(308, 19%, 20%);
  color: #fff;
}
#portfolio-body .modal-title {
  font-family: 'Work Sans', sans-serif;
}
#portfolio-body .modal-body img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  margin-bottom: 20px;
}
#portfolio-body .btn-close {
  filter: invert(1);
}
#portfolio-body .cta-block {
  margin-top: 96px;
  text-align: center;
  background: hsl(280, 32%, 38%);
  color: #fff;
  padding: 56px 24px;
}
#portfolio-body .cta-block h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
#portfolio-body .cta-block p {
  color: #f0eaf7;
  font-size: 1.1rem;
  margin-bottom: 24px;
}
#portfolio-body .cta-block a.btn {
  background: #fff;
  color: hsl(280, 32%, 38%);
  border-radius: 0;
  font-family: 'Work Sans', sans-serif;
  padding: 12px 32px;
  font-weight: 600;
  text-decoration: none;
}
#portfolio-body .cta-block a.btn:hover {
  background: hsl(256, 43%, 68%);
  color: hsl(308, 19%, 20%);
}
@media (max-width: 576px) {
  #portfolio-body { padding: 64px 0; }
  #portfolio-body .cta-block { margin-top: 64px; }
}

footer.site-footer {
  background: hsl(308, 19%, 20%);
  color: #f5f5f5;
  padding: 80px 0 32px;
  font-family: 'Crimson Text', serif;
}
footer.site-footer h5 {
  font-family: 'Work Sans', sans-serif;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.1rem;
}
footer.site-footer a {
  color: #e6e0ee;
  text-decoration: none;
}
footer.site-footer a:hover {
  color: hsl(256, 43%, 68%);
  text-decoration: underline;
}
footer.site-footer p {
  color: #d9d3e3;
  line-height: 1.7;
}
footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid hsl(256, 43%, 68%);
  color: #ffffff;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
footer .footer-social a:hover {
  background-color: hsl(256, 43%, 68%);
  color: hsl(308, 19%, 20%);
}
footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 48px;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #cfc7dc;
}
footer ul {
  list-style: none;
  padding-left: 0;
}
footer ul li {
  margin-bottom: 10px;
}

#privacyBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: hsl(308, 19%, 20%);
  color: #f5f5f5;
  border-top: 3px solid hsl(256, 43%, 68%);
  padding: 18px 0;
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Crimson Text', serif;
}
#privacyBanner h6 {
  font-family: 'Work Sans', sans-serif;
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 1.05rem;
}
#privacyBanner p, #privacyBanner li {
  color: #d9d3e3;
  font-size: 0.92rem;
  margin-bottom: 6px;
}
#privacyBanner ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
.btn-consent-accept {
  background-color: hsl(256, 43%, 68%);
  border: none;
  color: hsl(308, 19%, 20%);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 10px 18px;
  width: 100%;
  transition: background-color 0.2s ease;
}
.btn-consent-accept:hover {
  background-color: hsl(280, 32%, 38%);
  color: #ffffff;
}
.btn-consent-reject {
  background-color: transparent;
  border: 1px solid #f5f5f5;
  color: #f5f5f5;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 10px 18px;
  width: 100%;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.btn-consent-reject:hover {
  background-color: #f5f5f5;
  color: hsl(308, 19%, 20%);
}
.link-consent-manage {
  color: hsl(256, 43%, 68%);
  font-size: 0.88rem;
  text-decoration: underline;
}
.link-consent-manage:hover {
  color: #ffffff;
}

#about-main {
  font-family: 'Crimson Text', serif;
  background: #f8f9fa;
  color: #222;
  padding: 96px 0;
}
#about-main h1, #about-main h2, #about-main h3 {
  font-family: 'Work Sans', sans-serif;
}
#about-main .hero-heading {
  color: hsl(280, 32%, 38%);
  font-weight: 700;
  margin-bottom: 24px;
}
#about-main .lead-text {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 40px;
}
#about-main .content-block {
  margin-bottom: 56px;
}
#about-main .content-block h2 {
  color: hsl(308, 19%, 20%);
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 16px;
  border-left: 5px solid hsl(256, 43%, 68%);
  padding-left: 16px;
}
#about-main .content-block p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
}
#about-main img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
#about-main .img-wrap {
  margin-bottom: 40px;
}
#about-main .stats-strip {
  background: hsl(308, 19%, 20%);
  color: #f8f9fa;
  padding: 40px 32px;
  margin: 80px 0;
}
#about-main .stats-strip h3 {
  color: hsl(256, 43%, 68%);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
#about-main .stats-strip p {
  color: #f0f0f0;
  font-size: 1rem;
  margin: 0;
}
#about-main .team-section {
  margin-top: 96px;
}
#about-main .team-section h2 {
  color: hsl(280, 32%, 38%);
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}
#about-main .team-card {
  background: #fff;
  border: 1px solid #ddd;
  border-top: 4px solid hsl(280, 32%, 38%);
  padding: 24px;
  height: 100%;
}
#about-main .team-card h4 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(308, 19%, 20%);
  font-weight: 600;
  margin-bottom: 4px;
}
#about-main .team-card .role {
  color: hsl(280, 32%, 38%);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: block;
}
#about-main .team-card p {
  font-size: 1.05rem;
  color: #444;
  margin: 0;
}
#about-main .cta-box {
  background: hsl(280, 32%, 38%);
  color: #fff;
  padding: 48px 32px;
  margin-top: 96px;
  text-align: center;
}
#about-main .cta-box h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
#about-main .cta-box p {
  color: #f0eaf7;
  font-size: 1.15rem;
  margin-bottom: 24px;
}
#about-main .cta-box .btn {
  background: hsl(256, 43%, 68%);
  color: hsl(308, 19%, 20%);
  border: none;
  padding: 12px 32px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
}
#about-main .cta-box .btn:hover {
  background: #fff;
  color: hsl(280, 32%, 38%);
}
@media (max-width: 767px) {
  #about-main { padding: 64px 0; }
  #about-main .stats-strip, #about-main .team-section { margin: 56px 0; }
}

.hero-notes-section {
  background-color: #ffffff;
  padding: 96px 0;
  font-family: 'Crimson Text', serif;
  color: #222222;
}
.hero-notes-section h1 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(308, 19%, 20%);
  font-size: 2.6rem;
  margin-bottom: 0.75rem;
}
.hero-notes-section h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  color: hsl(280, 32%, 38%);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.hero-notes-section p.hero-desc {
  font-size: 1.15rem;
  color: #333333;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}
.hero-image-strip {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  display: block;
  margin-top: 3rem;
}
.hero-cta-btn {
  background-color: hsl(280, 32%, 38%);
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  border: 2px solid hsl(280, 32%, 38%);
  border-radius: 0;
  padding: 14px 36px;
  font-size: 1.05rem;
  transition: all 0.25s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.hero-cta-btn:hover {
  background-color: hsl(256, 43%, 68%);
  border-color: hsl(256, 43%, 68%);
  color: hsl(308, 19%, 20%);
}
.hero-top-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .hero-notes-section h1 {
    font-size: 1.9rem;
  }
  .hero-notes-section h2 {
    font-size: 1.15rem;
  }
  .hero-notes-section {
    padding: 64px 0;
  }
}

.services-section {
  background: #f8f9fa;
  padding: 96px 0;
  font-family: 'Crimson Text', serif;
  color: #222;
}
.services-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(308, 19%, 20%);
  font-weight: 700;
}
.services-section .lead-text {
  font-size: 1.2rem;
  color: #333;
  max-width: 700px;
}
.service-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 32px 28px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(74, 41, 100, 0.18);
  border-color: hsl(256, 43%, 68%);
}
.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(280, 32%, 38%);
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 20px;
  border-radius: 0;
}
.service-card h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.25rem;
  color: hsl(308, 19%, 20%);
  margin-bottom: 12px;
  font-weight: 600;
}
.service-card p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 20px;
}
.service-price {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: hsl(280, 32%, 38%);
  border-top: 1px solid #e5e5e5;
  padding-top: 14px;
}
.service-price span {
  display: block;
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #666;
  margin-top: 2px;
}
@media (max-width: 767px) {
  .services-section { padding: 64px 0; }
}

#gallery {
  padding: 96px 0;
  background: #f8f9fa;
  font-family: 'Crimson Text', serif;
  color: #222;
}
#gallery h2, #gallery h3, #gallery .card-title {
  font-family: 'Work Sans', sans-serif;
}
#gallery .section-heading {
  color: hsl(308, 19%, 20%);
  font-weight: 700;
}
#gallery .section-lead {
  font-size: 1.15rem;
  max-width: 700px;
}
#gallery .portfolio-card {
  border: 1px solid #e0e0e0;
  border-radius: 0;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}
#gallery .portfolio-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
#gallery .portfolio-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
#gallery .portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#gallery .category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: hsl(280, 32%, 38%);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  letter-spacing: 0.02em;
  border-radius: 0;
}
#gallery .portfolio-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#gallery .portfolio-body h3 {
  font-size: 1.25rem;
  color: hsl(308, 19%, 20%);
  font-weight: 600;
  margin-bottom: 10px;
}
#gallery .portfolio-body p {
  color: #444;
  font-size: 1.02rem;
  flex-grow: 1;
}
#gallery .btn-details {
  background: hsl(280, 32%, 38%);
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 9px 18px;
  margin-top: 14px;
  align-self: flex-start;
  transition: background 0.2s ease;
}
#gallery .btn-details:hover {
  background: hsl(256, 43%, 68%);
  color: hsl(308, 19%, 20%);
}
#gallery .modal-content {
  border-radius: 0;
  font-family: 'Crimson Text', serif;
}
#gallery .modal-header {
  background: hsl(308, 19%, 20%);
  color: #fff;
  border-radius: 0;
}
#gallery .modal-header .btn-close {
  filter: invert(1);
}
#gallery .modal-title {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
}
#gallery .modal-body img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 16px;
}
#gallery .modal-body p {
  color: #333;
  font-size: 1.05rem;
}
#gallery .modal-body .badge-cat {
  background: hsl(280, 32%, 38%);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 0;
  display: inline-block;
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  #gallery { padding: 64px 0; }
}



#results {
  background-color: hsl(308, 19%, 20%);
  padding: 96px 0;
  font-family: 'Crimson Text', serif;
}

#results .section-heading {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

#results .section-sub {
  color: #e6def0;
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 56px;
}

#results .stat-card {
  background-color: #ffffff;
  border: 1px solid hsl(280, 32%, 38%);
  border-radius: 0;
  padding: 40px 24px;
  height: 100%;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#results .stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

#results .stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background-color: hsl(256, 43%, 68%);
  color: #22162b;
  font-size: 2rem;
  margin-bottom: 20px;
}

#results .stat-number {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: hsl(280, 32%, 38%);
  display: block;
  animation: countUp 0.9s ease-out;
}

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

#results .stat-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #333333;
  margin-top: 8px;
  margin-bottom: 4px;
}

#results .stat-context {
  font-size: 0.95rem;
  color: #5a5a5a;
}

@media (max-width: 767.98px) {
  #results {
    padding: 64px 0;
  }
  #results .stat-card {
    padding: 32px 18px;
  }
}

#testimonials {
  background-color: #f8f9fa;
  padding: 96px 0;
  font-family: 'Crimson Text', serif;
}
#testimonials h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(308, 19%, 20%);
  font-weight: 700;
}
#testimonials .lead-text {
  color: #333;
  font-size: 1.15rem;
  max-width: 720px;
}
#testimonials .stat-badge {
  font-family: 'Work Sans', sans-serif;
  color: hsl(280, 32%, 38%);
  font-weight: 600;
  font-size: 0.95rem;
}
#testimonials .review-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}
#testimonials .review-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
#testimonials .review-card.featured {
  background: hsl(280, 32%, 38%);
  border-color: hsl(280, 32%, 38%);
}
#testimonials .review-card.featured * {
  color: #fff !important;
}
#testimonials .review-card.compact {
  padding: 20px 22px;
}
#testimonials .stars {
  color: hsl(256, 43%, 68%);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
#testimonials .review-card.featured .stars {
  color: #fff;
}
#testimonials .review-text {
  color: #2a2a2a;
  font-size: 1.05rem;
  line-height: 1.55;
  flex-grow: 1;
  margin-bottom: 16px;
}
#testimonials .reviewer-name {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: hsl(308, 19%, 20%);
  margin-bottom: 2px;
}
#testimonials .review-card.featured .reviewer-name {
  color: #fff;
}
#testimonials .reviewer-location {
  font-size: 0.9rem;
  color: #6a6a6a;
}
#testimonials .review-card.featured .reviewer-location {
  color: #e5dcf0;
}
#testimonials .rating-badge {
  display: inline-block;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border: 1px solid hsl(280, 32%, 38%);
  color: hsl(280, 32%, 38%);
  margin-bottom: 12px;
}
#testimonials .review-card.featured .rating-badge {
  border-color: #fff;
  color: #fff !important;
}
#testimonials .divider-line {
  width: 60px;
  height: 3px;
  background: hsl(256, 43%, 68%);
  margin: 16px 0 32px;
}
@media (max-width: 767px) {
  #testimonials { padding: 64px 0; }
}

#subscribe {
  background-color: hsl(280, 32%, 38%);
  padding: 96px 0;
}
#subscribe h2 {
  font-family: 'Work Sans', sans-serif;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}
#subscribe p {
  font-family: 'Crimson Text', serif;
  color: #f0eaf5;
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 36px;
}
#subscribe .subscribe-form {
  max-width: 560px;
  margin: 0 auto;
}
#subscribe input[type="email"] {
  border: 2px solid #ffffff;
  border-radius: 0;
  padding: 12px 16px;
  font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
  color: #222222;
  background-color: #ffffff;
}
#subscribe input[type="email"]::placeholder {
  color: #6c6c6c;
}
#subscribe input[type="email"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px hsl(256, 43%, 68%);
  border-color: hsl(256, 43%, 68%);
}
#subscribe .btn-subscribe {
  background-color: hsl(256, 43%, 68%);
  color: #ffffff;
  border: 2px solid hsl(256, 43%, 68%);
  border-radius: 0;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  font-size: 1.05rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
#subscribe .btn-subscribe:hover {
  background-color: #ffffff;
  color: hsl(280, 32%, 38%);
  border-color: #ffffff;
}
#subscribe .subscribe-note {
  font-family: 'Crimson Text', serif;
  color: #e4dcee;
  font-size: 0.95rem;
  margin-top: 16px;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  #subscribe h2 {
    font-size: 1.6rem;
  }
  #subscribe {
    padding: 64px 0;
  }
}

#contact{
  background:#f8f9fa;
  padding:96px 0;
  font-family:'Crimson Text',serif;
  color:#222;
}
#contact h2, #contact h3{
  font-family:'Work Sans',sans-serif;
  color:hsl(308,19%,20%);
}
#contact .lead-text{
  font-size:1.15rem;
  color:#333;
}
#contact .contact-card{
  background:#fff;
  border:1px solid #ddd;
  border-radius:0;
  padding:32px;
  height:100%;
}
#contact .info-block{
  background:hsl(280,32%,38%);
  color:#fff;
  border-radius:0;
  padding:32px;
  height:100%;
}
#contact .info-block h3{
  color:#fff;
}
#contact .info-block a{
  color:#fff;
  text-decoration:underline;
}
#contact .info-block a:hover{
  color:hsl(256,43%,68%);
}
#contact .info-block p{
  margin-bottom:0.6rem;
}
#contact .info-block strong{
  color:#fff;
}
#contact form label{
  font-family:'Work Sans',sans-serif;
  font-weight:600;
  color:#222;
  margin-bottom:4px;
}
#contact form .form-control{
  border-radius:0;
  border:1px solid #bbb;
  padding:10px 14px;
  font-family:'Crimson Text',serif;
  font-size:1.05rem;
}
#contact form .form-control:focus{
  border-color:hsl(280,32%,38%);
  box-shadow:0 0 0 0.2rem hsla(280,32%,38%,0.25);
}
#contact .btn-submit{
  background:hsl(280,32%,38%);
  color:#fff;
  border:none;
  border-radius:0;
  padding:12px 32px;
  font-family:'Work Sans',sans-serif;
  font-weight:600;
  font-size:1.05rem;
  transition:background 0.2s ease;
}
#contact .btn-submit:hover{
  background:hsl(308,19%,20%);
  color:#fff;
}
#contact .map-link{
  display:inline-block;
  margin-top:8px;
  color:hsl(256,43%,68%);
  font-weight:600;
  text-decoration:underline;
}
#contact .map-link:hover{
  color:hsl(280,32%,38%);
}
#contact .divider-line{
  width:60px;
  height:3px;
  background:hsl(256,43%,68%);
  margin-bottom:24px;
}
@media (max-width:767px){
  #contact{padding:64px 0;}
}

#notice {
  background-color: #f8f9fa;
  padding: 80px 0;
  font-family: 'Crimson Text', serif;
  color: #222;
}
#notice .notice-box {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-left: 6px solid hsl(280, 32%, 38%);
  border-radius: 0;
  padding: 40px;
}
#notice h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(308, 19%, 20%);
  font-weight: 700;
  margin-bottom: 24px;
}
#notice .bi-info-circle-fill {
  color: hsl(256, 43%, 68%);
  font-size: 2rem;
  margin-right: 16px;
}
#notice p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 0;
}

#contact-content {
  font-family: 'Crimson Text', serif;
  background-color: #f8f9fa;
  color: #222;
  padding: 96px 0;
}
#contact-content h1,
#contact-content h2,
#contact-content h3 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(308, 19%, 20%);
}
#contact-content .lead-text {
  font-size: 1.2rem;
  max-width: 720px;
  margin-bottom: 56px;
}
#contact-content .contact-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 40px;
  height: 100%;
}
#contact-content .info-block {
  background-color: hsl(308, 19%, 20%);
  color: #fff;
  border-radius: 0;
  padding: 40px;
  height: 100%;
}
#contact-content .info-block h2 {
  color: #fff;
}
#contact-content .info-block a {
  color: hsl(256, 43%, 78%);
  text-decoration: none;
}
#contact-content .info-block a:hover {
  color: #fff;
  text-decoration: underline;
}
#contact-content .info-block p,
#contact-content .info-block li {
  color: #f1f1f1;
}
#contact-content .info-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 28px;
}
#contact-content .info-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
#contact-content .info-list li:last-child {
  border-bottom: none;
}
#contact-content .form-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: hsl(308, 19%, 20%);
}
#contact-content .form-control {
  border-radius: 0;
  border: 1px solid #ccc;
  padding: 10px 14px;
  font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
}
#contact-content .form-control:focus {
  border-color: hsl(280, 32%, 38%);
  box-shadow: 0 0 0 0.2rem hsla(280, 32%, 38%, 0.2);
}
#contact-content .btn-primary-custom {
  background-color: hsl(280, 32%, 38%);
  border: none;
  color: #fff;
  border-radius: 0;
  padding: 12px 32px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
#contact-content .btn-primary-custom:hover {
  background-color: hsl(280, 32%, 28%);
  color: #fff;
}
#contact-content .map-link {
  display: inline-block;
  margin-top: 8px;
  color: hsl(280, 32%, 38%);
  font-weight: 600;
  text-decoration: underline;
}
#contact-content .map-link:hover {
  color: hsl(256, 43%, 68%);
}
#contact-content .reply-note {
  background-color: hsl(256, 43%, 68%);
  color: #1c1224;
  padding: 18px 24px;
  margin-top: 32px;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.98rem;
}
#contact-content .cta-final {
  text-align: center;
  margin-top: 88px;
}
#contact-content .cta-final a {
  background-color: hsl(280, 32%, 38%);
  color: #fff;
  padding: 14px 36px;
  text-decoration: none;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  display: inline-block;
}
#contact-content .cta-final a:hover {
  background-color: hsl(308, 19%, 20%);
}
@media (max-width: 767px) {
  #contact-content {
    padding: 64px 0;
  }
  #contact-content .contact-card,
  #contact-content .info-block {
    padding: 28px;
  }
}

#services-content {
  font-family: 'Crimson Text', serif;
  background: #f8f9fa;
  color: #222;
  padding: 96px 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: 860px;
  margin: 0 auto 72px auto;
}
#services-content .intro-block h1 {
  color: hsl(308, 19%, 20%);
  font-weight: 700;
}
#services-content .intro-block p {
  font-size: 1.15rem;
  line-height: 1.7;
}
#services-content .steps-block {
  background: #fff;
  border: 1px solid #ddd;
  padding: 40px;
  margin-bottom: 96px;
}
#services-content .steps-block h2 {
  color: hsl(280, 32%, 38%);
  font-weight: 700;
  margin-bottom: 32px;
}
#services-content .step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}
#services-content .step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: hsl(280, 32%, 38%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
#services-content .step-text h4 {
  margin-bottom: 6px;
  color: hsl(308, 19%, 20%);
  font-size: 1.15rem;
}
#services-content .step-text p {
  margin-bottom: 0;
  color: #333;
}
#services-content .card-service {
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
  padding: 32px;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
#services-content .card-service:hover {
  box-shadow: 0 12px 28px rgba(60, 30, 80, 0.18);
  transform: translateY(-6px);
  border-color: hsl(256, 43%, 68%);
}
#services-content .service-icon {
  width: 60px;
  height: 60px;
  background: hsl(280, 32%, 38%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
#services-content .card-service h3 {
  color: hsl(308, 19%, 20%);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
#services-content .card-service p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
#services-content .service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 16px;
}
#services-content .service-price {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: hsl(280, 32%, 38%);
}
#services-content .service-unit {
  font-size: 0.9rem;
  color: #666;
}
#services-content .cta-block {
  margin-top: 96px;
  background: hsl(308, 19%, 20%);
  padding: 56px 40px;
  text-align: center;
}
#services-content .cta-block h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
#services-content .cta-block p {
  color: #eee;
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#services-content .btn-cta {
  background: hsl(256, 43%, 68%);
  color: #1a1424;
  border: none;
  padding: 14px 36px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}
#services-content .btn-cta:hover {
  background: hsl(280, 32%, 38%);
  color: #fff;
}
@media (max-width: 767px) {
  #services-content { padding: 64px 0; }
  #services-content .steps-block { padding: 24px; }
}

.thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(280, 32%, 38%) 0%, hsl(308, 19%, 20%) 100%);
    padding: 3rem 1rem;
    font-family: 'Crimson Text', serif;
  }

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

  .thankyou-icon-wrapper {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    background: hsla(256, 43%, 68%, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popIn 0.6s ease-out;
  }

  .thankyou-icon-circle {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: hsl(280, 32%, 38%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @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: 700;
    color: hsl(308, 19%, 20%);
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }

  .thankyou-text {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: hsl(308, 19%, 30%);
    line-height: 1.7;
    margin-bottom: 0.75rem;
  }

  .thankyou-divider {
    width: 60px;
    height: 4px;
    background: hsl(256, 43%, 68%);
    border-radius: 2px;
    margin: 1.5rem auto;
  }

  .thankyou-info-box {
    background: hsla(280, 32%, 38%, 0.06);
    border-left: 4px solid hsl(256, 43%, 68%);
    border-radius: 0.5rem;
    padding: 1.25rem 1.5rem;
    text-align: left;
    margin: 2rem 0;
  }

  .thankyou-info-box p {
    font-family: 'Crimson Text', serif;
    color: hsl(308, 19%, 20%);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

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

  .thankyou-info-box i {
    color: hsl(280, 32%, 38%);
    margin-right: 0.5rem;
    width: 20px;
  }

  .btn-thankyou {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    background-color: hsl(280, 32%, 38%);
    border: none;
    color: #fff;
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px hsla(280, 32%, 38%, 0.35);
  }

  .btn-thankyou:hover {
    background-color: hsl(308, 19%, 20%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px hsla(308, 19%, 20%, 0.4);
  }

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