@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Merriweather:wght@300;400;700&display=swap');

:root {
  --primary: hsl(341, 51%, 36%);
  --secondary: hsl(101, 42%, 18%);
  --accent: hsl(221, 71%, 60%);
}

body {
  font-family: 'Merriweather', serif;
  color: #222;
  background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
}
.navbar {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  padding-top: 16px;
  padding-bottom: 16px;
}
.navbar-brand {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand:hover {
  color: var(--primary);
}
.navbar-nav .nav-link {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: #222;
  padding: 8px 16px;
  border-radius: 12px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--primary);
  background-color: rgba(341, 51%, 36%, 0.08);
}
.navbar-toggler {
  border-radius: 12px;
  border-color: var(--secondary);
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(101, 42, 18, 0.25);
}

footer {
  background: hsl(101, 42%, 18%);
  color: #f5f5f5;
  font-family: 'Merriweather', serif;
  padding: 80px 0 24px;
  border-radius: 24px 24px 0 0;
}
footer h5, footer h6 {
  font-family: 'Lato', sans-serif;
  color: #ffffff;
  margin-bottom: 16px;
}
footer a {
  color: #f0e6ea;
  text-decoration: none;
}
footer a:hover {
  color: hsl(221, 71%, 60%);
  text-decoration: underline;
}
footer .footer-desc {
  color: #e0d8db;
  font-size: 0.95rem;
  line-height: 1.6;
}
footer ul {
  list-style: none;
  padding-left: 0;
}
footer ul li {
  margin-bottom: 10px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: hsl(341, 51%, 36%);
  border-radius: 16px;
  color: #ffffff;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}
.footer-social a:hover {
  background: hsl(221, 71%, 60%);
  color: #ffffff;
  transform: translateY(-3px);
  text-decoration: none;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 48px;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #d8cfd2;
}
.footer-bottom a {
  color: #d8cfd2;
  margin-left: 12px;
}
.footer-bottom a:hover {
  color: hsl(221, 71%, 60%);
}

#cookieBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #ffffff;
  border-top: 3px solid hsl(341, 51%, 36%);
  padding: 18px 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Merriweather', serif;
  border-radius: 24px 24px 0 0;
}
#cookieBar h6 {
  font-family: 'Lato', sans-serif;
  color: hsl(101, 42%, 18%);
  font-weight: 700;
  margin-bottom: 8px;
}
#cookieBar p, #cookieBar li {
  color: #333333;
  font-size: 0.85rem;
  margin-bottom: 6px;
}
#cookieBar ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
.cookie-btn {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  border-radius: 14px;
  padding: 10px 18px;
  font-size: 0.9rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  width: 100%;
}
.btn-cookie-accept {
  background: hsl(341, 51%, 36%);
  color: #ffffff;
}
.btn-cookie-accept:hover {
  background: hsl(221, 71%, 60%);
  color: #ffffff;
}
.btn-cookie-reject {
  background: hsl(101, 42%, 18%);
  color: #ffffff;
}
.btn-cookie-reject:hover {
  background: hsl(221, 71%, 60%);
  color: #ffffff;
}
.cookie-manage-link {
  font-size: 0.85rem;
  color: hsl(341, 51%, 36%);
  text-decoration: underline;
}
.cookie-manage-link:hover {
  color: hsl(221, 71%, 60%);
}

#contact-body {
  background: #f8f9fa;
  padding: 96px 0;
  font-family: 'Merriweather', serif;
  color: #222;
}
#contact-body h1, #contact-body h2, #contact-body h3 {
  font-family: 'Lato', sans-serif;
}
#contact-body .contact-intro {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
#contact-body .contact-intro h1 {
  color: hsl(341, 51%, 36%);
  font-weight: 700;
  margin-bottom: 16px;
}
#contact-body .contact-intro p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
}
#contact-body .info-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  height: 100%;
}
#contact-body .info-card h3 {
  color: hsl(101, 42%, 18%);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
