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

:root {
  --primary: hsl(103, 61%, 28%);
  --secondary: hsl(253, 52%, 14%);
  --accent: hsl(313, 75%, 55%);
  --clr-primary: hsl(103, 61%, 28%);
  --clr-secondary: hsl(253, 52%, 14%);
  --clr-accent: hsl(313, 75%, 55%);
}

body {
    font-family: 'Raleway', sans-serif;
    color: #222;
    background: #ffffff;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
  }
  .navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
  }
  .navbar-brand {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .navbar-brand img {
    border-radius: 8px;
  }
  .navbar-nav .nav-link {
    color: var(--secondary);
    font-weight: 600;
    padding: 8px 16px !important;
    border-radius: 12px;
    transition: all 0.2s ease;
  }
  .navbar-nav .nav-link:hover {
    color: var(--primary);
    background-color: #f2f7f0;
  }
  .navbar-toggler {
    border-color: var(--primary);
  }
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem hsla(103, 61%, 28%, 0.25);
  }

#contact-content {
  background-color: #f8f9fa;
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
  color: #222;
}
#contact-content h1, #contact-content h2, #contact-content h3 {
  font-family: 'Inter', sans-serif;
  color: hsl(253, 52%, 14%);
}
#contact-content .lead-text {
  color: #333;
  font-size: 1.05rem;
  max-width: 700px;
}
#contact-content .info-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  height: 100%;
}
#contact-content .form-card {
  background-color: hsl(253, 52%, 14%);
  border-radius: 20px;
  padding: 32px;
  color: #fff;
}
#contact-content .form-card h2 {
  color: #fff;
}
#contact-content .form-card p {
  color: #d8d5e0;
}
#contact-content .form-label {
  color: #fff;
  font-weight: 600;
}
#contact-content .form-control {
  border-radius: 12px;
  border: none;
  padding: 12px 14px;
}
#contact-content .form-control:focus {
  box-shadow: 0 0 0 3px hsl(313, 75%, 55%, 0.4);
}
#contact-content .btn-submit {
  background-color: hsl(313, 75%, 55%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 12px 28px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: background-color 0.2s ease;
}
#contact-content .btn-submit:hover {
  background-color: hsl(313, 75%, 45%);
  color: #fff;
}
#contact-content .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#contact-content .contact-list li {
  margin-bottom: 18px;
  padding-left: 44px;
  position: relative;
}
#contact-content .contact-list li .icon-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background-color: hsl(103, 61%, 28%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
#contact-content .contact-list a {
  color: hsl(103, 61%, 28%);
  text-decoration: none;
  font-weight: 600;
}
#contact-content .contact-list a:hover {
  text-decoration: underline;
}
#contact-content .hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
#contact-content .hours-table td {
  padding: 4px 0;
  font-size: 0.92rem;
  color: #333;
  border-bottom: 1px dashed #ddd;
}
#contact-content .find-us {
  background-color: #eef4ec;
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 20px;
  font-size: 0.95rem;
  color: #333;
}
#contact-content .find-us a {
  color: hsl(313, 75%, 55%);
  font-weight: 600;
  text-decoration: none;
}
#contact-content .find-us a:hover {
  text-decoration: underline;
}
#contact-content .cta-strip {
  background-color: hsl(103, 61%, 28%);
  border-radius: 20px;
  padding: 30px 32px;
  margin-top: 48px;
  color: #fff;
  text-align: center;
}
#contact-content .cta-strip h2 {
  color: #fff;
}
#contact-content .cta-strip p {
  color: #e5f0e3;
}
#contact-content .cta-strip .btn-cta {
  background-color: hsl(313, 75%, 55%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 12px 30px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}
#contact-content .btn-cta:hover {
  background-color: hsl(313, 75%, 45%);
  color: #fff;
}

