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

:root {
  --primary: hsl(82, 17%, 33%);
  --secondary: hsl(88, 17%, 17%);
  --accent: hsl(74, 43%, 40%);
  --surface: #f4f4f1;
}

body{
  font-family: 'Raleway', sans-serif;
  background-color: var(--surface);
  color: #222;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Inter', sans-serif;
}
.navbar{
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0da;
}
.navbar-brand{
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--secondary) !important;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
}
.navbar-nav .nav-link{
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: var(--secondary) !important;
  padding: 0.5rem 1rem !important;
}
.navbar-nav .nav-link:hover{
  color: var(--accent) !important;
}
.navbar-toggler{
  border-color: var(--primary);
}
.navbar-toggler:focus{
  box-shadow: 0 0 0 0.2rem rgba(107,122,71,0.25);
}

#faq-page {
  font-family: 'Raleway', sans-serif;
  background-color: #f4f4f1;
  padding: 52px 0;
  color: #222;
}
#faq-page h1, #faq-page h2, #faq-page h3 {
  font-family: 'Inter', sans-serif;
  color: hsl(88, 17%, 17%);
}
#faq-page .faq-hero {
  margin-bottom: 48px;
}
#faq-page .faq-hero p {
  max-width: 760px;
}
#faq-page .intro-block {
  background-color: #ffffff;
  border: 1px solid #e2e2dc;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 48px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
#faq-page .intro-block h2 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
#faq-page .intro-block p {
  margin-bottom: 0;
  line-height: 1.7;
}
#faq-page .sub-section {
  margin-bottom: 40px;
}
#faq-page .sub-section h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: hsl(82, 17%, 33%);
}
#faq-page .sub-section p {
  line-height: 1.7;
  color: #333;
}
#faq-page .accordion-item {
  border: 1px solid #e2e2dc;
  border-radius: 8px !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
#faq-page .accordion-button {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: hsl(88, 17%, 17%);
  background-color: #ffffff;
  padding: 18px 20px;
}
#faq-page .accordion-button:not(.collapsed) {
  background-color: hsl(82, 17%, 33%);
  color: #ffffff;
}
#faq-page .accordion-button:focus {
  box-shadow: none;
  border-color: hsl(74, 43%, 40%);
}
#faq-page .accordion-button::after {
  filter: none;
}
#faq-page .accordion-body {
  background-color: #ffffff;
  color: #333;
  line-height: 1.7;
  padding: 20px;
}
#faq-page .cta-box {
  background-color: hsl(88, 17%, 17%);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}
#faq-page .cta-box h2 {
  color: #ffffff;
  margin-bottom: 12px;
}
#faq-page .cta-box p {
  color: #f4f4f1;
  margin-bottom: 20px;
}
#faq-page .cta-box a.btn {
  background-color: hsl(74, 43%, 40%);
  color: #ffffff;
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
#faq-page .cta-box a.btn:hover {
  background-color: hsl(74, 43%, 32%);
  color: #ffffff;
}
#faq-page .facts-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
#faq-page .facts-strip .fact-card {
  flex: 1 1 200px;
  background-color: #ffffff;
  border: 1px solid #e2e2dc;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
#faq-page .facts-strip .fact-card .num {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: hsl(82, 17%, 33%);
  display: block;
}
#faq-page .facts-strip .fact-card .label {
  font-size: 0.85rem;
  color: #555;
}

footer {
  background: hsl(88, 17%, 17%);
  color: #f4f4f1;
  font-family: 'Raleway', sans-serif;
  padding: 48px 0 24px;
}
footer h5, footer h6 {
  font-family: 'Inter', sans-serif;
  color: #f4f4f1;
  margin-bottom: 16px;
}
footer a {
  color: #d8dcd0;
  text-decoration: none;
}
footer a:hover {
  color: hsl(74, 43%, 55%);
}
footer .footer-desc {
  color: #cfd3c8;
  font-size: 0.95rem;
  line-height: 1.6;
}
footer .footer-links li {
  margin-bottom: 8px;
}
footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: hsl(82, 17%, 33%);
  color: #fff;
  margin-right: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}
