@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(214, 57%, 39%);
  --secondary: hsl(4, 55%, 25%);
  --accent: hsl(64, 80%, 33%);
}

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



.thankyou-section {
    font-family: 'Crimson Text', serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, hsl(214, 57%, 39%, 0.05) 0%, hsl(64, 80%, 33%, 0.05) 100%);
    padding: 3rem 1rem;
}

.thankyou-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    border-top: 6px solid hsl(214, 57%, 39%);
}

.thankyou-heading {
    font-family: 'Work Sans', sans-serif;
    font-weight: 800;
    color: hsl(214, 57%, 39%);
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.thankyou-text {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thankyou-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: hsl(64, 80%, 33%, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    animation: pop-in 0.5s ease-out;
}

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

.thankyou-icon-wrapper svg {
    width: 56px;
    height: 56px;
    stroke: hsl(214, 57%, 39%);
}

.thankyou-note {
    background: hsl(4, 55%, 25%, 0.06);
    border-left: 4px solid hsl(4, 55%, 25%);
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
    color: hsl(4, 55%, 25%);
    margin: 1.75rem 0;
    text-align: left;
}

.btn-home {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    background-color: hsl(214, 57%, 39%);
    border-color: hsl(214, 57%, 39%);
    color: #fff;
    padding: 0.75rem 2.25rem;
    border-radius: 0.5rem;
    font-size: 1.05rem;
    transition: all 0.25s ease;
}

.btn-home:hover {
    background-color: hsl(214, 57%, 30%);
    border-color: hsl(214, 57%, 30%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

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

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

footer{
  background:hsl(214,57%,12%);
  color:#f5f5f5;
  font-family:'Crimson Text',serif;
  border-radius:0;
  padding:80px 0 24px;
}
footer h5{
  font-family:'Work Sans',sans-serif;
  color:#fff;
  margin-bottom:18px;
  font-size:1.15rem;
}
footer p, footer li, footer a{
  font-size:1.02rem;
}
footer a{
  color:#e8e8e8;
  text-decoration:none;
}
footer a:hover{
  color:hsl(64,80%,45%);
  text-decoration:underline;
}
footer ul{
  list-style:none;
  padding-left:0;
  margin-bottom:0;
}
footer ul li{
  margin-bottom:10px;
}
.footer-divider{
  border-color:rgba(255,255,255,0.15);
  margin:40px 0 20px;
}
.social-row a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border:1px solid rgba(255,255,255,0.3);
  color:#fff;
  margin-right:10px;
  font-size:1.1rem;
  transition:background 0.2s, color 0.2s;
  border-radius:0;
}
.social-row a:hover{
  background:hsl(64,80%,33%);
  color:#1a1a1a;
  border-color:hsl(64,80%,33%);
}
.footer-bottom{
  font-size:0.9rem;
  color:#ccc;
}
#cookiePanel{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  z-index:2000;
  background:#fff;
  border-top:3px solid hsl(214,57%,39%);
  box-shadow:0 -4px 20px rgba(0,0,0,0.2);
  padding:18px 0;
  max-height:60vh;
  overflow-y:auto;
  font-family:'Crimson Text',serif;
  border-radius:0;
}
#cookiePanel h5{
  font-family:'Work Sans',sans-serif;
  color:hsl(214,57%,20%);
  font-size:1.1rem;
  margin-bottom:8px;
}
#cookiePanel p{
  color:#333;
  font-size:0.92rem;
  margin-bottom:8px;
}
#cookiePanel .cookie-cats{
  font-size:0.85rem;
  color:#444;
  margin-bottom:10px;
}
#cookiePanel .cookie-cats strong{
  color:hsl(4,55%,25%);
}
.btn-cookie-accept, .btn-cookie-reject{
  border-radius:0;
  font-family:'Work Sans',sans-serif;
  font-weight:600;
  padding:10px 18px;
  font-size:0.92rem;
  width:100%;
  border:2px solid transparent;
  transition:all 0.2s;
}
.btn-cookie-accept{
  background:hsl(214,57%,39%);
  color:#fff;
}
.btn-cookie-accept:hover{
  background:hsl(214,57%,28%);
  color:#fff;
}
.btn-cookie-reject{
  background:#fff;
  color:hsl(4,55%,25%);
  border-color:hsl(4,55%,25%);
}
.btn-cookie-reject:hover{
  background:hsl(4,55%,25%);
  color:#fff;
}
.cookie-manage-link{
  font-size:0.85rem;
  color:hsl(214,57%,39%);
  text-decoration:underline;
}
.cookie-manage-link:hover{
  color:hsl(64,80%,33%);
}