#contact-body .info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
#contact-body .info-list li {
  margin-bottom: 14px;
  line-height: 1.6;
}
#contact-body .info-list strong {
  color: hsl(341, 51%, 36%);
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}
#contact-body .info-list a {
  color: hsl(221, 71%, 60%);
  text-decoration: none;
  font-weight: 600;
}
#contact-body .info-list a:hover {
  text-decoration: underline;
}
#contact-body .hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
#contact-body .hours-table td {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}
#contact-body .hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: hsl(101, 42%, 18%);
}
#contact-body .directions-note {
  background: hsl(221, 71%, 96%);
  border-radius: 16px;
  padding: 20px;
  margin-top: 20px;
  font-size: 0.95rem;
  color: #222;
}
#contact-body .directions-note a {
  color: hsl(221, 71%, 60%);
  font-weight: 600;
  text-decoration: none;
}
#contact-body .directions-note a:hover {
  text-decoration: underline;
}
#contact-body .form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  height: 100%;
}
#contact-body .form-card h3 {
  color: hsl(341, 51%, 36%);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.4rem;
}
#contact-body .form-card p.form-sub {
  color: #555;
  margin-bottom: 28px;
  font-size: 0.95rem;
}
#contact-body .form-label {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}
#contact-body .form-control {
  border-radius: 12px;
  border: 1px solid #ccc;
  padding: 10px 14px;
  margin-bottom: 18px;
}
#contact-body .form-control:focus {
  border-color: hsl(221, 71%, 60%);
  box-shadow: 0 0 0 0.2rem hsla(221, 71%, 60%, 0.2);
}
#contact-body .btn-submit {
  background: hsl(341, 51%, 36%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 12px 32px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s ease;
}
#contact-body .btn-submit:hover {
  background: hsl(341, 51%, 28%);
  color: #fff;
}
#contact-body .cta-strip {
  margin-top: 88px;
  text-align: center;
  background: hsl(101, 42%, 18%);
  border-radius: 20px;
  padding: 48px 24px;
}
#contact-body .cta-strip h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
#contact-body .cta-strip p {
  color: #f0f0f0;
  margin-bottom: 24px;
}
#contact-body .cta-strip .btn-cta {
  background: hsl(221, 71%, 60%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 12px 36px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
#contact-body .cta-strip .btn-cta:hover {
  background: hsl(221, 71%, 50%);
  color: #fff;
}
@media (max-width: 767px) {
  #contact-body { padding: 64px 0; }
  #contact-body .form-card { padding: 28px; }
}

#about-main {
  font-family: 'Merriweather', serif;
  color: #262626;
  background: #ffffff;
  padding: 96px 0;
}
#about-main h1, #about-main h2, #about-main h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}
#about-main .about-hero {
  margin-bottom: 88px;
}
#about-main .about-hero h1 {
  color: hsl(341, 51%, 36%);
  font-size: 2.4rem;
  margin-bottom: 24px;
}
#about-main .lead-text {
  font-size: 1.1rem;
  line-height: 1.85;
  max-width: 900px;
}
#about-main .about-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 24px;
}
#about-main .section-block {
  margin-bottom: 88px;
}
#about-main h2 {
  color: hsl(101, 42%, 18%);
  font-size: 1.75rem;
  margin-bottom: 20px;
}
#about-main .values-list {
  list-style: none;
  padding-left: 0;
}
#about-main .values-list li {
  padding: 18px 22px;
  margin-bottom: 14px;
  background: #f8f9fa;
  border-left: 5px solid hsl(221, 71%, 60%);
  border-radius: 16px;
  line-height: 1.7;
}
#about-main .values-list strong {
  color: hsl(341, 51%, 36%);
  font-family: 'Lato', sans-serif;
}
#about-main .steps-list {
  counter-reset: step-counter;
  padding-left: 0;
  list-style: none;
}
#about-main .steps-list li {
  counter-increment: step-counter;
  position: relative;
  padding: 20px 24px 20px 68px;
  margin-bottom: 16px;
  background: #f8f9fa;
  border-radius: 18px;
  line-height: 1.7;
}
#about-main .steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: hsl(101, 42%, 18%);
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}
#about-main .team-card {
  background: hsl(341, 51%, 36%);
  color: #ffffff;
  border-radius: 20px;
  padding: 28px 24px;
  height: 100%;
}
#about-main .team-card h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
#about-main .team-card .role {
  color: hsl(221, 71%, 80%);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: block;
}
#about-main .team-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}
#about-main .stats-strip {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 36px 24px;
  margin-bottom: 88px;
}
#about-main .stat-num {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  color: hsl(341, 51%, 36%);
  display: block;
}
#about-main .stat-label {
  font-size: 0.95rem;
  color: #444;
}
#about-main .cta-box {
  background: hsl(101, 42%, 18%);
  color: #ffffff;
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
}
#about-main .cta-box h2 {
  color: #ffffff;
}
#about-main .cta-box p {
  color: #f0f0f0;
  margin-bottom: 24px;
}
#about-main .cta-box a {
  background: hsl(341, 51%, 36%);
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 14px;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  display: inline-block;
}
#about-main .cta-box a:hover {
  background: hsl(221, 71%, 60%);
  color: #ffffff;
}
@media (max-width: 767px) {
  #about-main .about-hero h1 {
    font-size: 1.9rem;
  }
  #about-main {
    padding: 64px 0;
  }
  #about-main .section-block {
    margin-bottom: 56px;
  }
}