footer .social-icons a:hover {
  background: hsl(74, 43%, 40%);
  transform: translateY(-2px);
  color: #fff;
}
footer hr {
  border-color: rgba(244,244,241,0.15);
  margin: 32px 0 16px;
}
footer .copyright {
  font-size: 0.85rem;
  color: #b9beb1;
}
#consentPanel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #f4f4f1;
  border-top: 3px solid hsl(74, 43%, 40%);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
  padding: 16px 0;
  max-height: 60%;
  overflow-y: auto;
  font-family: 'Raleway', sans-serif;
}
#consentPanel h6 {
  font-family: 'Inter', sans-serif;
  color: hsl(88, 17%, 17%);
  font-weight: 700;
  margin-bottom: 6px;
}
#consentPanel p, #consentPanel .cookie-cat {
  color: hsl(88, 17%, 17%);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
#consentPanel .cookie-cat strong {
  color: hsl(82, 17%, 33%);
}
.consent-btn {
  border-radius: 8px;
  padding: 10px 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  transition: all 0.2s ease;
  width: 100%;
}
.btn-consent-accept {
  background: hsl(74, 43%, 40%);
  color: #fff;
}
.btn-consent-accept:hover {
  background: hsl(74, 43%, 32%);
  color: #fff;
}
.btn-consent-reject {
  background: hsl(82, 17%, 33%);
  color: #fff;
}
.btn-consent-reject:hover {
  background: hsl(82, 17%, 26%);
  color: #fff;
}
.consent-manage-link {
  color: hsl(88, 17%, 17%);
  font-size: 0.82rem;
  text-decoration: underline;
}
.consent-manage-link:hover {
  color: hsl(74, 43%, 40%);
}
@media (max-width: 576px) {
  #consentPanel h6 { font-size: 0.95rem; }
  #consentPanel p, #consentPanel .cookie-cat { font-size: 0.78rem; }
}

.hero-section {
  background-color: #f4f4f1;
  padding: 56px 0;
  font-family: 'Raleway', sans-serif;
}
.hero-section h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: hsl(88, 17%, 17%);
  font-size: 2.5rem;
}
.hero-section h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: hsl(82, 17%, 33%);
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.hero-section p.desc {
  color: #333;
  font-size: 1.05rem;
  max-width: 540px;
}
.hero-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 28px;
}
.hero-list li {
  margin-bottom: 12px;
  color: #333;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.hero-list i {
  color: hsl(74, 43%, 40%);
  font-size: 1.2rem;
  margin-top: 2px;
}
.hero-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.btn-primary-custom {
  background-color: hsl(82, 17%, 33%);
  border: none;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: background-color 0.25s ease, transform 0.2s ease;
}
.btn-primary-custom:hover {
  background-color: hsl(74, 43%, 40%);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-custom {
  background-color: transparent;
  border: 2px solid hsl(88, 17%, 17%);
  color: hsl(88, 17%, 17%);
  padding: 10px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: all 0.25s ease;
}
.btn-outline-custom:hover {
  background-color: hsl(88, 17%, 17%);
  color: #fff;
}
@media (max-width: 767px) {
  .hero-section h1 { font-size: 1.9rem; }
  .hero-section h2 { font-size: 1.15rem; }
}

#stay-in-touch .newsletter-section {
  background-color: hsl(88, 17%, 17%);
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
}

#stay-in-touch .newsletter-section h2 {
  font-family: 'Inter', sans-serif;
  color: #f7f6f3;
  font-weight: 700;
  margin-bottom: 16px;
}

#stay-in-touch .newsletter-section p {
  color: #e4e2dc;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

#stay-in-touch .newsletter-card {
  background-color: #f7f6f3;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 40px;
}

#stay-in-touch .newsletter-form .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 12px 16px;
  font-family: 'Raleway', sans-serif;
  color: #222;
}

#stay-in-touch .newsletter-form .form-control:focus {
  border-color: hsl(74, 43%, 40%);
  box-shadow: 0 0 0 0.2rem hsla(74, 43%, 40%, 0.25);
}

#stay-in-touch .newsletter-form .btn-subscribe {
  background-color: hsl(74, 43%, 40%);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: background-color 0.2s ease-in-out;
  white-space: nowrap;
}

#stay-in-touch .newsletter-form .btn-subscribe:hover {
  background-color: hsl(82, 17%, 33%);
  color: #ffffff;
}

#stay-in-touch .newsletter-note {
  color: #6b6b63;
  font-size: 0.85rem;
  margin-top: 14px;
}