#services-page {
  background-color: #ffffff;
  font-family: 'Crimson Text', serif;
  color: #222222;
  padding: 96px 0;
}

#services-page h1, #services-page h2, #services-page h3, #services-page h4 {
  font-family: 'Work Sans', sans-serif;
}

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

#services-page .page-header h1 {
  color: hsl(214, 57%, 39%);
  font-weight: 700;
  font-size: 2.6rem;
}

#services-page .page-header p {
  font-size: 1.2rem;
  color: #333333;
  max-width: 760px;
}

#services-page .services-list {
  border-top: 1px solid #ddd;
}

#services-page .service-row {
  border-bottom: 1px solid #ddd;
  padding: 28px 16px;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

#services-page .service-row:hover {
  background-color: #f5f7fb;
  transform: translateX(4px);
}

#services-page .service-icon {
  font-size: 2rem;
  color: hsl(214, 57%, 39%);
  min-width: 56px;
}

#services-page .service-row:hover .service-icon {
  color: hsl(64, 80%, 33%);
}

#services-page .service-title {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: hsl(4, 55%, 25%);
  margin-bottom: 6px;
}

#services-page .service-price {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(214, 57%, 39%);
  font-size: 1.15rem;
  white-space: nowrap;
}

#services-page .service-desc {
  font-size: 1.05rem;
  color: #333333;
  margin-bottom: 0;
}

#services-page .divider-vertical {
  display: none;
}

@media (min-width: 992px) {
  #services-page .col-divider {
    border-left: 1px solid #ddd;
  }
}

#services-page .faq-section {
  margin-top: 96px;
  background-color: #f5f7fb;
  padding: 56px 32px;
  border: 1px solid #ddd;
}

#services-page .faq-section h2 {
  color: hsl(214, 57%, 39%);
  font-weight: 700;
  margin-bottom: 32px;
}

#services-page .faq-item {
  margin-bottom: 24px;
}

#services-page .faq-item h4 {
  font-size: 1.15rem;
  color: hsl(4, 55%, 25%);
  font-weight: 600;
  margin-bottom: 8px;
}

#services-page .faq-item p {
  font-size: 1.05rem;
  color: #333333;
  margin-bottom: 0;
}

#services-page .cta-box {
  margin-top: 80px;
  background-color: hsl(214, 57%, 39%);
  color: #ffffff;
  padding: 48px 32px;
  text-align: center;
  border: 1px solid hsl(214, 57%, 39%);
}

#services-page .cta-box h2 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 16px;
}

#services-page .cta-box p {
  font-size: 1.15rem;
  margin-bottom: 24px;
}

#services-page .cta-box .btn-cta {
  background-color: hsl(64, 80%, 33%);
  color: #1a1a1a;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 12px 32px;
  border: none;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.25s ease;
}

#services-page .cta-box .btn-cta:hover {
  background-color: #ffffff;
  color: hsl(214, 57%, 39%);
}

