:root {
  --primary: hsl(337, 40%, 43%);
  --secondary: hsl(127, 26%, 26%);
  --accent: hsl(187, 50%, 46%);
}

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 #eee;
  padding-top: 16px;
  padding-bottom: 16px;
}
.navbar-brand{
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand img{
  border-radius: 8px;
}
.navbar-nav .nav-link{
  font-family: 'Work Sans', sans-serif;
  color: #222;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 12px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.navbar-nav .nav-link:hover{
  color: var(--primary);
  background-color: rgba(187, 50, 46, 0.08);
}
.navbar-toggler{
  border-color: var(--primary);
}
.navbar-toggler:focus{
  box-shadow: 0 0 0 0.2rem rgba(163, 46, 90, 0.25);
}

#about-section {
  background-color: #ffffff;
  padding: 96px 0;
  font-family: 'Crimson Text', serif;
  color: #262626;
}
#about-section h1,
#about-section h2,
#about-section h3 {
  font-family: 'Work Sans', sans-serif;
  color: #262626;
}
#about-section .lead-intro {
  font-size: 1.25rem;
  color: #3a3a3a;
}
#about-section .img-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  margin-bottom: 24px;
}
#about-section .img-wrap img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
#about-section .info-card {
  background-color: #f7f4f5;
  border: 1px solid #e5dde1;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
#about-section .value-card {
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 18px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
#about-section .value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: hsl(337, 40%, 43%);
}
#about-section .stat-band {
  background-color: hsl(127, 26%, 26%);
  border-radius: 20px;
  padding: 40px 32px;
  color: #f5f5f5;
  margin-top: 64px;
  margin-bottom: 64px;
}
#about-section .stat-band h2 {
  color: #ffffff;
}
#about-section .stat-band .stat-number {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: hsl(187, 50%, 46%);
}
#about-section .stat-band .stat-label {
  color: #e8e8e8;
  font-size: 0.95rem;
}
#about-section .qa-block {
  border-top: 1px solid #e2e2e2;
  padding-top: 12px;
  margin-top: 12px;
}
#about-section .qa-block h3 {
  font-size: 1.1rem;
  color: hsl(127, 26%, 26%);
  margin-bottom: 6px;
}
#about-section .cta-final {
  background-color: hsl(337, 40%, 43%);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  color: #ffffff;
  margin-top: 72px;
}
#about-section .cta-final h2 {
  color: #ffffff;
}
#about-section .cta-final p {
  color: #f5e9ee;
}
#about-section .btn-cta {
  background-color: hsl(187, 50%, 46%);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 12px 32px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}
#about-section .btn-cta:hover {
  background-color: #2f8a94;
  color: #ffffff;
}
@media (max-width: 767px) {
  #about-section { padding: 64px 0; }
  #about-section .stat-band { margin-top: 40px; margin-bottom: 40px; }
}

footer.jozafo-footer {
  background: hsl(127, 26%, 26%);
  color: #f5f5f5;
  padding: 96px 0 32px;
  font-family: 'Crimson Text', serif;
}
footer.jozafo-footer h5, footer.jozafo-footer h6 {
  font-family: 'Work Sans', sans-serif;
  color: #ffffff;
  margin-bottom: 18px;
}
footer.jozafo-footer p, footer.jozafo-footer li, footer.jozafo-footer a {
  color: #e7ece8;
  font-size: 1.05rem;
}
footer.jozafo-footer a {
  text-decoration: none;
  transition: color 0.2s ease;
}
footer.jozafo-footer a:hover {
  color: hsl(187, 50%, 46%);
}
footer.jozafo-footer ul {
  list-style: none;
  padding-left: 0;
}
footer.jozafo-footer ul li {
  margin-bottom: 10px;
}
footer .footer-divider {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 40px 0 24px;
}
footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}
footer .social-icons a:hover {
  background: hsl(337, 40%, 43%);
  border-color: hsl(337, 40%, 43%);
  color: #ffffff;
}
footer .bottom-text {
  color: #d5dbd6;
  font-size: 0.95rem;
}
footer .bottom-links a {
  color: #d5dbd6;
  margin-left: 18px;
  font-size: 0.95rem;
}
footer .bottom-links a:first-child {
  margin-left: 0;
}

#cookieBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #ffffff;
  border-top: 3px solid hsl(337, 40%, 43%);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 18px 0;
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Crimson Text', serif;
}
#cookieBar h6 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(127, 26%, 26%);
  font-weight: 700;
  margin-bottom: 6px;
}
#cookieBar p, #cookieBar li {
  color: #333333;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
#cookieBar ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
.cookie-btn {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  border-radius: 16px;
  padding: 10px 18px;
  border: none;
  font-size: 0.95rem;
  transition: transform 0.15s ease, opacity 0.2s ease;
  width: 100%;
}
.cookie-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}
.btn-accept-all {
  background: hsl(337, 40%, 43%);
  color: #ffffff;
}
.btn-reject-optional {
  background: hsl(127, 26%, 26%);
  color: #ffffff;
}
.cookie-manage-link {
  color: hsl(187, 50%, 46%);
  font-size: 0.9rem;
  text-decoration: underline;
}
.cookie-manage-link:hover {
  color: hsl(337, 40%, 43%);
}
@media (max-width: 767px) {
  #cookieBar {
    padding: 14px 0;
  }
  #cookieBar p, #cookieBar li {
    font-size: 0.88rem;
  }
}

#contact-body {
  background-color: #f7f5f6;
  font-family: 'Crimson Text', serif;
  color: #2a2a2a;
  padding: 96px 0;
}
#contact-body h1, #contact-body h2, #contact-body h3 {
  font-family: 'Work Sans', sans-serif;
}
#contact-body .intro-heading {
  color: hsl(337, 40%, 43%);
  font-weight: 700;
}
#contact-body .intro-text {
  font-size: 1.15rem;
  max-width: 700px;
}
#contact-body .card {
  border: 1px solid #e2ddde;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  background-color: #ffffff;
}
#contact-body .form-card {
  padding: 40px;
}
#contact-body .form-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: #2a2a2a;
}
#contact-body .form-control {
  border-radius: 12px;
  border: 1px solid #cfc9ca;
  font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
  padding: 10px 14px;
}
#contact-body .form-control:focus {
  border-color: hsl(187, 50%, 46%);
  box-shadow: 0 0 0 0.2rem rgba(46, 172, 186, 0.2);
}
#contact-body .btn-submit {
  background-color: hsl(337, 40%, 43%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 30px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  transition: background-color 0.2s ease-in-out;
}
#contact-body .btn-submit:hover {
  background-color: hsl(337, 40%, 33%);
  color: #fff;
}
#contact-body .info-card {
  padding: 32px;
  height: 100%;
}
#contact-body .info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
#contact-body .info-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background-color: hsl(187, 50%, 46%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
#contact-body .info-item h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: hsl(127, 26%, 26%);
}
#contact-body .info-item a {
  color: hsl(337, 40%, 43%);
  text-decoration: none;
}
#contact-body .info-item a:hover {
  text-decoration: underline;
}
#contact-body .hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.02rem;
}
#contact-body .hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dashed #e2ddde;
}
#contact-body .hours-list li:last-child {
  border-bottom: none;
}
#contact-body .map-link {
  display: inline-block;
  margin-top: 6px;
  color: hsl(187, 50%, 46%);
  font-weight: 600;
  text-decoration: none;
}
#contact-body .map-link:hover {
  text-decoration: underline;
}
#contact-body .cta-banner {
  background-color: hsl(127, 26%, 26%);
  border-radius: 20px;
  padding: 40px;
  color: #fff;
  text-align: center;
}
#contact-body .cta-banner h2 {
  color: #fff;
}
#contact-body .cta-banner .btn {
  background-color: hsl(337, 40%, 43%);
  color: #fff;
  border-radius: 12px;
  padding: 12px 32px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  border: none;
}
#contact-body .cta-banner .btn:hover {
  background-color: hsl(337, 40%, 33%);
  color: #fff;
}
@media (max-width: 767px) {
  #contact-body { padding: 64px 0; }
  #contact-body .form-card, #contact-body .info-card { padding: 24px; }
}