footer.site-footer {
    background: hsl(253, 52%, 14%);
    color: #f1f1f1;
    font-family: 'Raleway', sans-serif;
    border-radius: 24px 24px 0 0;
    padding: 48px 0 24px;
    margin-top: 48px;
  }
  footer.site-footer h5 {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    margin-bottom: 16px;
  }
  footer.site-footer p,
  footer.site-footer a {
    color: #d8d8d8;
    text-decoration: none;
  }
  footer.site-footer a:hover {
    color: hsl(313, 75%, 55%);
  }
  footer.site-footer ul {
    list-style: none;
    padding-left: 0;
  }
  footer.site-footer ul li {
    margin-bottom: 8px;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: hsl(103, 61%, 28%);
    color: #ffffff;
    margin-right: 10px;
    font-size: 18px;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .footer-social a:hover {
    background: hsl(313, 75%, 55%);
    transform: translateY(-3px);
    color: #ffffff;
  }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 32px;
    padding-top: 16px;
    font-size: 0.9rem;
    color: #cfcfcf;
  }
  #cookieBar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: hsl(253, 52%, 14%);
    color: #f1f1f1;
    border-radius: 20px 20px 0 0;
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    font-family: 'Raleway', sans-serif;
    max-height: 60vh;
    overflow-y: auto;
  }
  #cookieBar h6 {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1rem;
  }
  #cookieBar p {
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: #d8d8d8;
  }
  #cookieBar ul {
    font-size: 0.8rem;
    margin-bottom: 12px;
    padding-left: 18px;
    color: #d8d8d8;
  }
  .cookie-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    padding: 10px 16px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    flex: 1;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .cookie-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }
  .btn-accept-all {
    background: hsl(103, 61%, 28%);
    color: #ffffff;
  }
  .btn-reject-optional {
    background: hsl(313, 75%, 55%);
    color: #ffffff;
  }
  .cookie-manage-link {
    font-size: 0.8rem;
    color: #cfcfcf;
    text-decoration: underline;
    display: inline-block;
    margin-top: 8px;
  }
  .cookie-manage-link:hover {
    color: hsl(313, 75%, 55%);
  }

#services-main {
  font-family: 'Raleway', sans-serif;
  background: #f8f9fa;
  color: #222;
  padding: 52px 0;
}
#services-main h1, #services-main h2, #services-main h3 {
  font-family: 'Inter', sans-serif;
}
#services-main .page-header {
  margin-bottom: 48px;
}
#services-main .page-header h1 {
  color: hsl(253, 52%, 14%);
  font-weight: 800;
  font-size: 2.4rem;
}
#services-main .page-header p {
  color: #444;
  max-width: 720px;
  font-size: 1.05rem;
}
#services-main .service-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  border: 1px solid #e6e6e6;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}
#services-main .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  border-color: hsl(103, 61%, 28%);
}
#services-main .service-icon {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: hsl(103, 61%, 28%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
#services-main .service-card:hover .service-icon {
  background: hsl(313, 75%, 55%);
}
#services-main .service-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: hsl(253, 52%, 14%);
  margin-bottom: 6px;
}
#services-main .service-content p {
  font-size: 0.92rem;
  color: #444;
  margin-bottom: 12px;
}
#services-main .service-price {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #fff;
  background: hsl(253, 52%, 14%);
  padding: 5px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
}
#services-main .service-card:hover .service-price {
  background: hsl(103, 61%, 28%);
}
#services-main .row.g-4 {
  --bs-gutter-x: 1.5rem;
}
#services-main .qa-section {
  margin-top: 56px;
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #e6e6e6;
}
#services-main .qa-section h2 {
  color: hsl(253, 52%, 14%);
  font-weight: 800;
  margin-bottom: 24px;
}
#services-main .qa-item {
  border-bottom: 1px solid #eee;
  padding: 16px 0;
}
#services-main .qa-item:last-child {
  border-bottom: none;
}
#services-main .qa-item h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: hsl(313, 75%, 55%);
  margin-bottom: 6px;
}
#services-main .qa-item p {
  font-size: 0.93rem;
  color: #333;
  margin-bottom: 0;
}
#services-main .cta-box {
  margin-top: 48px;
  background: hsl(103, 61%, 28%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}