#contact-body {
  background-color: #ffffff;
  padding: 96px 0;
  font-family: 'Crimson Text', serif;
  color: #222222;
}
#contact-body h1, #contact-body h2, #contact-body h3 {
  font-family: 'Work Sans', sans-serif;
}
#contact-body .intro-text {
  font-size: 1.15rem;
  max-width: 720px;
}
#contact-body .contact-card {
  border: 1px solid #d8d8d8;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  background-color: #f5f7fa;
  padding: 32px;
  height: 100%;
}
#contact-body .form-card {
  border: 1px solid #d8d8d8;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  background-color: #ffffff;
  padding: 32px;
}
#contact-body .info-item {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e0e0e0;
}
#contact-body .info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#contact-body .info-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: hsl(214, 57%, 39%);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
#contact-body a {
  color: hsl(214, 57%, 39%);
  text-decoration: none;
}
#contact-body a:hover {
  color: hsl(4, 55%, 25%);
  text-decoration: underline;
}
#contact-body .map-line {
  font-size: 0.98rem;
  margin-top: 6px;
  color: #444444;
}
#contact-body .form-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: #222222;
}
#contact-body .form-control {
  border-radius: 0;
  border: 1px solid #c9c9c9;
  padding: 10px 14px;
  font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
}
#contact-body .form-control:focus {
  border-color: hsl(214, 57%, 39%);
  box-shadow: 0 0 0 0.2rem hsla(214, 57%, 39%, 0.15);
}
#contact-body .btn-submit {
  background-color: hsl(214, 57%, 39%);
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 12px 32px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}
#contact-body .btn-submit:hover {
  background-color: hsl(4, 55%, 25%);
  color: #ffffff;
}
#contact-body .hours-table {
  font-size: 1.02rem;
}
#contact-body .hours-table td {
  padding: 4px 0;
}
#contact-body .top-cta {
  border-left: 4px solid hsl(64, 80%, 33%);
  padding: 18px 24px;
  background-color: #f5f7fa;
  margin-bottom: 56px;
}
#contact-body .final-cta {
  text-align: center;
  margin-top: 88px;
  padding-top: 48px;
  border-top: 1px solid #e0e0e0;
}
#contact-body .final-cta .btn-submit {
  padding: 14px 40px;
  font-size: 1.05rem;
}
@media (max-width: 767px) {
  #contact-body { padding: 64px 0; }
  #contact-body .contact-card, #contact-body .form-card { padding: 24px; }
}

.hero-section {
  background: #ffffff;
  padding: 96px 0;
}
.hero-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid #dcdcdc;
  border-radius: 0;
}
.hero-heading {
  font-family: 'Work Sans', sans-serif;
  color: #1f1f1f;
  font-weight: 700;
}
.hero-subheading {
  font-family: 'Work Sans', sans-serif;
  color: hsl(214, 57%, 39%);
  font-weight: 500;
  font-size: 1.35rem;
}
.hero-text {
  font-family: 'Crimson Text', serif;
  color: #333333;
  font-size: 1.15rem;
  line-height: 1.6;
}
.hero-list {
  list-style: none;
  padding-left: 0;
  font-family: 'Crimson Text', serif;
  color: #333333;
}
.hero-list li {
  margin-bottom: 12px;
  font-size: 1.1rem;
  display: flex;
  align-items: flex-start;
}
.hero-list i {
  color: hsl(64, 80%, 33%);
  margin-right: 10px;
  font-size: 1.2rem;
  margin-top: 3px;
}
.btn-primary-custom {
  background-color: hsl(214, 57%, 39%);
  border: 2px solid hsl(214, 57%, 39%);
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 0;
  transition: all 0.3s ease;
}
.btn-primary-custom:hover {
  background-color: #ffffff;
  color: hsl(214, 57%, 39%);
  border-color: hsl(214, 57%, 39%);
}
.btn-secondary-custom {
  background-color: transparent;
  border: 2px solid hsl(4, 55%, 25%);
  color: hsl(4, 55%, 25%);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 0;
  transition: all 0.3s ease;
}
.btn-secondary-custom:hover {
  background-color: hsl(4, 55%, 25%);
  color: #ffffff;
}
@media (max-width: 767px) {
  .hero-section {
    padding: 56px 0;
  }
}