#faq-content {
  font-family: 'Crimson Text', serif;
  background-color: #fff;
  color: #222;
  padding: 96px 0;
}
#faq-content h1, #faq-content h2, #faq-content h3 {
  font-family: 'Work Sans', sans-serif;
}
#faq-content .faq-hero {
  margin-bottom: 88px;
}
#faq-content .faq-hero h1 {
  color: hsl(337, 40%, 43%);
  font-weight: 700;
}
#faq-content .faq-hero p {
  font-size: 1.2rem;
  max-width: 760px;
  color: #333;
}
#faq-content .accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
#faq-content .accordion-button {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: #222;
  background-color: #fff;
  font-size: 1.05rem;
}
#faq-content .accordion-button:not(.collapsed) {
  color: hsl(337, 40%, 43%);
  background-color: hsl(337, 40%, 96%);
  box-shadow: none;
}
#faq-content .accordion-button:focus {
  box-shadow: none;
  border-color: hsl(187, 50%, 46%);
}
#faq-content .accordion-button::after {
  filter: none;
}
#faq-content .accordion-body {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #333;
  background-color: #fdfdfd;
}
#faq-content .extra-qa {
  margin-top: 96px;
  background-color: #f5f9f9;
  border-radius: 20px;
  padding: 56px;
}
#faq-content .extra-qa h2 {
  color: hsl(127, 26%, 26%);
  font-weight: 700;
  margin-bottom: 32px;
}
#faq-content .extra-qa .qa-block {
  margin-bottom: 28px;
}
#faq-content .extra-qa .qa-block h5 {
  font-family: 'Work Sans', sans-serif;
  color: hsl(337, 40%, 43%);
  font-weight: 600;
  margin-bottom: 8px;
}
#faq-content .extra-qa .qa-block p {
  color: #333;
  margin-bottom: 0;
}
#faq-content .cta-box {
  margin-top: 96px;
  background-color: hsl(127, 26%, 26%);
  border-radius: 20px;
  padding: 56px;
  text-align: center;
  color: #fff;
}
#faq-content .cta-box h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
#faq-content .cta-box p {
  color: #f0f0f0;
  font-size: 1.15rem;
  margin-bottom: 24px;
}
#faq-content .cta-box a.btn {
  background-color: hsl(337, 40%, 43%);
  color: #fff;
  border: none;
  padding: 12px 36px;
  border-radius: 50px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease;
}
#faq-content .cta-box a.btn:hover {
  background-color: hsl(187, 50%, 40%);
  color: #fff;
}
@media (max-width: 768px) {
  #faq-content { padding: 64px 0; }
  #faq-content .extra-qa, #faq-content .cta-box { padding: 32px 20px; }
}

#services-page {
  background-color: #ffffff;
  font-family: 'Crimson Text', serif;
  color: #262626;
  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: 88px;
}

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

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

#services-page .intro-badge {
  display: inline-block;
  background-color: hsl(187, 50%, 46%, 0.12);
  color: hsl(187, 50%, 30%);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
}

#services-page .service-list-wrapper {
  border-top: 1px solid #e0dcdc;
}

#services-page .service-item {
  padding: 32px 24px;
  border-bottom: 1px solid #e0dcdc;
  transition: background-color 0.25s ease, transform 0.25s ease;
  border-radius: 16px;
}

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

#services-page .service-item .icon-box {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  background-color: hsl(337, 40%, 43%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
}

#services-page .service-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: hsl(127, 26%, 26%);
  margin-bottom: 6px;
}

#services-page .service-item p {
  font-size: 1.08rem;
  color: #3a3a3a;
  margin-bottom: 10px;
}

#services-page .service-price {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: hsl(337, 40%, 43%);
  font-size: 1.2rem;
}

#services-page .col-divider {
  border-left: 1px solid #e0dcdc;
}

@media (max-width: 991px) {
  #services-page .col-divider {
    border-left: none;
    border-top: 1px solid #e0dcdc;
    padding-top: 24px;
    margin-top: 12px;
  }
}

#services-page .process-section {
  margin-top: 104px;
  background-color: #f6f2f4;
  border-radius: 20px;
  padding: 56px 40px;
  border: 1px solid #e6dde1;
}

#services-page .process-section h2 {
  color: hsl(127, 26%, 26%);
  font-weight: 700;
  margin-bottom: 40px;
}

#services-page .step {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

