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

:root {
  --primary: hsl(323, 52%, 30%);
  --secondary: hsl(351, 43%, 15%);
  --accent: hsl(299, 64%, 48%);
}

body{
  font-family: 'Libre Baskerville', serif;
  color: #222;
  background-color: #fff;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Quicksand', sans-serif;
}
.navbar{
  background-color: #fff;
  border-bottom: 1px solid #eee;
}
.navbar-brand{
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand img{
  border-radius: 8px;
}
.nav-link{
  color: var(--secondary) !important;
  font-weight: 600;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: color 0.2s, background-color 0.2s;
}
.nav-link:hover{
  color: #fff !important;
  background-color: var(--primary);
}
.navbar-toggler{
  border-color: var(--primary);
}

footer {
  background: hsl(351, 43%, 15%);
  color: #f5f5f5;
  font-family: 'Libre Baskerville', serif;
  padding: 48px 0 24px;
}
footer h5 {
  font-family: 'Quicksand', sans-serif;
  color: #fff;
  margin-bottom: 16px;
}
footer a {
  color: #f5f5f5;
  text-decoration: none;
}
footer a:hover {
  color: hsl(299, 64%, 48%);
}
footer .footer-desc {
  color: #e6d9de;
  font-size: 0.95rem;
}
footer ul {
  list-style: none;
  padding-left: 0;
}
footer ul li {
  margin-bottom: 8px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: hsl(323, 52%, 30%);
  color: #fff;
  margin-right: 10px;
  transition: background 0.2s ease;
}
.footer-social a:hover {
  background: hsl(299, 64%, 48%);
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 32px;
  padding-top: 16px;
  font-size: 0.85rem;
  color: #d9c9d0;
}
#cookieStrip {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: hsl(351, 43%, 15%);
  color: #f5f5f5;
  border-top: 3px solid hsl(299, 64%, 48%);
  padding: 16px 0;
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Libre Baskerville', serif;
}
#cookieStrip h6 {
  font-family: 'Quicksand', sans-serif;
  color: #fff;
  margin-bottom: 8px;
}
#cookieStrip p, #cookieStrip li {
  font-size: 0.85rem;
  color: #e6d9de;
  margin-bottom: 6px;
}
#cookieStrip ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
.cookie-btn {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.9rem;
  border: none;
  transition: all 0.2s ease;
  width: 100%;
}
.btn-accept-all {
  background: hsl(299, 64%, 48%);
  color: #fff;
}
.btn-accept-all:hover {
  background: hsl(299, 64%, 38%);
  color: #fff;
}
.btn-reject-optional {
  background: hsl(323, 52%, 30%);
  color: #fff;
}
.btn-reject-optional:hover {
  background: hsl(323, 52%, 22%);
  color: #fff;
}
.btn-manage {
  color: hsl(299, 64%, 68%);
  text-decoration: underline;
  font-size: 0.85rem;
}
.btn-manage:hover {
  color: #fff;
}





.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(351, 43%, 15%) 0%, hsl(323, 52%, 30%) 100%);
  padding: 3rem 1rem;
  font-family: 'Libre Baskerville', serif;
}

.thankyou-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 3rem 2.5rem;
  max-width: 620px;
  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); }
}

.thankyou-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, var(--accent) 0%, var(--primary) 100%);
  box-shadow: 0 0 0 8px hsla(299, 64%, 48%, 0.15);
  animation: popIn 0.6s ease-out 0.2s both;
}

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

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

.thankyou-heading {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

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

.thankyou-highlight {
  color: var(--primary);
  font-weight: 700;
}

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

.btn-thankyou {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  background-color: var(--primary);
  border: none;
  color: #fff;
  padding: 0.75rem 2.25rem;
  border-radius: 50px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px hsla(323, 52%, 30%, 0.4);
}

.btn-thankyou:hover {
  background-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px hsla(299, 64%, 48%, 0.45);
}

.thankyou-note {
  font-size: 0.9rem;
  color: #8a8a8a;
  margin-top: 1.75rem;
  font-style: italic;
}

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

.hero-section {
  background-color: #f8f9fa;
  padding: 52px 0;
}
.hero-section h1 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(351, 43%, 15%);
  font-weight: 700;
}
.hero-section h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(323, 52%, 30%);
  font-weight: 500;
  font-size: 1.3rem;
}
.hero-section p {
  font-family: 'Libre Baskerville', serif;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
}
.hero-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  margin: 32px 0;
}
.hero-img-wrap img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.btn-hero {
  background-color: hsl(299, 64%, 48%);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-hero:hover {
  background-color: hsl(323, 52%, 30%);
  color: #fff;
  transform: translateY(-2px);
}

.services-section {
  padding: 52px 0;
  background: #f8f9fa;
  font-family: 'Libre Baskerville', serif;
  color: #222;
}
.services-section h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(323, 52%, 30%);
  font-weight: 700;
}
.services-section .lead-text {
  color: #333;
  max-width: 700px;
}
.service-list {
  border-top: 1px solid #ddd;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 16px;
  border-bottom: 1px solid #ddd;
  transition: background 0.3s ease, transform 0.3s ease;
  border-radius: 8px;
}
.service-item:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.service-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 8px;
  background: hsl(323, 52%, 30%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background 0.3s ease;
}
.service-item:hover .service-icon {
  background: hsl(299, 64%, 48%);
}
.service-title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: hsl(351, 43%, 15%);
  margin-bottom: 6px;
  font-size: 1.1rem;
}
.service-desc {
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.5;
}
.service-price {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: hsl(323, 52%, 30%);
  font-size: 1rem;
}
@media (max-width: 767px) {
  .service-item {
    padding: 18px 8px;
  }
}