@media (max-width: 576px) {
  #stay-in-touch .newsletter-card {
    padding: 24px;
  }
}

.services-section{background:#f4f4f1;padding:52px 0;font-family:'Raleway',sans-serif;}
.services-section h2{font-family:'Inter',sans-serif;color:hsl(88,17%,17%);font-weight:700;}
.services-section .lead-text{color:#444;max-width:700px;margin:0 auto;}
.service-card{background:#fff;border:1px solid #e0e0dc;border-radius:8px;box-shadow:0 2px 6px rgba(0,0,0,0.05);padding:32px 24px;height:100%;transition:transform 0.25s ease, box-shadow 0.25s ease;}
.service-card:hover{transform:translateY(-6px);box-shadow:0 10px 20px rgba(0,0,0,0.1);border-color:hsl(74,43%,40%);}
.service-icon{width:56px;height:56px;border-radius:8px;background:hsl(82,17%,33%);display:flex;align-items:center;justify-content:center;margin-bottom:18px;}
.service-icon i{color:#f7f6f3;font-size:26px;}
.service-card h3{font-family:'Inter',sans-serif;font-size:1.2rem;color:hsl(88,17%,17%);font-weight:700;margin-bottom:10px;}
.service-card p{color:#4a4a4a;font-size:0.95rem;line-height:1.55;margin-bottom:16px;}
.service-price{font-family:'Inter',sans-serif;font-weight:700;color:hsl(74,43%,40%);font-size:1.1rem;border-top:1px solid #ececec;padding-top:12px;display:flex;justify-content:space-between;align-items:center;}
.service-price span.term{font-family:'Raleway',sans-serif;font-weight:400;font-size:0.8rem;color:#777;}
@media(max-width:767px){.services-section{padding:40px 0;}}

#clients {
  background: #f4f4f1;
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
}
#clients h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(88, 17%, 17%);
  font-weight: 700;
}
#clients .lead-text {
  color: #444;
  max-width: 680px;
}
#clients .review-card {
  background: #fff;
  border: 1px solid #e2e2dd;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#clients .review-card.accent-card {
  background: hsl(82, 17%, 33%);
  border-color: hsl(82, 17%, 33%);
  color: #f7f6f3;
}
#clients .review-card.accent-card .review-name, #clients .review-card.accent-card .review-location, #clients .review-card.accent-card .review-text {
  color: #f7f6f3;
}
#clients .stars {
  color: hsl(74, 43%, 40%);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
#clients .accent-card .stars {
  color: #e2e8c9;
}
#clients .review-text {
  color: #333;
  font-size: 0.97rem;
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}
#clients .review-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: hsl(88, 17%, 17%);
  margin-bottom: 2px;
}
#clients .review-location {
  font-size: 0.85rem;
  color: #6a6a63;
}
#clients .review-card.short-card {
  justify-content: center;
}
#clients .review-card.short-card .review-text {
  font-size: 1.05rem;
  font-style: italic;
}
#clients .trust-strip {
  background: #fff;
  border: 1px solid #e2e2dd;
  border-radius: 8px;
  padding: 22px 18px;
  text-align: center;
}
#clients .trust-strip .num {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  color: hsl(74, 43%, 40%);
  display: block;
}
#clients .trust-strip .label {
  font-size: 0.85rem;
  color: #555;
}

#about .about-section {
  background-color: #f7f6f3;
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
  color: #222;
}
#about .about-section h2, #about .about-section h3, #about .about-section h4 {
  font-family: 'Inter', sans-serif;
  color: hsl(88, 17%, 17%);
}
#about .about-section p {
  line-height: 1.7;
  color: #333;
}
#about .about-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
#about .about-card {
  background-color: #fff;
  border: 1px solid #e2e2de;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  height: 100%;
}
#about .about-card h4 {
  margin-bottom: 4px;
}
#about .about-card .role {
  color: hsl(74, 43%, 30%);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: block;
}
#about .values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#about .values-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e6e6e2;
  color: #333;
}
#about .values-list li:last-child {
  border-bottom: none;
}
#about .values-list strong {
  color: hsl(88, 17%, 17%);
}
#about .about-stat {
  background-color: hsl(82, 17%, 33%);
  color: #f7f6f3;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}