#services-page .step-number {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background-color: hsl(187, 50%, 46%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Work Sans', sans-serif;
}

#services-page .step h4 {
  font-size: 1.15rem;
  color: #232323;
  margin-bottom: 4px;
}

#services-page .step p {
  color: #3a3a3a;
  margin-bottom: 0;
  font-size: 1.05rem;
}

#services-page .cta-box {
  margin-top: 96px;
  background-color: hsl(337, 40%, 43%);
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
  color: #ffffff;
}

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

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

#services-page .cta-box .btn {
  background-color: #ffffff;
  color: hsl(337, 40%, 43%);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 14px;
  border: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}

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

.hero-section{
  background:#fdfbfc;
  padding:96px 0;
}
.hero-heading{
  font-family:'Work Sans',sans-serif;
  font-weight:700;
  color:#222;
  font-size:2.6rem;
  margin-bottom:0.75rem;
}
.hero-subheading{
  font-family:'Work Sans',sans-serif;
  font-weight:500;
  color:hsl(337, 40%, 43%);
  font-size:1.3rem;
  margin-bottom:1.25rem;
}
.hero-text{
  font-family:'Crimson Text',serif;
  font-size:1.15rem;
  color:#333;
  line-height:1.6;
  margin-bottom:1.5rem;
}
.hero-list{
  list-style:none;
  padding-left:0;
  margin-bottom:2rem;
}
.hero-list li{
  font-family:'Crimson Text',serif;
  font-size:1.1rem;
  color:#333;
  margin-bottom:0.75rem;
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.hero-list li i{
  color:hsl(187, 50%, 46%);
  font-size:1.2rem;
  margin-top:3px;
}
.btn-hero-primary{
  background-color:hsl(337, 40%, 43%);
  border:2px solid hsl(337, 40%, 43%);
  color:#fff;
  font-family:'Work Sans',sans-serif;
  font-weight:600;
  padding:12px 28px;
  border-radius:20px;
  transition:all 0.3s ease;
}
.btn-hero-primary:hover{
  background-color:#fff;
  color:hsl(337, 40%, 43%);
  border-color:hsl(337, 40%, 43%);
}
.btn-hero-secondary{
  background-color:transparent;
  border:2px solid hsl(127, 26%, 26%);
  color:hsl(127, 26%, 26%);
  font-family:'Work Sans',sans-serif;
  font-weight:600;
  padding:12px 28px;
  border-radius:20px;
  transition:all 0.3s ease;
}
.btn-hero-secondary:hover{
  background-color:hsl(127, 26%, 26%);
  color:#fff;
  border-color:hsl(127, 26%, 26%);
}
.hero-img{
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius:20px;
  box-shadow:0 8px 24px rgba(0,0,0,0.12);
}
@media (max-width:767px){
  .hero-heading{font-size:2rem;}
  .hero-subheading{font-size:1.1rem;}
  .hero-section{padding:64px 0;}
}

.services-section{background:#f7f5f4;padding:96px 0;}
.services-section h2{font-family:'Work Sans',sans-serif;color:hsl(337,40%,43%);font-weight:700;}
.services-section .lead-text{font-family:'Crimson Text',serif;font-size:1.2rem;color:#333;max-width:720px;}
.service-card{
  background:#fff;
  border:1px solid #e3ddd9;
  border-radius:20px;
  padding:36px 28px;
  height:100%;
  box-shadow:0 4px 14px rgba(0,0,0,0.05);
  transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 14px 30px rgba(0,0,0,0.12);
  border-color:hsl(187,50%,46%);
}
.service-icon{
  width:64px;
  height:64px;
  border-radius:16px;
  background:hsl(337,40%,43%);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.8rem;
  margin-bottom:20px;
  transition:background 0.25s ease;
}
.service-card:hover .service-icon{background:hsl(187,50%,46%);}
.service-card h3{
  font-family:'Work Sans',sans-serif;
  font-size:1.25rem;
  font-weight:600;
  color:#222;
  margin-bottom:12px;
}
.service-card p{
  font-family:'Crimson Text',serif;
  font-size:1.05rem;
  color:#444;
  margin-bottom:18px;
}
.service-price{
  font-family:'Work Sans',sans-serif;
  font-weight:700;
  font-size:1.15rem;
  color:hsl(127,26%,26%);
  border-top:1px solid #eee;
  padding-top:14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.service-price span.tag{
  font-family:'Crimson Text',serif;
  font-weight:400;
  font-size:0.9rem;
  color:#777;
}
@media (max-width:767px){
  .services-section{padding:64px 0;}
}

#projects {
  background-color: #fdfaf9;
  padding: 96px 0;
  font-family: 'Crimson Text', serif;
}
#projects h2, #projects h3, #projects .modal-title {
  font-family: 'Work Sans', sans-serif;
}
#projects .section-heading {
  color: #222;
  font-weight: 600;
}
#projects .section-sub {
  color: #444;
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0 auto;
}
#projects .project-card {
  background: #fff;
  border: 1px solid #e5e0de;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  overflow: hidden;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#projects .project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}