#cases {
  padding: 52px 0;
  background: #f8f9fa;
  font-family: 'Libre Baskerville', serif;
  color: #222;
}
#cases h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(323, 52%, 30%);
  font-weight: 700;
}
#cases .lead-text {
  color: #333;
  max-width: 680px;
}
#cases .case-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e9e9e9;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#cases .case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}
#cases .case-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eee;
}
#cases .case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#cases .case-body {
  padding: 18px;
}
#cases .case-badge {
  display: inline-block;
  background: hsl(299, 64%, 48%);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 10px;
}
#cases .case-body h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  color: hsl(351, 43%, 15%);
  margin-bottom: 8px;
}
#cases .case-body p {
  font-size: 0.92rem;
  color: #333;
  line-height: 1.5;
}
#cases .case-link-btn {
  border: 1px solid hsl(323, 52%, 30%);
  color: hsl(323, 52%, 30%);
  background: transparent;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 0.88rem;
}
#cases .case-link-btn:hover {
  background: hsl(323, 52%, 30%);
  color: #fff;
}
#cases .modal-content {
  border-radius: 8px;
  border: none;
}
#cases .modal-header {
  background: hsl(351, 43%, 15%);
  color: #fff;
  border-radius: 8px 8px 0 0;
}
#cases .modal-header .btn-close {
  filter: invert(1);
}
#cases .modal-title {
  font-family: 'Quicksand', sans-serif;
  color: #fff;
}
#cases .modal-body {
  color: #333;
}
#cases .modal-body img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
}
#cases .modal-badge {
  display: inline-block;
  background: hsl(299, 64%, 48%);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
}

#numbers {
  background: #f8f9fa;
  padding: 52px 0;
  font-family: 'Libre Baskerville', serif;
  color: #222;
}
#numbers h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(323, 52%, 30%);
  font-weight: 700;
}
#numbers .lead-text {
  color: #333;
  max-width: 680px;
  margin: 0 auto;
}
#numbers .stat-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  height: 100%;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#numbers .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
#numbers .stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: hsl(299, 64%, 48%, 0.12);
  color: hsl(299, 64%, 48%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  animation: popIn 0.6s ease both;
}
#numbers .stat-number {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: hsl(351, 43%, 15%);
  display: block;
  animation: countUp 1s ease both;
}
#numbers .stat-label {
  font-size: 0.95rem;
  color: #333;
  margin-top: 6px;
}
#numbers .stat-context {
  font-size: 0.82rem;
  color: hsl(323, 52%, 30%);
  display: block;
  margin-top: 4px;
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}

#contact {
  background: #f8f9fa;
  padding: 56px 0;
  font-family: 'Libre Baskerville', serif;
  color: #222;
}
#contact h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(323, 52%, 30%);
  font-weight: 700;
}
#contact p {
  color: #333;
}
#contact .contact-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
#contact .contact-info-box {
  background: hsl(351, 43%, 15%);
  color: #f8f9fa;
  border-radius: 8px;
  padding: 32px;
  height: 100%;
}
#contact .contact-info-box h3 {
  font-family: 'Quicksand', sans-serif;
  color: #f8f9fa;
  font-weight: 600;
  margin-bottom: 20px;
}
#contact .contact-info-box a {
  color: hsl(299, 64%, 60%);
  text-decoration: none;
}
#contact .contact-info-box a:hover {
  color: #fff;
  text-decoration: underline;
}
#contact .contact-info-box p, #contact .contact-info-box li {
  color: #f1f1f1;
}
#contact .contact-info-box ul {
  list-style: none;
  padding-left: 0;
}
#contact .contact-info-box li {
  margin-bottom: 8px;
}
#contact .map-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.95rem;
}
#contact .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: 'Libre Baskerville', serif;
  padding: 10px 14px;
}
#contact .form-control:focus {
  border-color: hsl(299, 64%, 48%);
  box-shadow: 0 0 0 0.2rem hsla(299, 64%, 48%, 0.25);
}
#contact label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}
#contact .btn-contact-submit {
  background: hsl(299, 64%, 48%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  transition: background 0.2s ease;
}
#contact .btn-contact-submit:hover {
  background: hsl(323, 52%, 30%);
  color: #fff;
}
#contact .reply-note {
  font-size: 0.9rem;
  color: #555;
  margin-top: 12px;
}
#contact hr.section-divider {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 20px 0;
}