#about .about-stat .num {
  font-family: 'Inter', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #ffffff;
}
#about .about-stat .label {
  font-size: 0.9rem;
  color: #f0efe9;
}
@media (max-width: 767px) {
  #about .about-section { padding: 40px 0; }
}

#how-we-work {
  background: #f7f6f3;
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
}
#how-we-work h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: hsl(88, 17%, 17%);
  margin-bottom: 8px;
}
#how-we-work .lead-text {
  color: #444;
  margin-bottom: 32px;
  font-size: 1.02rem;
}
#how-we-work .work-card {
  background: #ffffff;
  border: 1px solid #ddd8cd;
  border-radius: 8px;
  padding: 20px 18px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#how-we-work .work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}
#how-we-work .work-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: hsl(82, 17%, 33%);
  color: #f7f6f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
#how-we-work .work-text {
  color: hsl(88, 17%, 17%);
  font-size: 0.98rem;
  font-weight: 500;
  margin: 0;
  align-self: center;
}
@media (max-width: 767px) {
  #how-we-work {
    padding: 40px 0;
  }
  #how-we-work .work-card {
    padding: 16px;
  }
}

#in-numbers {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
}
#in-numbers h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(88, 17%, 17%);
  font-weight: 700;
}
#in-numbers p.section-lead {
  color: #444;
  max-width: 640px;
  margin: 0 auto;
}
#in-numbers .stat-card {
  background-color: #fff;
  border: 1px solid #e2e2dd;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 32px 20px;
  text-align: center;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#in-numbers .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.09);
}
#in-numbers .stat-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: hsl(74, 43%, 40%, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
#in-numbers .stat-icon i {
  font-size: 1.8rem;
  color: hsl(82, 17%, 33%);
}
#in-numbers .stat-number {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: hsl(88, 17%, 17%);
  display: inline-block;
  animation: countUp 1.2s ease-out;
}
#in-numbers .stat-label {
  font-weight: 600;
  color: hsl(82, 17%, 33%);
  margin-top: 6px;
  font-size: 1rem;
}
#in-numbers .stat-context {
  color: #666;
  font-size: 0.9rem;
  margin-top: 4px;
}
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 576px) {
  #in-numbers .stat-number {
    font-size: 2rem;
  }
}

#offer .offer-section {
  background: linear-gradient(135deg, hsl(82, 17%, 33%) 0%, hsl(88, 17%, 17%) 100%);
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
}
#offer .offer-card {
  background: #f4f4f1;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  padding: 40px;
}
#offer .offer-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: hsl(88, 17%, 17%);
  margin-bottom: 18px;
}
#offer .offer-text {
  color: #333;
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 24px;
}
#offer .deadline-box {
  background: hsl(74, 43%, 40%);
  color: #fff;
  border-radius: 8px;
  padding: 18px 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-family: 'Inter', sans-serif;
}
#offer .deadline-box i {
  font-size: 1.8rem;
  color: #fff;
}
#offer .deadline-label {
  font-size: 0.95rem;
  margin-bottom: 2px;
  display: block;
  opacity: 0.95;
}
#offer .deadline-date {
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
}
#offer .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}
#offer .benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: #333;
}
#offer .benefits-list li:last-child {
  border-bottom: none;
}
#offer .benefits-list i {
  color: hsl(74, 43%, 40%);
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}
#offer .offer-badge {
  background: hsl(88, 17%, 17%);
  color: #f4f4f1;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 8px 18px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 20px;
}
#offer .offer-cta-btn {
  background: hsl(74, 43%, 40%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}
#offer .offer-cta-btn:hover {
  background: hsl(88, 17%, 17%);
  color: #f4f4f1;
}
@media (max-width: 576px) {
  #offer .offer-card {
    padding: 26px;
  }
  #offer .deadline-box {
    flex-direction: row;
    padding: 14px 18px;
  }
  #offer .deadline-date {
    font-size: 1.15rem;
  }
}

#works {
  background: #f7f6f3;
  padding: 56px 0;
  font-family: 'Raleway', sans-serif;
}
#works h2, #works h3, #works .modal-title {
  font-family: 'Inter', sans-serif;
  color: hsl(88, 17%, 17%);
}
#works .section-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  color: #333;
}
#works .badge-category {
  background: hsl(74, 43%, 40%);
  color: #fff;
  font-weight: 500;
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 6px;
}
#works .portfolio-card {
  background: #fff;
  border: 1px solid #e2e2dc;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#works .portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