#advantages {
  background-color: #f5f7fa;
  padding: 96px 0;
  font-family: 'Crimson Text', serif;
}
#advantages h2 {
  font-family: 'Work Sans', sans-serif;
  color: #222;
  font-weight: 700;
}
#advantages .lead-text {
  color: #444;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}
#advantages .advantage-card {
  background-color: #fff;
  border: 1px solid #dde1e6;
  border-radius: 0;
  padding: 36px 28px;
  height: 100%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#advantages .advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  border-color: hsl(214, 57%, 39%);
}
#advantages .icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(214, 57%, 39%);
  color: #fff;
  margin-bottom: 20px;
  border-radius: 0;
}
#advantages .icon-wrap i {
  font-size: 1.8rem;
}
#advantages .advantage-card:nth-child(3n+2) .icon-wrap {
  background-color: hsl(4, 55%, 25%);
}
#advantages .advantage-card:nth-child(3n+3) .icon-wrap {
  background-color: hsl(64, 80%, 33%);
  color: #222;
}
#advantages .advantage-card h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.25rem;
  color: #222;
  font-weight: 600;
  margin-bottom: 12px;
}
#advantages .advantage-card p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0;
}

#about-us {
  font-family: 'Crimson Text', serif;
  background-color: #ffffff;
  color: #222222;
  padding: 96px 0;
}
#about-us h2, #about-us h3 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(214, 57%, 39%);
}
#about-us .lead-text {
  font-size: 1.15rem;
  line-height: 1.75;
}
#about-us .about-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid #ddd;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
#about-us .value-card {
  background-color: #ffffff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-radius: 0;
  padding: 24px;
  height: 100%;
}
#about-us .value-card h4 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(4, 55%, 25%);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
#about-us .stat-block {
  border-left: 4px solid hsl(64, 80%, 33%);
  padding-left: 16px;
  margin-bottom: 20px;
}
#about-us .stat-number {
  font-family: 'Work Sans', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: hsl(214, 57%, 39%);
  line-height: 1;
}
#about-us .stat-label {
  font-size: 0.95rem;
  color: #444;
}
#about-us hr.divider {
  border: none;
  border-top: 2px solid hsl(64, 80%, 33%);
  width: 70px;
  margin: 20px 0 30px 0;
}

#testimonials {
  background: #fff;
  padding: 96px 0;
  font-family: 'Crimson Text', serif;
}
#testimonials h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(214, 57%, 39%);
  font-weight: 700;
}
#testimonials .lead-sub {
  font-size: 1.15rem;
  color: #333;
  max-width: 680px;
}
#testimonials .review-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 28px 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#testimonials .review-card .stars {
  color: hsl(64, 80%, 33%);
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
#testimonials .review-card .star-empty {
  color: #ccc;
}
#testimonials .review-card p.review-text {
  color: #262626;
  font-size: 1.08rem;
  line-height: 1.55;
  flex-grow: 1;
}
#testimonials .review-card .reviewer {
  margin-top: 16px;
  border-top: 1px solid #eee;
  padding-top: 12px;
}
#testimonials .review-card .reviewer strong {
  font-family: 'Work Sans', sans-serif;
  color: hsl(4, 55%, 25%);
  font-size: 1rem;
  display: block;
}
#testimonials .review-card .reviewer span {
  color: #666;
  font-size: 0.92rem;
}
#testimonials .review-card.tinted {
  background: #f5f8fb;
}
#testimonials .review-card.accent-border {
  border-left: 4px solid hsl(214, 57%, 39%);
}
#testimonials .review-card.wide-quote {
  border-left: 4px solid hsl(64, 80%, 33%);
}
#testimonials .stat-strip {
  border: 1px solid #ddd;
  background: #f8f9fa;
  padding: 20px;
  text-align: center;
  margin-top: 64px;
}
#testimonials .stat-strip .num {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: hsl(214, 57%, 39%);
}
#testimonials .stat-strip .lbl {
  color: #444;
  font-size: 0.95rem;
}
@media (max-width: 767px) {
  #testimonials { padding: 64px 0; }
}