#projects .project-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #eee;
}
#projects .project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#projects .project-body {
  padding: 22px 24px 26px;
}
#projects .category-badge {
  display: inline-block;
  background-color: hsl(187, 50%, 46%);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
#projects .project-title {
  color: #222;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.35rem;
}
#projects .project-desc {
  color: #444;
  font-size: 1.08rem;
  line-height: 1.55;
  margin-bottom: 18px;
}
#projects .btn-view {
  background-color: hsl(337, 40%, 43%);
  border: none;
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  padding: 9px 22px;
  border-radius: 30px;
  font-size: 0.95rem;
  transition: background-color 0.2s ease;
}
#projects .btn-view:hover {
  background-color: hsl(337, 40%, 33%);
  color: #fff;
}
#projects .modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
}
#projects .modal-header {
  background-color: hsl(127, 26%, 26%);
  border-bottom: none;
}
#projects .modal-header .modal-title {
  color: #fff;
  font-weight: 600;
}
#projects .modal-header .btn-close {
  filter: invert(1) brightness(2);
}
#projects .modal-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #eee;
}
#projects .modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#projects .modal-body {
  padding: 26px 28px;
  color: #333;
  font-size: 1.08rem;
  line-height: 1.6;
}
#projects .modal-body .meta-badge {
  background-color: hsl(187, 50%, 46%);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-weight: 600;
}
#projects .stats-strip {
  margin-top: 72px;
  border-top: 1px solid #e5e0de;
  padding-top: 40px;
}
#projects .stats-strip .stat-num {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: hsl(337, 40%, 43%);
}
#projects .stats-strip .stat-label {
  color: #444;
  font-size: 1rem;
}

#figures {
  background-color: #f5f5f5;
  padding: 96px 0;
  font-family: 'Crimson Text', serif;
}
#figures h2 {
  font-family: 'Work Sans', sans-serif;
  color: #222;
  font-weight: 700;
}
#figures p.lead-text {
  color: #333;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}
#figures .stat-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  padding: 36px 20px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#figures .stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}
#figures .stat-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  font-size: 2rem;
  color: #fff;
}
#figures .icon-primary { background-color: hsl(337, 40%, 43%); }
#figures .icon-secondary { background-color: hsl(127, 26%, 26%); }
#figures .icon-accent { background-color: hsl(187, 50%, 46%); }

#figures .stat-number {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #222;
  display: inline-block;
  animation: countUp 1.2s ease-out;
}
@keyframes countUp {
  0% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}
#figures .stat-label {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  color: #333;
  font-size: 1.05rem;
  margin-top: 6px;
}
#figures .stat-context {
  color: #555;
  font-size: 0.95rem;
  margin-top: 4px;
}
@media (max-width: 767px) {
  #figures { padding: 72px 0; }
  #figures .stat-card { padding: 28px 16px; }
}

#promo {
  background: linear-gradient(135deg, hsl(337, 40%, 43%) 0%, hsl(187, 50%, 46%) 100%);
  border-radius: 24px;
  padding: 80px 40px;
  margin: 80px auto;
  max-width: 1200px;
  color: #fff;
}
#promo h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 24px;
}
#promo p.desc {
  font-family: 'Crimson Text', serif;
  font-size: 1.2rem;
  color: #f5f5f5;
  line-height: 1.7;
}
#promo .promo-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  padding: 32px;
  color: #222;
  height: 100%;
}
#promo .promo-date-box {
  background: hsl(127, 26%, 26%);
  color: #ffffff;
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
}
#promo .promo-date-box .label {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  color: #f0f0f0;
  margin-bottom: 8px;
}
#promo .promo-date-box .date-value {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
}
#promo .promo-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
#promo .promo-list li {
  font-family: 'Crimson Text', serif;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