.disclaimer-section-hiteqa {
  padding: 52px 0;
  background-color: #f5f5f5;
  font-family: 'Libre Baskerville', serif;
}
.disclaimer-section-hiteqa h2 {
  font-family: 'Quicksand', sans-serif;
  color: hsl(351, 43%, 15%);
  font-weight: 700;
}
.disclaimer-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.disclaimer-icon {
  font-size: 2rem;
  color: hsl(299, 64%, 48%);
  flex-shrink: 0;
}
.disclaimer-text {
  color: #333333;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

#services-content {
  background: #f8f9fa;
  color: #222;
  font-family: 'Libre Baskerville', serif;
  padding: 52px 0;
}
#services-content h1,
#services-content h2,
#services-content h3 {
  font-family: 'Quicksand', sans-serif;
}
#services-content .page-header {
  margin-bottom: 48px;
}
#services-content .page-header h1 {
  color: hsl(351, 43%, 15%);
  font-weight: 700;
}
#services-content .page-header p {
  color: #333;
  max-width: 760px;
}
#services-content .service-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 28px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#services-content .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  border-color: hsl(299, 64%, 48%);
}
#services-content .icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: hsl(323, 52%, 30%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
#services-content .service-card h3 {
  color: hsl(351, 43%, 15%);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
#services-content .service-card p {
  color: #333;
  font-size: 0.96rem;
  margin-bottom: 14px;
}
#services-content .price-tag {
  display: inline-block;
  background: hsl(299, 64%, 48%);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.95rem;
}
#services-content .details-section {
  margin-top: 52px;
}
#services-content .details-section h2 {
  color: hsl(351, 43%, 15%);
  margin-bottom: 20px;
}
#services-content .table-responsive {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}
#services-content table {
  margin-bottom: 0;
  background: #fff;
}
#services-content table th {
  background: hsl(351, 43%, 15%);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
}
#services-content table td,
#services-content table th {
  padding: 12px 14px;
  vertical-align: middle;
  font-size: 0.92rem;
}
#services-content .cta-box {
  margin-top: 52px;
  background: hsl(323, 52%, 30%);
  color: #fff;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
}
#services-content .cta-box h2 {
  color: #fff;
  margin-bottom: 14px;
}
#services-content .cta-box p {
  color: #f2e6ec;
  margin-bottom: 22px;
}
#services-content .cta-box a.btn {
  background: hsl(299, 64%, 48%);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  text-decoration: none;
}
#services-content .cta-box a.btn:hover {
  background: #fff;
  color: hsl(323, 52%, 30%);
}

#contact-body {
  background: #f8f9fa;
  color: #222;
  padding: 52px 0;
  font-family: 'Libre Baskerville', serif;
}
#contact-body h1, #contact-body h2, #contact-body h3 {
  font-family: 'Quicksand', sans-serif;
}
#contact-body .contact-intro {
  max-width: 720px;
  margin-bottom: 32px;
}
#contact-body .info-card {
  background: hsl(351, 43%, 15%);
  color: #f8f9fa;
  border-radius: 8px;
  padding: 28px;
  height: 100%;
}
#contact-body .info-card h3 {
  color: #f8f9fa;
  margin-bottom: 18px;
}
#contact-body .info-card p {
  margin-bottom: 12px;
}
#contact-body .info-card a {
  color: hsl(299, 64%, 68%);
  text-decoration: none;
}
#contact-body .info-card a:hover {
  text-decoration: underline;
}
#contact-body .directions-note {
  font-size: 0.95rem;
  color: #e6e0e2;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 14px;
  margin-top: 14px;
}
#contact-body .form-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  height: 100%;
}
#contact-body .form-label {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: #222;
}
#contact-body .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
}
#contact-body .form-control:focus {
  border-color: hsl(299, 64%, 48%);
  box-shadow: 0 0 0 0.2rem hsla(299, 64%, 48%, 0.2);
}
#contact-body .btn-submit {
  background: hsl(323, 52%, 30%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
}
#contact-body .btn-submit:hover {
  background: hsl(299, 64%, 48%);
  color: #fff;
}
#contact-body .cta-strip {
  background: hsl(299, 64%, 48%);
  color: #fff;
  border-radius: 8px;
  padding: 26px;
  text-align: center;
  margin-top: 48px;
}
#contact-body .cta-strip h3 {
  color: #fff;
}
#contact-body .cta-strip a.btn {
  background: hsl(351, 43%, 15%);
  color: #fff;
  border-radius: 6px;
  padding: 10px 26px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}
#contact-body .cta-strip a.btn:hover {
  background: hsl(323, 52%, 30%);
}