#our-approach {
    background-color: #f5f5f5;
    padding: 80px 0;
    font-family: 'Crimson Text', serif;
  }

  #our-approach h2 {
    font-family: 'Work Sans', sans-serif;
    color: #222;
    font-weight: 600;
  }

  #our-approach .lead-text {
    color: #444;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
  }

  #our-approach .approach-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 28px 22px;
    height: 100%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  #our-approach .approach-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  }

  #our-approach .approach-icon {
    font-size: 1.6rem;
    color: hsl(214, 57%, 39%);
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
  }

  #our-approach .approach-text {
    color: #333;
    font-size: 1.08rem;
    margin: 0;
    line-height: 1.5;
  }

  @media (max-width: 767px) {
    #our-approach {
      padding: 56px 0;
    }
  }

#portfolio {
  background-color: #ffffff;
  padding: 96px 0;
  font-family: 'Crimson Text', serif;
}
#portfolio h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(214, 57%, 39%);
  font-weight: 700;
}
#portfolio .lead-text {
  color: #333;
  font-size: 1.15rem;
  max-width: 720px;
}
#portfolio .portfolio-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
#portfolio .portfolio-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
#portfolio .portfolio-card .card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#portfolio .portfolio-badge {
  display: inline-block;
  background-color: hsl(64, 80%, 33%);
  color: #222;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  margin-bottom: 12px;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
#portfolio .portfolio-card h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.2rem;
  color: hsl(214, 57%, 39%);
  margin-bottom: 10px;
}
#portfolio .portfolio-card p {
  color: #333;
  font-size: 1.02rem;
  flex-grow: 1;
}
#portfolio .portfolio-card .btn-detail {
  background-color: hsl(214, 57%, 39%);
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 8px 20px;
  margin-top: 12px;
  align-self: flex-start;
}
#portfolio .portfolio-card .btn-detail:hover {
  background-color: hsl(4, 55%, 25%);
  color: #fff;
}
#portfolio .modal-content {
  border-radius: 0;
  border: 1px solid #ddd;
}
#portfolio .modal-header {
  background-color: hsl(214, 57%, 39%);
  color: #fff;
  border-radius: 0;
}
#portfolio .modal-header .btn-close {
  filter: invert(1);
}
#portfolio .modal-title {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
}
#portfolio .modal-body {
  font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
  color: #333;
}
#portfolio .modal-body img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 18px;
}
#portfolio .modal-badge {
  display: inline-block;
  background-color: hsl(64, 80%, 33%);
  color: #222;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.services-section {
  background: #ffffff;
  padding: 96px 0;
  font-family: 'Crimson Text', serif;
}
.services-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(214, 57%, 39%);
  font-weight: 700;
}
.services-section .lead-text {
  color: #333333;
  font-size: 1.2rem;
  max-width: 760px;
}
.services-section .section-tag {
  font-family: 'Work Sans', sans-serif;
  color: hsl(4, 55%, 25%);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.9rem;
}
.service-card {
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  padding: 32px 28px;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
  transform: translateY(-4px);
  border-color: hsl(214, 57%, 39%);
}
.service-icon {
  width: 58px;
  height: 58px;
  background: hsl(214, 57%, 39%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  border-radius: 0;
  flex-shrink: 0;
}
.service-card:hover .service-icon {
  background: hsl(4, 55%, 25%);
}
.service-card h3 {
  font-family: 'Work Sans', sans-serif;
  color: #222222;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-card p {
  color: #3d3d3d;
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 16px;
}
.service-price {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(4, 55%, 25%);
  font-size: 1.1rem;
  border-top: 1px solid #e5e5e5;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-price span.badge-terms {
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  color: #666666;
  font-size: 0.9rem;
}
.services-note {
  background: #f2f5fa;
  border: 1px solid #dcdcdc;
  padding: 20px 24px;
  color: #333333;
  font-size: 1.05rem;
}
@media (max-width: 767px) {
  .services-section { padding: 64px 0; }
}

#subscribe {
  background-color: #f0f3f8;
  padding: 96px 0;
}
#subscribe .newsletter-card {
  background-color: #ffffff;
  border: 1px solid #d9dee6;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-radius: 0;
  padding: 48px;
}
#subscribe h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(214, 57%, 39%);
  font-weight: 700;
  margin-bottom: 16px;
}
#subscribe p {
  font-family: 'Crimson Text', serif;
  color: #333333;
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 32px;
}
#subscribe .form-control {
  border-radius: 0;
  border: 1px solid #b8c2ce;
  font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
  padding: 12px 16px;
}
#subscribe .form-control:focus {
  border-color: hsl(214, 57%, 39%);
  box-shadow: 0 0 0 0.2rem hsla(214, 57%, 39%, 0.2);
}
#subscribe .btn-subscribe {
  background-color: hsl(64, 80%, 33%);
  color: #1a1a1a;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 0;
  padding: 12px 32px;
  transition: background-color 0.2s ease;
}
#subscribe .btn-subscribe:hover {
  background-color: hsl(64, 80%, 26%);
  color: #ffffff;
}
#subscribe .subscribe-note {
  font-family: 'Crimson Text', serif;
  color: #555555;
  font-size: 0.95rem;
  margin-top: 16px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #subscribe .newsletter-card {
    padding: 32px 20px;
  }
}