#promo .promo-list i {
  color: hsl(337, 40%, 43%);
  font-size: 1.3rem;
  margin-top: 3px;
}
#promo .promo-btn {
  background: hsl(337, 40%, 43%);
  color: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 16px 40px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}
#promo .promo-btn:hover {
  background: hsl(337, 40%, 33%);
  color: #ffffff;
}
#promo .promo-badge {
  display: inline-block;
  background: #ffffff;
  color: hsl(337, 40%, 43%);
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #promo { padding: 48px 20px; }
  #promo h2 { font-size: 1.6rem; }
}

#company {
  background-color: #fff;
  padding: 100px 0;
  font-family: 'Crimson Text', serif;
  color: #222;
}
#company h2, #company h3 {
  font-family: 'Work Sans', sans-serif;
}
#company .section-tag {
  color: hsl(337, 40%, 43%);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
}
#company h2 {
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 24px;
}
#company p {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #333;
}
#company img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
#company .img-offset {
  margin-top: 48px;
}
#company .values-card {
  background-color: #f8f9fa;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 28px;
  height: 100%;
}
#company .values-card h3 {
  color: hsl(127, 26%, 26%);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
#company .values-card p {
  font-size: 1.05rem;
  margin-bottom: 0;
}
#company .stats-row {
  margin-top: 64px;
  border-top: 1px solid #e5e5e5;
  padding-top: 48px;
}
#company .stat-number {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: hsl(187, 50%, 46%);
}
#company .stat-label {
  font-size: 1rem;
  color: #444;
}
@media (max-width: 767px) {
  #company { padding: 72px 0; }
  #company .img-offset { margin-top: 24px; }
}

#why-us {
  padding: 96px 0;
  background-color: #ffffff;
  font-family: 'Crimson Text', serif;
}
#why-us h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: #222222;
}
#why-us .section-subtitle {
  color: #444444;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
}
#why-us .advantage-card {
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 20px;
  padding: 40px 28px;
  height: 100%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
#why-us .advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: hsl(187, 50%, 46%);
}
#why-us .icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background-color: hsl(337, 40%, 96%);
  transition: background-color 0.3s ease;
}
#why-us .advantage-card:hover .icon-wrap {
  background-color: hsl(187, 50%, 46%);
}
#why-us .icon-wrap i {
  font-size: 1.8rem;
  color: hsl(337, 40%, 43%);
  transition: color 0.3s ease;
}
#why-us .advantage-card:hover .icon-wrap i {
  color: #ffffff;
}
#why-us .advantage-card h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #222222;
  margin-bottom: 14px;
}
#why-us .advantage-card p {
  color: #444444;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #why-us { padding: 64px 0; }
}

#clients {
  padding: 96px 0;
  background: #f6f2f4;
  font-family: 'Crimson Text', serif;
}
#clients h2, #clients h3 {
  font-family: 'Work Sans', sans-serif;
}
#clients .section-title {
  font-weight: 700;
  color: hsl(127, 26%, 26%);
  margin-bottom: 12px;
}
#clients .section-sub {
  color: #444;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
}
#clients .stats-line {
  font-size: 1rem;
  color: hsl(337, 40%, 43%);
  font-weight: 600;
  margin-top: 8px;
}
#clients .review-card {
  background: #fff;
  border: 1px solid #e6dde0;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#clients .review-card .stars {
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
#clients .review-card .star-on { color: hsl(337, 40%, 43%); }
#clients .review-card .star-off { color: #d9c9d0; }
#clients .review-card p.review-text {
  color: #2b2b2b;
  font-size: 1.08rem;
  line-height: 1.55;
  flex-grow: 1;
}
#clients .review-card .reviewer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
#clients .review-card .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: hsl(187, 50%, 46%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Work Sans', sans-serif;
  flex-shrink: 0;
}
#clients .review-card .reviewer-name {
  font-weight: 600;
  color: hsl(127, 26%, 26%);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.98rem;
}
#clients .review-card .reviewer-loc {
  color: #777;
  font-size: 0.88rem;
}
#clients .review-card.compact { padding: 22px 20px; }
#clients .review-card.highlight {
  background: hsl(127, 26%, 26%);
  border-color: hsl(127, 26%, 26%);
}
#clients .review-card.highlight p.review-text, #clients .review-card.highlight .reviewer-name {
  color: #fff;
}
#clients .review-card.highlight .reviewer-loc {
  color: #cfe0d2;
}
#clients .review-card.highlight .star-off { color: rgba(255,255,255,0.35); }
#clients .review-card.highlight .star-on { color: hsl(337, 60%, 68%); }
#clients .badge-project {
  display: inline-block;
  background: hsl(187, 50%, 92%);
  color: hsl(127, 26%, 26%);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
  font-family: 'Work Sans', sans-serif;
}
@media (max-width: 767px) {
  #clients { padding: 64px 0; }
}