#services-page {
  background-color: #f8f9fa;
  color: #222;
  font-family: 'Merriweather', serif;
  padding: 96px 0;
}
#services-page h1, #services-page h2, #services-page h3, #services-page h4 {
  font-family: 'Lato', sans-serif;
}
#services-page .intro-block {
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
}
#services-page .intro-block h1 {
  color: hsl(341, 51%, 36%);
  font-weight: 700;
  margin-bottom: 24px;
}
#services-page .subheading-block {
  max-width: 900px;
  margin: 0 auto 88px;
}
#services-page .subheading-block h3 {
  color: hsl(101, 42%, 18%);
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 32px;
}
#services-page .subheading-block p {
  line-height: 1.75;
}
#services-page .card-service {
  border: none;
  border-radius: 20px;
  background: #fff;
  padding: 36px 24px;
  text-align: center;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#services-page .card-service:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.14);
}
#services-page .icon-wrap {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: hsl(341, 51%, 36%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}
#services-page .card-service:nth-child(3n+2) .icon-wrap {
  background: hsl(101, 42%, 18%);
}
#services-page .card-service:nth-child(3n) .icon-wrap {
  background: hsl(221, 71%, 60%);
}
#services-page .card-service h4 {
  color: #222;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.15rem;
}
#services-page .card-service p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444;
  margin-bottom: 18px;
}
#services-page .price-tag {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #fff;
  background: hsl(341, 51%, 36%);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 1rem;
}
#services-page .terms-block {
  max-width: 900px;
  margin: 88px auto 0;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
#services-page .terms-block h3 {
  color: hsl(101, 42%, 18%);
  font-weight: 700;
  margin-bottom: 20px;
}
#services-page .terms-block ul {
  padding-left: 20px;
  line-height: 1.8;
}
#services-page .cta-block {
  text-align: center;
  margin-top: 88px;
  background: hsl(101, 42%, 18%);
  border-radius: 20px;
  padding: 56px 24px;
  color: #fff;
}
#services-page .cta-block h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
#services-page .cta-block p {
  color: #eee;
  margin-bottom: 24px;
}
#services-page .btn-cta {
  background: hsl(341, 51%, 36%);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 30px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}