#enquiry .contact-section {
  background-color: #f5f5f5;
  padding: 96px 0;
  font-family: 'Crimson Text', serif;
  color: #222;
}
#enquiry .contact-section h2, #enquiry .contact-section h3 {
  font-family: 'Work Sans', sans-serif;
  color: #222;
}
#enquiry .contact-section .lead-text {
  font-size: 1.15rem;
  color: #333;
}
#enquiry .contact-card {
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 40px;
}
#enquiry .info-card {
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 40px;
  height: 100%;
}
#enquiry .info-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}
#enquiry .info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#enquiry .info-item h4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  color: hsl(214, 57%, 39%);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#enquiry .info-item p, #enquiry .info-item a {
  color: #222;
  text-decoration: none;
  font-size: 1.05rem;
}
#enquiry .info-item a:hover {
  color: hsl(214, 57%, 39%);
  text-decoration: underline;
}
#enquiry .map-link {
  color: hsl(214, 57%, 39%);
  font-weight: 600;
  text-decoration: underline;
}
#enquiry .map-link:hover {
  color: hsl(4, 55%, 25%);
}
#enquiry .contact-section .form-label {
  font-family: 'Work Sans', sans-serif;
  color: #222;
  font-weight: 600;
  margin-bottom: 6px;
}
#enquiry .contact-section .form-control {
  border-radius: 0;
  border: 1px solid #ccc;
  padding: 10px 14px;
  font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
}
#enquiry .contact-section .form-control:focus {
  border-color: hsl(214, 57%, 39%);
  box-shadow: 0 0 0 0.2rem hsla(214, 57%, 39%, 0.2);
}
#enquiry .btn-submit {
  background-color: hsl(214, 57%, 39%);
  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-color 0.2s ease;
}
#enquiry .btn-submit:hover {
  background-color: hsl(4, 55%, 25%);
  color: #fff;
}
#enquiry .badge-hours {
  display: inline-block;
  background-color: hsl(64, 80%, 33%);
  color: #222;
  padding: 4px 10px;
  font-size: 0.9rem;
  margin-top: 4px;
}
@media (max-width: 767px) {
  #enquiry .contact-section { padding: 64px 0; }
  #enquiry .contact-card, #enquiry .info-card { padding: 24px; }
}