#works .portfolio-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eceae4;
}
#works .portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#works .portfolio-body {
  padding: 18px 20px 20px;
}
#works .portfolio-body h3 {
  font-size: 1.15rem;
  margin: 10px 0 8px;
}
#works .portfolio-body p {
  color: #444;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 14px;
}
#works .btn-details {
  background: hsl(82, 17%, 33%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}
#works .btn-details:hover {
  background: hsl(88, 17%, 17%);
  color: #fff;
}
#works .modal-content {
  border-radius: 8px;
  border: none;
}
#works .modal-header {
  background: hsl(88, 17%, 17%);
  color: #f7f6f3;
  border-radius: 8px 8px 0 0;
}
#works .modal-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}
#works .modal-body img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
}
#works .modal-body p {
  color: #333;
  line-height: 1.6;
}
#works .modal-body .badge-category {
  margin-bottom: 12px;
  display: inline-block;
}

#why-us {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
}
#why-us h2 {
  font-family: 'Inter', sans-serif;
  color: hsl(88, 17%, 17%);
  font-weight: 700;
}
#why-us .lead-text {
  color: #333;
  max-width: 700px;
  margin: 0 auto;
}
#why-us .advantage-card {
  background-color: #fff;
  border: 1px solid #e0e0dc;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 28px 22px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#why-us .advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-color: hsl(74, 43%, 40%);
}
#why-us .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background-color: hsl(82, 17%, 33%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
#why-us .icon-wrap i {
  color: #f7f6f3;
  font-size: 1.6rem;
}
#why-us .advantage-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: hsl(88, 17%, 17%);
  font-weight: 600;
  margin-bottom: 10px;
}
#why-us .advantage-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0;
}

#enquiry {
  background: #f4f4f1;
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
}
#enquiry h2, #enquiry h3 {
  font-family: 'Inter', sans-serif;
  color: hsl(88, 17%, 17%);
}
#enquiry .contact-card {
  background: #ffffff;
  border: 1px solid #e2e2dd;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 32px;
  height: 100%;
}
#enquiry .form-label {
  font-weight: 600;
  color: hsl(88, 17%, 17%);
}
#enquiry .form-control {
  border-radius: 6px;
  border: 1px solid #d3d3cd;
  padding: 10px 14px;
  font-family: 'Raleway', sans-serif;
}
#enquiry .form-control:focus {
  border-color: hsl(74, 43%, 40%);
  box-shadow: 0 0 0 0.2rem hsla(74, 43%, 40%, 0.25);
}
#enquiry .btn-submit {
  background: hsl(82, 17%, 33%);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: background 0.2s ease;
}
#enquiry .btn-submit:hover {
  background: hsl(74, 43%, 40%);
  color: #ffffff;
}
#enquiry .info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
#enquiry .info-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #333333;
}
#enquiry .info-list li strong {
  color: hsl(88, 17%, 17%);
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
#enquiry .info-list a {
  color: hsl(82, 17%, 33%);
  text-decoration: none;
  font-weight: 600;
}
#enquiry .info-list a:hover {
  color: hsl(74, 43%, 40%);
  text-decoration: underline;
}
#enquiry .map-link {
  color: hsl(74, 43%, 40%);
  font-weight: 600;
  text-decoration: none;
}
#enquiry .map-link:hover {
  text-decoration: underline;
}
#enquiry .hours-box {
  background: #f4f4f1;
  border-radius: 6px;
  padding: 16px;
  border: 1px solid #e2e2dd;
  margin-top: 8px;
}
#enquiry .hours-box p {
  margin: 4px 0;
  color: #333333;
  font-size: 0.95rem;
}
#enquiry .lede {
  color: #444444;
  max-width: 640px;
}

.disclaimer-section {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
}
.disclaimer-card {
  background-color: #ffffff;
  border: 1px solid #ddd9d0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 40px;
}
.disclaimer-icon {
  color: hsl(74, 43%, 40%);
  font-size: 2rem;
  margin-bottom: 12px;
}
.disclaimer-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: hsl(88, 17%, 17%);
  margin-bottom: 20px;
}
.disclaimer-text {
  color: #333333;
  font-size: 1rem;
  line-height: 1.7;
}