#services-main .cta-box h2 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
}
#services-main .cta-box p {
  color: #f0f0f0;
  margin-bottom: 20px;
  font-size: 1rem;
}
#services-main .cta-box a.btn {
  background: hsl(313, 75%, 55%);
  color: #fff;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 14px;
  border: none;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-block;
}
#services-main .cta-box a.btn:hover {
  background: #fff;
  color: hsl(103, 61%, 28%);
}

#portfolio-content {
  font-family: 'Raleway', sans-serif;
  background: #f8f9fa;
  color: #222;
  padding: 56px 0;
}
#portfolio-content h1, #portfolio-content h2, #portfolio-content h3 {
  font-family: 'Inter', sans-serif;
}
#portfolio-content .intro-block {
  max-width: 900px;
  margin: 0 auto 48px auto;
}
#portfolio-content .intro-block h1 {
  color: hsl(253, 52%, 14%);
  font-weight: 800;
  margin-bottom: 24px;
}
#portfolio-content .intro-block h3 {
  color: hsl(103, 61%, 28%);
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 1.15rem;
}
#portfolio-content .intro-block p {
  line-height: 1.7;
  color: #333;
}
#portfolio-content .card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 3px 14px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}
#portfolio-content .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.13);
}
#portfolio-content .card-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eee;
}
#portfolio-content .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#portfolio-content .badge-category {
  background: hsl(313, 75%, 55%);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 5px 12px;
  font-size: 0.75rem;
  display: inline-block;
  margin-bottom: 10px;
}
#portfolio-content .card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: hsl(253, 52%, 14%);
  margin-bottom: 10px;
}
#portfolio-content .card-body p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}
#portfolio-content .btn-details {
  background: hsl(103, 61%, 28%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 0.85rem;
}
#portfolio-content .btn-details:hover {
  background: hsl(103, 61%, 22%);
  color: #fff;
}
#portfolio-content .modal-content {
  border-radius: 20px;
  border: none;
}
#portfolio-content .modal-header {
  background: hsl(253, 52%, 14%);
  color: #fff;
  border-radius: 20px 20px 0 0;
  border-bottom: none;
}
#portfolio-content .modal-header .btn-close {
  filter: invert(1);
}
#portfolio-content .modal-body img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
}
#portfolio-content .modal-body p {
  color: #333;
  line-height: 1.7;
}
#portfolio-content .cta-block {
  margin-top: 56px;
  background: hsl(103, 61%, 28%);
  border-radius: 22px;
  padding: 44px 30px;
  text-align: center;
  color: #fff;
}
#portfolio-content .cta-block h2 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}
#portfolio-content .cta-block p {
  color: #f0f0f0;
  max-width: 640px;
  margin: 0 auto 22px auto;
}
#portfolio-content .cta-block .btn-cta {
  background: hsl(313, 75%, 55%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 12px 32px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
#portfolio-content .cta-block .btn-cta:hover {
  background: hsl(313, 75%, 45%);
  color: #fff;
}



  

  .thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(103, 61%, 28%, 0.06) 0%, hsl(253, 52%, 14%, 0.05) 50%, hsl(313, 75%, 55%, 0.06) 100%);
    font-family: 'Raleway', sans-serif;
    padding: 3rem 1rem;
  }

  .thankyou-card {
    background: #ffffff;
    border-radius: 1.25rem;
    box-shadow: 0 1rem 3rem rgba(37, 12, 60, 0.12);
    padding: 3rem 2rem;
    max-width: 640px;
    width: 100%;
    text-align: center;
    animation: fadeUp 0.7s ease-out;
  }

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

  .success-icon-wrapper {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    box-shadow: 0 0.5rem 1.5rem hsla(103, 61%, 28%, 0.35);
    animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
  }

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

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

  .thankyou-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--clr-secondary);
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  .thankyou-message {
    color: #4a4a58;
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 0.75rem;
  }

  .thankyou-submessage {
    color: #6c6c7a;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsl(313, 75%, 55%, 0.08);
    color: var(--clr-accent);
    border: 1px solid hsl(313, 75%, 55%, 0.25);
    border-radius: 50rem;
    padding: 0.5rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 2rem;
  }

  .btn-home {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    background-color: var(--clr-primary);
    border: none;
    color: #ffffff;
    padding: 0.85rem 2.5rem;
    border-radius: 0.65rem;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    box-shadow: 0 0.35rem 1rem hsla(103, 61%, 28%, 0.3);
  }

  .btn-home:hover {
    background-color: hsl(103, 61%, 22%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0.6rem 1.4rem hsla(103, 61%, 28%, 0.4);
  }

  .btn-home:active {
    transform: translateY(0);
  }

  .divider-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
    border-radius: 10px;
    margin: 0 auto 1.75rem;
  }

  @media (max-width: 576px) {
    .thankyou-card {
      padding: 2.25rem 1.25rem;
      border-radius: 1rem;
    }

    .thankyou-heading {
      font-size: 1.6rem;
    }

    .success-icon-wrapper {
      width: 90px;
      height: 90px;
    }

    .success-icon-wrapper svg {
      width: 46px;
      height: 46px;
    }
  }