#disclaimer {
  background-color: #f5f5f5;
  padding: 96px 0;
  font-family: 'Crimson Text', serif;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
#disclaimer h2 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(214, 57%, 39%);
  font-weight: 700;
  font-size: 2rem;
}
#disclaimer .disclaimer-card {
  background-color: #ffffff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-radius: 0;
  padding: 40px;
}
#disclaimer .icon-wrap {
  color: hsl(214, 57%, 39%);
  font-size: 2.2rem;
  flex-shrink: 0;
}
#disclaimer p {
  color: #333333;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 0;
}

#about-section {
  font-family: 'Crimson Text', serif;
  color: #222;
  background: #ffffff;
  padding: 96px 0;
}

#about-section h1,
#about-section h2,
#about-section h3 {
  font-family: 'Work Sans', sans-serif;
}

#about-section .hero-block {
  margin-bottom: 96px;
}

#about-section .hero-block h1 {
  color: hsl(214, 57%, 39%);
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 24px;
}

#about-section .hero-block p {
  font-size: 1.2rem;
  line-height: 1.7;
}

#about-section .tinted-block {
  background: #f5f7fa;
  padding: 80px 32px;
  margin-bottom: 96px;
  border: 1px solid #dfe3e8;
}

#about-section .tinted-block h2 {
  color: hsl(4, 55%, 25%);
  font-weight: 600;
  margin-bottom: 24px;
  font-size: 1.9rem;
}

#about-section .tinted-block p {
  font-size: 1.15rem;
  line-height: 1.7;
}

#about-section .about-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid #dfe3e8;
}

#about-section .values-row {
  margin-bottom: 96px;
}

#about-section .value-card {
  background: #ffffff;
  border: 1px solid #dfe3e8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 28px;
  height: 100%;
}

#about-section .value-card h3 {
  color: hsl(214, 57%, 39%);
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}

#about-section .value-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0;
}

#about-section .process-block {
  margin-bottom: 96px;
}

#about-section .process-block h2 {
  color: hsl(4, 55%, 25%);
  font-weight: 600;
  margin-bottom: 40px;
  font-size: 1.9rem;
  text-align: center;
}

#about-section .step-card {
  background: #f5f7fa;
  border: 1px solid #dfe3e8;
  padding: 24px;
  height: 100%;
  position: relative;
}

#about-section .step-number {
  display: inline-block;
  background: hsl(214, 57%, 39%);
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  margin-bottom: 14px;
}

#about-section .step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #222;
  font-weight: 600;
}

#about-section .step-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

#about-section .stats-strip {
  background: hsl(214, 57%, 39%);
  color: #ffffff;
  padding: 48px 32px;
  margin-bottom: 96px;
}

#about-section .stats-strip .stat-num {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #ffffff;
  display: block;
}

#about-section .stats-strip .stat-label {
  font-size: 1rem;
  color: #eef2f8;
}

#about-section .cta-block {
  text-align: center;
  padding: 56px 24px;
  border: 1px solid #dfe3e8;
  background: #f5f7fa;
}

#about-section .cta-block h2 {
  color: hsl(4, 55%, 25%);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 1.8rem;
}

#about-section .cta-block p {
  font-size: 1.15rem;
  margin-bottom: 24px;
}

#about-section .btn-accent {
  background: hsl(64, 80%, 33%);
  color: #1a1a00;
  border: none;
  padding: 12px 32px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  font-size: 1.05rem;
}

#about-section .btn-accent:hover {
  background: hsl(64, 80%, 28%);
  color: #1a1a00;
}

@media (max-width: 767px) {
  #about-section .hero-block h1 {
    font-size: 1.9rem;
  }
  #about-section .tinted-block {
    padding: 48px 20px;
  }
}