#services-page .btn-cta:hover {
  background: hsl(221, 71%, 60%);
  color: #fff;
}
@media (max-width: 767px) {
  #services-page { padding: 64px 0; }
  #services-page .subheading-block { margin-bottom: 56px; }
  #services-page .terms-block { padding: 28px; }
}



  

  .thankyou-section {
    font-family: 'Merriweather', serif;
    background: linear-gradient(135deg, hsl(341, 51%, 97%) 0%, hsl(221, 71%, 97%) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    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: 700px;
    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;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popIn 0.5s ease-out 0.2s both;
    box-shadow: 0 0.5rem 1.5rem hsla(341, 51%, 36%, 0.3);
  }

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

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

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

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

  .thankyou-highlight {
    background: hsl(221, 71%, 96%);
    border-left: 4px solid var(--accent);
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    text-align: left;
    margin: 1.75rem 0;
  }

  .thankyou-highlight p {
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-size: 0.98rem;
  }

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

  .thankyou-highlight i {
    color: var(--primary);
    margin-right: 0.5rem;
  }

  .btn-thankyou {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    background-color: var(--primary);
    border: none;
    color: #fff;
    padding: 0.75rem 2.25rem;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 0.3rem 1rem hsla(341, 51%, 36%, 0.35);
  }

  .btn-thankyou:hover {
    background-color: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.25rem hsla(101, 42%, 18%, 0.35);
  }

  .thankyou-subtext {
    color: #8a8a8a;
    font-size: 0.9rem;
    margin-top: 1.5rem;
  }

.hero-compact {
  background: #f8f9fa;
  padding: 72px 0 88px;
}
.hero-compact h1 {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  color: #222;
  font-size: 2.5rem;
}
.hero-compact h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(341, 51%, 36%);
  font-size: 1.3rem;
  margin-top: 12px;
}
.hero-compact p {
  font-family: 'Merriweather', serif;
  color: #333;
  font-size: 1.05rem;
  max-width: 640px;
  margin: 20px auto 32px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid hsl(341, 51%, 36%, 0.2);
  border-radius: 20px;
  padding: 6px 16px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: hsl(101, 42%, 18%);
  margin-bottom: 22px;
}
.hero-cta-btn {
  background: hsl(341, 51%, 36%);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 14px 36px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.25s ease, transform 0.2s ease;
  text-decoration: none;
}
.hero-cta-btn:hover {
  background: hsl(221, 71%, 60%);
  color: #fff;
  transform: translateY(-2px);
}