.thankyou-section {
  font-family: 'Raleway', sans-serif;
  background: linear-gradient(135deg, hsl(82, 17%, 33%, 0.05), hsl(74, 43%, 40%, 0.08));
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 3rem 1rem;
}

.thankyou-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 3rem 2rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
}

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

.success-icon-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: hsl(74, 43%, 40%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  animation: popIn 0.5s ease-out 0.2s backwards;
  box-shadow: 0 0.5rem 1.5rem hsla(74, 43%, 40%, 0.35);
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

.thankyou-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: hsl(88, 17%, 17%);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.thankyou-message {
  color: hsl(88, 17%, 17%, 0.8);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.thankyou-note {
  background: hsl(82, 17%, 33%, 0.07);
  border-left: 4px solid hsl(74, 43%, 40%);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin: 1.75rem 0;
  text-align: start;
}

.thankyou-note p {
  margin-bottom: 0.4rem;
  color: hsl(88, 17%, 17%);
  font-size: 0.95rem;
}

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

.thankyou-note i {
  color: hsl(74, 43%, 40%);
  margin-right: 0.5rem;
}

.btn-primary-custom {
  background-color: hsl(82, 17%, 33%);
  border: none;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 0.75rem 2.25rem;
  border-radius: 0.6rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 0.3rem 0.8rem hsla(82, 17%, 33%, 0.3);
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
  background-color: hsl(74, 43%, 40%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.2rem hsla(74, 43%, 40%, 0.4);
}

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

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

#contact-content {
  background-color: #f4f4f1;
  padding: 56px 0;
  font-family: 'Raleway', sans-serif;
  color: #2a2a2a;
}
#contact-content h1,
#contact-content h2,
#contact-content h3 {
  font-family: 'Inter', sans-serif;
  color: hsl(88, 17%, 17%);
}
#contact-content .intro-text {
  color: #3a3a3a;
  max-width: 700px;
}
#contact-content .card {
  border: 1px solid #ddd8cf;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  background-color: #ffffff;
}
#contact-content .info-card {
  background-color: hsl(88, 17%, 17%);
  color: #f4f4f1;
  border: none;
  border-radius: 8px;
  padding: 32px;
}
#contact-content .info-card h3 {
  color: #f4f4f1;
}
#contact-content .info-card a {
  color: hsl(74, 43%, 65%);
  text-decoration: none;
}
#contact-content .info-card a:hover {
  color: #ffffff;
  text-decoration: underline;
}
#contact-content .info-card p {
  color: #e6e6e0;
  margin-bottom: 6px;
}
#contact-content .info-card ul {
  list-style: none;
  padding-left: 0;
}
#contact-content .info-card li {
  margin-bottom: 4px;
  color: #e6e6e0;
}
#contact-content .find-us-line {
  font-size: 0.92rem;
  color: #d8d8cf;
  margin-top: 16px;
}
#contact-content .find-us-line a {
  color: hsl(74, 43%, 65%);
  font-weight: 600;
}
#contact-content .form-section {
  padding: 32px;
  border-radius: 8px;
}
#contact-content label {
  font-weight: 600;
  color: hsl(88, 17%, 17%);
  margin-bottom: 4px;
}
#contact-content .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 10px 12px;
}
#contact-content .form-control:focus {
  border-color: hsl(82, 17%, 33%);
  box-shadow: 0 0 0 0.2rem hsla(82, 17%, 33%, 0.2);
}
#contact-content .btn-primary-custom {
  background-color: hsl(74, 43%, 40%);
  border: none;
  color: #ffffff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}
#contact-content .btn-primary-custom:hover {
  background-color: hsl(74, 43%, 32%);
  color: #ffffff;
}
#contact-content .response-note {
  font-size: 0.9rem;
  color: #555;
  margin-top: 12px;
}
#contact-content .cta-box {
  background-color: hsl(82, 17%, 33%);
  border-radius: 8px;
  padding: 28px;
  color: #ffffff;
  text-align: center;
}
#contact-content .cta-box h3 {
  color: #ffffff;
}
#contact-content .cta-box a {
  background-color: #ffffff;
  color: hsl(88, 17%, 17%);
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}
#contact-content .cta-box a:hover {
  background-color: #f4f4f1;
}