.hero-outsourcing {
  background: #f8f9fa;
  padding: 56px 0 48px;
  font-family: 'Raleway', sans-serif;
  color: #222;
}

.hero-outsourcing .badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: hsl(103, 61%, 28%, 0.1);
  color: hsl(103, 61%, 28%);
  padding: 8px 18px;
  border-radius: 20px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.hero-outsourcing h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: hsl(253, 52%, 14%);
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero-outsourcing h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: hsl(103, 61%, 28%);
  margin-bottom: 16px;
}

.hero-outsourcing p.lead-text {
  font-size: 1.05rem;
  color: #333;
  max-width: 640px;
  margin-bottom: 28px;
}

.btn-hero-main {
  background: hsl(313, 75%, 55%);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-hero-main:hover {
  background: hsl(313, 75%, 45%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px hsla(313, 75%, 55%, 0.35);
}

@media (max-width: 767px) {
  .hero-outsourcing h1 {
    font-size: 2rem;
  }
  .hero-outsourcing h2 {
    font-size: 1.1rem;
  }
}

.services-section {
  padding: 52px 0;
  background-color: #f8f9fa;
}
.services-section .section-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: hsl(253, 52%, 14%);
  margin-bottom: 12px;
}
.services-section .section-sub {
  font-family: 'Raleway', sans-serif;
  color: #444;
  max-width: 700px;
  margin: 0 auto 40px auto;
}
.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  height: 100%;
  border: 1px solid #e9ecef;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  border-color: hsl(313, 75%, 55%);
}
.service-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background-color: hsl(103, 61%, 28%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}
.service-card:hover .service-icon-wrap {
  background-color: hsl(313, 75%, 55%);
}
.service-icon-wrap i {
  font-size: 32px;
  color: #ffffff;
}
.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: hsl(253, 52%, 14%);
  margin-bottom: 12px;
}
.service-card p {
  font-family: 'Raleway', sans-serif;
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 16px;
}
.service-price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: hsl(103, 61%, 28%);
  background-color: rgba(20, 122, 40, 0.08);
  padding: 6px 18px;
  border-radius: 24px;
  display: inline-block;
}
@media (max-width: 767px) {
  .services-section { padding: 40px 0; }
  .service-card { padding: 24px 18px; }
}