.services-section{background:#f8f9fa;padding:112px 0;font-family:'Merriweather',serif;}
.services-section h2{font-family:'Lato',sans-serif;color:#222;font-weight:700;}
.services-section .lead-text{color:#333;max-width:680px;margin:0 auto;}
.service-card{background:#fff;border-radius:20px;padding:36px 32px;height:100%;border:1px solid #e9e9e9;transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;}
.service-card:hover{transform:translateY(-6px);box-shadow:0 16px 32px rgba(0,0,0,0.12);border-color:hsl(341, 51%, 36%);}
.service-icon{width:64px;height:64px;border-radius:16px;background:hsl(341, 51%, 36%);display:flex;align-items:center;justify-content:center;margin-bottom:20px;}
.service-icon i{font-size:28px;color:#fff;}
.service-card h3{font-family:'Lato',sans-serif;color:#222;font-size:1.3rem;font-weight:700;margin-bottom:12px;}
.service-card p{color:#444;font-size:0.98rem;line-height:1.6;margin-bottom:18px;}
.service-price{display:inline-block;background:hsl(101, 42%, 18%);color:#fff;font-family:'Lato',sans-serif;font-weight:700;padding:8px 18px;border-radius:14px;font-size:0.95rem;}
.service-terms{color:#666;font-size:0.85rem;margin-top:10px;}
@media (max-width:767px){.service-card{padding:28px 22px;}}

#portfolio .portfolio-section {padding:104px 0;background:#f8f9fa;font-family:'Merriweather',serif;color:#222;}
#portfolio .portfolio-section h2 {font-family:'Lato',sans-serif;font-weight:700;color:hsl(341, 51%, 36%);}
#portfolio .portfolio-section .lead-text {max-width:680px;margin:0 auto;color:#333;}
#portfolio .portfolio-card {border:none;border-radius:20px;overflow:hidden;background:#fff;box-shadow:0 4px 14px rgba(0,0,0,0.08);height:100%;display:flex;flex-direction:column;}
#portfolio .portfolio-card img {width:100%;aspect-ratio:4/3;object-fit:cover;}
#portfolio .portfolio-card .card-body {padding:24px;display:flex;flex-direction:column;flex-grow:1;}
#portfolio .portfolio-card .badge-category {align-self:flex-start;background:hsl(221, 71%, 60%);color:#fff;font-family:'Lato',sans-serif;font-weight:600;font-size:0.75rem;padding:6px 14px;border-radius:14px;margin-bottom:12px;}
#portfolio .portfolio-card h3 {font-family:'Lato',sans-serif;font-size:1.25rem;font-weight:700;color:hsl(101, 42%, 18%);margin-bottom:10px;}
#portfolio .portfolio-card p {font-size:0.95rem;color:#333;line-height:1.6;flex-grow:1;}
#portfolio .portfolio-card .btn-details {margin-top:16px;background:hsl(341, 51%, 36%);border:none;color:#fff;border-radius:16px;font-family:'Lato',sans-serif;font-weight:600;padding:10px 20px;align-self:flex-start;}
#portfolio .portfolio-card .btn-details:hover {background:hsl(341, 51%, 28%);color:#fff;}
#portfolio .modal-content {border-radius:20px;border:none;}
#portfolio .modal-header {border-bottom:none;padding:24px 24px 0 24px;}
#portfolio .modal-header .modal-title {font-family:'Lato',sans-serif;font-weight:700;color:hsl(341, 51%, 36%);}
#portfolio .modal-body img {width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:16px;margin-bottom:20px;}
#portfolio .modal-body p {color:#333;line-height:1.7;}
#portfolio .modal-body .badge-category {background:hsl(221, 71%, 60%);color:#fff;font-family:'Lato',sans-serif;font-size:0.8rem;padding:6px 14px;border-radius:14px;display:inline-block;margin-bottom:14px;}
#portfolio .modal-footer {border-top:none;padding:0 24px 24px 24px;}
#portfolio .modal-footer .btn-close-custom {background:hsl(101, 42%, 18%);color:#fff;border:none;border-radius:16px;font-family:'Lato',sans-serif;font-weight:600;padding:10px 22px;}
#portfolio .modal-footer .btn-close-custom:hover {background:hsl(101, 42%, 12%);color:#fff;}

#strengths {
  padding: 96px 0;
  background: #f8f9fa;
  font-family: 'Merriweather', serif;
}
#strengths h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(341, 51%, 36%);
}
#strengths .lead-sub {
  color: #444;
  max-width: 680px;
  margin: 0 auto;
}
#strengths .strength-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 26px;
  height: 100%;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
#strengths .strength-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  background: hsl(341, 51%, 97%);
}
#strengths .icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(341, 51%, 36%);
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: background 0.25s ease;
}
#strengths .strength-card:hover .icon-wrap {
  background: hsl(221, 71%, 60%);
}
#strengths h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: hsl(101, 42%, 18%);
  margin-bottom: 12px;
}
#strengths p {
  color: #333;
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 0;
}

#enquiry {
  font-family: 'Merriweather', serif;
  background-color: #f8f9fa;
  padding: 96px 0;
  color: #222;
}
#enquiry h2, #enquiry h3 {
  font-family: 'Lato', sans-serif;
  color: hsl(341, 51%, 36%);
}
#enquiry .contact-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  height: 100%;
}
#enquiry .info-card {
  background-color: hsl(101, 42%, 18%);
  color: #f8f9fa;
  border-radius: 20px;
  padding: 40px;
  height: 100%;
}
#enquiry .info-card h3 {
  color: #f8f9fa;
}
#enquiry .info-card a {
  color: hsl(221, 71%, 75%);
  text-decoration: none;
}
#enquiry .info-card a:hover {
  text-decoration: underline;
}
#enquiry .info-card p {
  margin-bottom: 6px;
}
#enquiry .info-item {
  margin-bottom: 24px;
}
#enquiry .info-item strong {
  display: block;
  margin-bottom: 4px;
  font-family: 'Lato', sans-serif;
  color: #f8f9fa;
}
#enquiry .form-control {
  border-radius: 12px;
  border: 1px solid #ccc;
  padding: 12px 16px;
  font-family: 'Merriweather', serif;
}
#enquiry .form-control:focus {
  border-color: hsl(221, 71%, 60%);
  box-shadow: 0 0 0 0.2rem hsla(221, 71%, 60%, 0.25);
}
#enquiry label {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
  color: #222;
}
#enquiry .btn-submit {
  background-color: hsl(341, 51%, 36%);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 14px 32px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  transition: background-color 0.2s ease;
}
#enquiry .btn-submit:hover {
  background-color: hsl(341, 51%, 28%);
  color: #ffffff;
}
#enquiry .map-link {
  color: hsl(221, 71%, 75%);
  font-weight: 700;
}
@media (max-width: 767px) {
  #enquiry {
    padding: 64px 0;
  }
  #enquiry .contact-card,
  #enquiry .info-card {
    padding: 28px;
  }
}