#get-in-touch .contact-section {
  background: #f6f4f2;
  padding: 96px 0;
}
#get-in-touch .contact-section .section-tag {
  color: hsl(187, 50%, 46%);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
}
#get-in-touch .contact-section h2 {
  font-family: 'Work Sans', sans-serif;
  color: #222;
  font-weight: 700;
  margin-bottom: 20px;
}
#get-in-touch .contact-section p, #get-in-touch .contact-section li, #get-in-touch .contact-section label {
  font-family: 'Crimson Text', serif;
  color: #333;
  font-size: 1.15rem;
}
#get-in-touch .contact-card {
  background: #fff;
  border: 1px solid #e4e0dd;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  padding: 40px;
  height: 100%;
}
#get-in-touch .info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
#get-in-touch .info-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 14px;
  background: hsl(337, 40%, 43%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
#get-in-touch .info-item a {
  color: hsl(337, 40%, 43%);
  text-decoration: none;
  font-weight: 600;
}
#get-in-touch .info-item a:hover {
  text-decoration: underline;
}
#get-in-touch .map-link {
  display: inline-block;
  margin-top: 6px;
  color: hsl(187, 50%, 46%);
  font-weight: 600;
  text-decoration: none;
  font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
}
#get-in-touch .map-link:hover {
  text-decoration: underline;
}
#get-in-touch .hours-table {
  width: 100%;
  font-family: 'Crimson Text', serif;
  color: #333;
}
#get-in-touch .hours-table td {
  padding: 4px 0;
  font-size: 1.05rem;
}
#get-in-touch .form-card {
  background: hsl(127, 26%, 26%);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
}
#get-in-touch .form-card h3 {
  font-family: 'Work Sans', sans-serif;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}
#get-in-touch .form-card p {
  color: #e7ede8;
  margin-bottom: 24px;
}
#get-in-touch .form-card label {
  color: #fff;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
#get-in-touch .form-control {
  border-radius: 12px;
  border: 1px solid #ccc;
  padding: 12px 16px;
  font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
  margin-bottom: 18px;
}
#get-in-touch .form-control:focus {
  border-color: hsl(187, 50%, 46%);
  box-shadow: 0 0 0 0.2rem rgba(58, 170, 184, 0.25);
}
#get-in-touch .btn-submit {
  background: hsl(337, 40%, 43%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px 32px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  width: 100%;
  transition: background 0.2s ease;
}
#get-in-touch .btn-submit:hover {
  background: hsl(337, 40%, 35%);
  color: #fff;
}
@media (max-width: 767px) {
  #get-in-touch .contact-card, #get-in-touch .form-card {
    padding: 28px;
  }
}

#legal-notice {
  background: hsl(127, 15%, 97%);
  padding: 100px 0;
  font-family: 'Crimson Text', serif;
}
#legal-notice .disclaimer-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  padding: 48px;
}
#legal-notice .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: hsl(187, 50%, 46%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#legal-notice .icon-wrap i {
  color: #ffffff;
  font-size: 1.6rem;
}
#legal-notice h2 {
  font-family: 'Work Sans', sans-serif;
  color: #222222;
  font-weight: 600;
  margin-bottom: 0;
}
#legal-notice p {
  color: #333333;
  font-size: 1.15rem;
  line-height: 1.75;
  margin-top: 24px;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  #legal-notice .disclaimer-card {
    padding: 32px 24px;
  }
}