#gallery .portfolio-section {padding:52px 0;background:#f8f9fa;font-family:'Raleway',sans-serif;color:#222;}
#gallery .portfolio-section h2 {font-family:'Inter',sans-serif;color:hsl(253,52%,14%);font-weight:700;}
#gallery .portfolio-section .lead-text {color:#444;max-width:720px;}
#gallery .portfolio-card {background:#fff;border-radius:20px;overflow:hidden;box-shadow:0 3px 14px rgba(0,0,0,0.08);height:100%;display:flex;flex-direction:column;transition:transform .2s ease;}
#gallery .portfolio-card:hover {transform:translateY(-4px);}
#gallery .portfolio-img-wrap {width:100%;aspect-ratio:4/3;overflow:hidden;background:#eee;}
#gallery .portfolio-img-wrap img {width:100%;height:100%;object-fit:cover;display:block;}
#gallery .portfolio-body {padding:20px;display:flex;flex-direction:column;flex-grow:1;}
#gallery .portfolio-badge {display:inline-block;background:hsl(103,61%,28%);color:#fff;font-size:0.75rem;font-weight:600;padding:5px 12px;border-radius:14px;margin-bottom:10px;align-self:flex-start;}
#gallery .portfolio-body h3 {font-family:'Inter',sans-serif;font-size:1.1rem;color:hsl(253,52%,14%);margin-bottom:8px;}
#gallery .portfolio-body p {font-size:0.92rem;color:#444;flex-grow:1;}
#gallery .portfolio-btn {margin-top:12px;background:hsl(313,75%,55%);border:none;color:#fff;font-weight:600;border-radius:14px;padding:8px 18px;font-size:0.9rem;align-self:flex-start;text-decoration:none;display:inline-block;}
#gallery .portfolio-btn:hover {background:hsl(313,75%,45%);color:#fff;}
#gallery .modal-content {border-radius:20px;border:none;}
#gallery .modal-header {border-bottom:none;background:hsl(253,52%,14%);color:#fff;border-radius:20px 20px 0 0;}
#gallery .modal-header .btn-close {filter:invert(1);}
#gallery .modal-body img {width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:12px;margin-bottom:16px;}
#gallery .modal-body h5 {font-family:'Inter',sans-serif;color:hsl(253,52%,14%);}
#gallery .modal-body p {color:#444;font-family:'Raleway',sans-serif;}
#gallery .modal-badge {display:inline-block;background:hsl(103,61%,28%);color:#fff;font-size:0.8rem;font-weight:600;padding:5px 14px;border-radius:14px;margin-bottom:12px;}

#advantages{
  padding:56px 0;
  background:#f8f9fa;
  font-family:'Raleway',sans-serif;
}
#advantages h2{
  font-family:'Inter',sans-serif;
  color:hsl(253, 52%, 14%);
  font-weight:700;
}
#advantages .lead-text{
  color:#333;
  max-width:720px;
}
#advantages .adv-card{
  background:#fff;
  border-radius:20px;
  padding:32px 24px;
  height:100%;
  border:1px solid #e9ecef;
  transition:transform .3s ease, box-shadow .3s ease, background .3s ease;
}
#advantages .adv-card:hover{
  transform:translateY(-8px);
  box-shadow:0 16px 32px rgba(0,0,0,0.12);
  background:hsl(103, 61%, 28%);
}
#advantages .adv-card:hover h3,
#advantages .adv-card:hover p{
  color:#fff;
}
#advantages .adv-card:hover .icon-wrap{
  background:hsl(313, 75%, 55%);
  color:#fff;
}
#advantages .icon-wrap{
  width:64px;
  height:64px;
  border-radius:16px;
  background:hsl(253, 52%, 14%);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin-bottom:20px;
  transition:background .3s ease, color .3s ease;
}
#advantages .adv-card h3{
  font-family:'Inter',sans-serif;
  font-size:1.1rem;
  font-weight:700;
  color:hsl(253, 52%, 14%);
  margin-bottom:12px;
  transition:color .3s ease;
}
#advantages .adv-card p{
  color:#444;
  font-size:0.95rem;
  line-height:1.55;
  margin-bottom:0;
  transition:color .3s ease;
}