#disclaimer {
  background: #f8f9fa;
  padding: 96px 0;
  font-family: 'Merriweather', serif;
}
#disclaimer h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: hsl(341, 51%, 36%);
}
#disclaimer .disclaimer-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 48px;
}
#disclaimer .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: hsl(221, 71%, 60%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
#disclaimer p {
  color: #333333;
  line-height: 1.8;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  #disclaimer .disclaimer-card {
    padding: 28px;
  }
}

#portfolio-body {
  font-family: 'Merriweather', serif;
  background: #f8f9fa;
  color: #222;
  padding: 96px 0;
}
#portfolio-body h1,
#portfolio-body h2,
#portfolio-body h3,
#portfolio-body h4 {
  font-family: 'Lato', sans-serif;
  color: #222;
}
#portfolio-body .intro-block {
  max-width: 860px;
  margin: 0 auto 72px auto;
}
#portfolio-body .intro-block h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  color: hsl(341, 51%, 36%);
}
#portfolio-body .intro-block h3 {
  font-size: 1.2rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: hsl(101, 42%, 18%);
}
#portfolio-body .intro-block p {
  line-height: 1.75;
  font-size: 1.02rem;
}
#portfolio-body .project-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#portfolio-body .project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 26px rgba(0,0,0,0.12);
}
#portfolio-body .project-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9e9e9;
}
#portfolio-body .project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#portfolio-body .card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#portfolio-body .badge-category {
  background: hsl(221, 71%, 60%);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 14px;
}
#portfolio-body .card-body h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
#portfolio-body .card-body p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: #444;
  flex-grow: 1;
}
#portfolio-body .btn-details {
  background: hsl(341, 51%, 36%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 10px 20px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 16px;
  align-self: flex-start;
}
#portfolio-body .btn-details:hover {
  background: hsl(341, 51%, 28%);
  color: #fff;
}
#portfolio-body .modal-content {
  border-radius: 20px;
  border: none;
}
#portfolio-body .modal-header {
  border-bottom: none;
  padding: 24px 24px 0 24px;
}
#portfolio-body .modal-header .btn-close {
  background-color: #fff;
  opacity: 1;
  border-radius: 50%;
  padding: 8px;
}
#portfolio-body .modal-title {
  color: hsl(341, 51%, 36%);
  font-family: 'Lato', sans-serif;
}
#portfolio-body .modal-body img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
}
#portfolio-body .modal-body p {
  line-height: 1.7;
}
#portfolio-body .modal-badge {
  display: inline-block;
  background: hsl(221, 71%, 60%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-family: 'Lato', sans-serif;
}
#portfolio-body .cta-block {
  margin-top: 96px;
  background: hsl(101, 42%, 18%);
  border-radius: 22px;
  padding: 56px 40px;
  text-align: center;
  color: #fff;
}
#portfolio-body .cta-block h2 {
  color: #fff;
  margin-bottom: 16px;
}
#portfolio-body .cta-block p {
  color: #f0f0f0;
  max-width: 620px;
  margin: 0 auto 28px auto;
}
#portfolio-body .cta-block .btn-cta {
  background: hsl(341, 51%, 36%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px 36px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-block;
}
#portfolio-body .btn-cta:hover {
  background: hsl(341, 51%, 28%);
  color: #fff;
}
#portfolio-body .stats-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 72px;
}
#portfolio-body .stat-box {
  background: #fff;
  border-radius: 16px;
  padding: 20px 26px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  min-width: 150px;
}
#portfolio-body .stat-box .num {
  font-family: 'Lato', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: hsl(341, 51%, 36%);
}
#portfolio-body .stat-box .lbl {
  font-size: 0.85rem;
  color: #555;
}
@media (max-width: 767px) {
  #portfolio-body { padding: 64px 0; }
  #portfolio-body .cta-block { padding: 40px 24px; }
}