.thankyou-section {
  font-family: 'Crimson Text', serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(337, 40%, 97%) 0%, hsl(187, 50%, 96%) 100%);
  padding: 3rem 1rem;
}

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

.thankyou-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 3rem 2rem;
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.success-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  animation: popIn 0.5s ease-out;
}

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

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

.thankyou-heading {
  color: var(--secondary);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
}

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

.thankyou-note {
  background: hsl(187, 50%, 96%);
  border-left: 4px solid var(--accent);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  color: var(--secondary);
  font-size: 1.1rem;
  margin: 1.5rem 0;
  text-align: left;
}

.btn-thankyou-home {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-thankyou-home:hover {
  background-color: hsl(337, 40%, 35%);
  border-color: hsl(337, 40%, 35%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px hsla(337, 40%, 43%, 0.35);
}

.thankyou-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 1.25rem auto;
}

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

#portfolio-body {
  background-color: #fdfdfd;
  color: #222;
  font-family: 'Crimson Text', serif;
  padding: 96px 0;
}
#portfolio-body h1, #portfolio-body h2, #portfolio-body h3, #portfolio-body h4 {
  font-family: 'Work Sans', sans-serif;
  color: #1f1f1f;
}
#portfolio-body .intro-block {
  max-width: 820px;
  margin: 0 auto 64px auto;
  text-align: center;
}
#portfolio-body .intro-block p {
  font-size: 1.15rem;
  line-height: 1.7;
}
#portfolio-body .badge-category {
  background-color: hsl(187, 50%, 46%);
  color: #06282c;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.85rem;
  display: inline-block;
}
#portfolio-body .project-card {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  overflow: hidden;
  height: 100%;
  transition: transform 0.2s ease;
}
#portfolio-body .project-card:hover {
  transform: translateY(-4px);
}
#portfolio-body .project-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
#portfolio-body .project-body {
  padding: 24px;
}
#portfolio-body .project-body h3 {
  font-size: 1.35rem;
  margin: 12px 0 10px 0;
}
#portfolio-body .project-body p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
}
#portfolio-body .btn-details {
  background-color: hsl(337, 40%, 43%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 8px 20px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  margin-top: 10px;
}
#portfolio-body .btn-details:hover {
  background-color: hsl(337, 40%, 35%);
  color: #fff;
}
#portfolio-body .process-section {
  margin-top: 96px;
  background-color: hsl(127, 26%, 96%);
  border-radius: 24px;
  padding: 56px 40px;
}
#portfolio-body .process-step {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}
#portfolio-body .process-number {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  background-color: hsl(127, 26%, 26%);
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#portfolio-body .process-step h4 {
  margin-bottom: 6px;
  font-size: 1.15rem;
}
#portfolio-body .process-step p {
  margin: 0;
  font-size: 1.02rem;
  color: #333;
}
#portfolio-body .modal-content {
  border-radius: 20px;
  border: none;
}
#portfolio-body .modal-header {
  background-color: hsl(337, 40%, 43%);
  color: #fff;
  border-radius: 20px 20px 0 0;
}
#portfolio-body .modal-header .btn-close {
  filter: invert(1);
}
#portfolio-body .modal-body img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}
#portfolio-body .cta-final {
  margin-top: 96px;
  background-color: hsl(337, 40%, 43%);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  color: #fff;
}
#portfolio-body .cta-final h2 {
  color: #fff;
}
#portfolio-body .cta-final p {
  color: #f5e6ec;
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 24px auto;
}
#portfolio-body .cta-final .btn-cta {
  background-color: hsl(187, 50%, 46%);
  color: #06282c;
  border: none;
  border-radius: 14px;
  padding: 12px 32px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
}
#portfolio-body .cta-final .btn-cta:hover {
  background-color: hsl(187, 50%, 38%);
  color: #06282c;
}
@media (max-width: 767px) {
  #portfolio-body { padding: 64px 0; }
  #portfolio-body .process-section, #portfolio-body .cta-final { padding: 36px 20px; }
}