#newsletter .newsletter-section {
  background: hsl(253, 52%, 14%);
  border-radius: 24px;
  padding: 52px 40px;
  margin: 48px auto;
  max-width: 1140px;
  font-family: 'Raleway', sans-serif;
}
#newsletter .newsletter-section h2 {
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 16px;
}
#newsletter .newsletter-section p {
  color: #e8e6f0;
  margin-bottom: 28px;
  font-size: 1.05rem;
  max-width: 640px;
}
#newsletter .newsletter-form .form-control {
  border-radius: 16px;
  border: none;
  padding: 14px 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  min-height: 52px;
}
#newsletter .newsletter-form .form-control:focus {
  box-shadow: 0 0 0 3px hsl(313, 75%, 55%, 0.4);
}
#newsletter .newsletter-btn {
  background: hsl(313, 75%, 55%);
  color: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  transition: background 0.2s ease;
}
#newsletter .newsletter-btn:hover {
  background: hsl(313, 75%, 45%);
  color: #ffffff;
}
#newsletter .newsletter-note {
  color: #cfc9dc;
  font-size: 0.85rem;
  margin-top: 14px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #newsletter .newsletter-section {
    padding: 36px 24px;
    border-radius: 16px;
  }
}

#contact {
  font-family: 'Raleway', sans-serif;
  background: #f8f9fa;
  padding: 52px 0;
  color: #222;
}
#contact h2, #contact h3 {
  font-family: 'Inter', sans-serif;
}
#contact .contact-wrapper {
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
#contact .form-control {
  border-radius: 14px;
  border: 1px solid #ccc;
  padding: 12px 16px;
  font-family: 'Raleway', sans-serif;
}
#contact .form-control:focus {
  border-color: hsl(103, 61%, 28%);
  box-shadow: 0 0 0 0.2rem hsla(103, 61%, 28%, 0.15);
}
#contact label {
  font-weight: 600;
  color: hsl(253, 52%, 14%);
  margin-bottom: 6px;
}
#contact .btn-submit {
  background: hsl(103, 61%, 28%);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 12px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: background 0.2s ease;
}
#contact .btn-submit:hover {
  background: hsl(313, 75%, 55%);
  color: #fff;
}
#contact .info-card {
  background: hsl(253, 52%, 14%);
  color: #f8f9fa;
  border-radius: 22px;
  padding: 36px;
  height: 100%;
}
#contact .info-card h3 {
  color: #fff;
  margin-bottom: 20px;
}
#contact .info-card a {
  color: #f8f9fa;
  text-decoration: none;
  border-bottom: 1px solid hsla(313, 75%, 55%, 0.6);
}
#contact .info-card a:hover {
  color: hsl(313, 75%, 55%);
}
#contact .info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
#contact .info-item i {
  color: hsl(313, 75%, 55%);
  font-size: 1.2rem;
  margin-top: 3px;
}
#contact .hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#contact .hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
}
#contact .find-us {
  font-size: 0.9rem;
  margin-top: 6px;
  color: #e6e6e6;
}
#contact .map-link {
  display: inline-block;
  margin-top: 6px;
  font-weight: 600;
}

#legal-notice {
  background-color: #f8f9fa;
  padding: 52px 0;
  font-family: 'Raleway', sans-serif;
  color: #333;
}
#legal-notice .disclaimer-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e9ecef;
}
#legal-notice .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: hsl(103, 61%, 28%);
  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: 'Inter', sans-serif;
  font-weight: 700;
  color: hsl(253, 52%, 14%);
  margin-bottom: 0;
}
#legal-notice p {
  color: #444;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 0;
}
#legal-notice .header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
