@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&family=Playfair+Display:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --primary: hsl(268, 59%, 32%);
  --secondary: hsl(296, 52%, 10%);
  --accent: hsl(244, 83%, 63%);
  --color-primary: hsl(268, 59%, 32%);
  --color-secondary: hsl(296, 52%, 10%);
  --color-accent: hsl(244, 83%, 63%);
}

body{
  font-family:'Playfair Display', serif;
  color:#222;
  background-color:#fff;
}
h1,h2,h3,h4,h5,h6{
  font-family:'Ubuntu', sans-serif;
}
.navbar{
  background-color:#fff;
  border-bottom:1px solid #eee;
}
.navbar-brand{
  font-family:'Ubuntu', sans-serif;
  font-weight:700;
  color:var(--secondary);
  display:flex;
  align-items:center;
  gap:10px;
  font-size:1.4rem;
}
.navbar-brand img{
  border-radius:10px;
}
.navbar-nav .nav-link{
  color:var(--secondary);
  font-weight:600;
  padding:10px 16px;
  border-radius:16px;
  transition:background-color 0.2s, color 0.2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus{
  background-color:var(--primary);
  color:#fff;
}
.navbar-toggler{
  border-radius:12px;
  border-color:var(--primary);
}

footer {
  background: hsl(296, 52%, 10%);
  color: #f8f9fa;
  font-family: 'Playfair Display', serif;
  padding: 56px 0 24px;
  border-radius: 24px 24px 0 0;
}
footer h5, footer h6 {
  font-family: 'Ubuntu', sans-serif;
  color: #fff;
}
footer a {
  color: #e0dbf0;
  text-decoration: none;
}
footer a:hover {
  color: hsl(244, 83%, 73%);
  text-decoration: underline;
}
footer .footer-desc {
  color: #d6cde8;
}
footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: hsl(268, 59%, 32%);
  color: #fff;
  border-radius: 16px;
  margin-right: 10px;
  font-size: 1.2rem;
  transition: background 0.3s ease, transform 0.3s ease;
}
footer .social-icons a:hover {
  background: hsl(244, 83%, 63%);
  transform: translateY(-3px);
  color: #fff;
}
footer hr {
  border-color: rgba(255,255,255,0.15);
  margin: 32px 0 16px;
}
footer .copyright {
  color: #c4b9dc;
  font-size: 0.9rem;
}
footer ul {
  list-style: none;
  padding-left: 0;
}
footer ul li {
  margin-bottom: 8px;
}

#cookiePanel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: hsl(296, 52%, 10%);
  color: #f8f9fa;
  font-family: 'Playfair Display', serif;
  border-radius: 24px 24px 0 0;
  padding: 20px;
  max-height: 60vh;
  overflow-y: auto;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
#cookiePanel h5 {
  font-family: 'Ubuntu', sans-serif;
  color: #fff;
}
#cookiePanel p, #cookiePanel li {
  color: #d6cde8;
  font-size: 0.92rem;
  margin-bottom: 6px;
}
#cookiePanel .cookie-cat {
  background: hsl(268, 59%, 32%);
  border-radius: 16px;
  padding: 10px 14px;
  margin-bottom: 8px;
  color: #fff;
}
.btn-cookie-accept, .btn-cookie-reject {
  border-radius: 16px;
  padding: 10px 20px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  border: none;
  flex: 1;
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn-cookie-accept {
  background: hsl(244, 83%, 63%);
  color: #fff;
}
.btn-cookie-accept:hover {
  background: hsl(244, 83%, 53%);
  transform: translateY(-2px);
  color: #fff;
}
.btn-cookie-reject {
  background: hsl(268, 59%, 32%);
  color: #fff;
}
.btn-cookie-reject:hover {
  background: hsl(268, 59%, 22%);
  transform: translateY(-2px);
  color: #fff;
}
.btn-cookie-manage {
  color: #e0dbf0;
  text-decoration: underline;
  font-size: 0.85rem;
}
.btn-cookie-manage:hover {
  color: hsl(244, 83%, 73%);
}

#portfolio-content {
  font-family: 'Playfair Display', serif;
  color: #222;
  background: #f8f9fa;
  padding: 56px 0;
}
#portfolio-content h1, #portfolio-content h2, #portfolio-content h3, #portfolio-content h4 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(296, 52%, 10%);
}
#portfolio-content .intro-wrap {
  max-width: 900px;
  margin: 0 auto 48px auto;
}
#portfolio-content .intro-wrap p {
  font-size: 1.05rem;
  line-height: 1.7;
}
#portfolio-content .sub-block {
  margin-bottom: 32px;
}
#portfolio-content .sub-block h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  border-left: 4px solid hsl(244, 83%, 63%);
  padding-left: 12px;
}
#portfolio-content .card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.2s ease;
}
#portfolio-content .card:hover {
  transform: translateY(-4px);
}
#portfolio-content .card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
#portfolio-content .card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
}
#portfolio-content .badge-cat {
  background: hsl(244, 83%, 63%);
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  border-radius: 12px;
  padding: 6px 12px;
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  align-self: flex-start;
}
#portfolio-content .card-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.15rem;
  color: hsl(296, 52%, 10%);
  margin-bottom: 8px;
}
#portfolio-content .card-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #333;
  flex-grow: 1;
}
#portfolio-content .btn-details {
  background: hsl(268, 59%, 32%);
  color: #fff;
  border-radius: 14px;
  border: none;
  font-family: 'Ubuntu', sans-serif;
  padding: 8px 18px;
  margin-top: 14px;
  align-self: flex-start;
}
#portfolio-content .btn-details:hover {
  background: hsl(244, 83%, 63%);
  color: #fff;
}
#portfolio-content .modal-content {
  border-radius: 20px;
  overflow: hidden;
}
#portfolio-content .modal-header {
  background: hsl(268, 59%, 32%);
  color: #fff;
  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 {
  color: #222;
}
#portfolio-content .cta-box {
  background: hsl(296, 52%, 10%);
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-top: 56px;
}
#portfolio-content .cta-box h2 {
  color: #fff;
}
#portfolio-content .cta-box p {
  color: #f1f1f1;
}
#portfolio-content .cta-box .btn {
  background: hsl(244, 83%, 63%);
  color: #fff;
  border-radius: 14px;
  padding: 12px 28px;
  font-family: 'Ubuntu', sans-serif;
  border: none;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}
#portfolio-content .cta-box .btn:hover {
  background: hsl(268, 59%, 32%);
}
@media (max-width: 576px) {
  #portfolio-content .cta-box {
    padding: 28px 20px;
  }
}

#about-main {
  font-family: 'Playfair Display', serif;
  color: #222;
  background: #fdfdfd;
  padding: 52px 0;
}
#about-main h1, #about-main h2, #about-main h3 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(296, 52%, 10%);
}
#about-main .hero-block {
  background: hsl(268, 59%, 32%);
  border-radius: 22px;
  padding: 48px 32px;
  color: #fdfdfd;
  margin-bottom: 52px;
}
#about-main .hero-block h1 {
  color: #ffffff;
}
#about-main .hero-block p {
  color: #f0eefc;
  font-size: 1.05rem;
}
#about-main img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}
#about-main .content-section {
  margin-bottom: 52px;
}
#about-main .content-section p {
  line-height: 1.75;
  font-size: 1.05rem;
}
#about-main .values-card {
  background: #f5f3fb;
  border-radius: 18px;
  padding: 24px;
  height: 100%;
  border: 1px solid #e4defa;
}
#about-main .values-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: hsl(268, 59%, 32%);
}
#about-main .stat-strip {
  background: hsl(296, 52%, 10%);
  border-radius: 20px;
  padding: 32px 24px;
  color: #ffffff;
  margin-bottom: 52px;
}
#about-main .stat-strip .stat-num {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: hsl(244, 83%, 73%);
}
#about-main .stat-strip .stat-label {
  font-size: 0.9rem;
  color: #e9e6f5;
}
#about-main .team-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid #e6e2f5;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}
#about-main .team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 2px;
  color: hsl(268, 59%, 32%);
}
#about-main .team-card .role {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.85rem;
  color: hsl(244, 83%, 63%);
  margin-bottom: 10px;
  display: block;
}
#about-main .qa-block {
  background: #f5f3fb;
  border-radius: 20px;
  padding: 36px 28px;
  margin-top: 52px;
}
#about-main .qa-item {
  border-bottom: 1px solid #ddd6f3;
  padding: 18px 0;
}
#about-main .qa-item:last-child {
  border-bottom: none;
}
#about-main .qa-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
#about-main .qa-item p {
  margin-bottom: 0;
  font-size: 0.98rem;
}
#about-main .cta-block {
  background: hsl(244, 83%, 63%);
  border-radius: 22px;
  padding: 40px 28px;
  text-align: center;
  color: #ffffff;
  margin-top: 52px;
}
#about-main .cta-block h2 {
  color: #ffffff;
}
#about-main .cta-block p {
  color: #f0eefc;
}
#about-main .btn-cta {
  background: #ffffff;
  color: hsl(268, 59%, 32%);
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 14px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: background 0.2s, color 0.2s;
}
#about-main .btn-cta:hover {
  background: hsl(296, 52%, 10%);
  color: #ffffff;
}
@media (max-width: 767px) {
  #about-main .hero-block { padding: 32px 20px; }
  #about-main .stat-strip { padding: 24px 16px; }
}





.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  font-family: 'Playfair Display', serif;
}

.thankyou-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 3rem 2.5rem;
  max-width: 640px;
  width: 100%;
  text-align: center;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.7s ease-out;
}

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

.thankyou-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, var(--color-accent) 0%, var(--color-primary) 100%);
  box-shadow: 0 0 0 8px rgba(244, 83, 99, 0.08);
  animation: popIn 0.6s ease-out 0.2s both;
}

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

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

.thankyou-heading {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  color: var(--color-secondary);
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.thankyou-text {
  font-family: 'Playfair Display', serif;
  color: #4a4a4a;
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.thankyou-text.italic-note {
  font-style: italic;
  color: var(--color-primary);
  font-size: 1rem;
}

.thankyou-divider {
  width: 70px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 1.5rem auto;
}

.btn-thankyou {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.btn-thankyou:hover,
.btn-thankyou:focus {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(244, 83, 63, 0.35);
}

@media (max-width: 576px) {
  .thankyou-card {
    padding: 2.25rem 1.5rem;
  }

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

  .thankyou-text {
    font-size: 1rem;
  }

  .thankyou-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .thankyou-icon-wrapper svg {
    width: 42px;
    height: 42px;
  }
}

#services-page {
  background: #f8f9fa;
  color: #222;
  font-family: 'Playfair Display', serif;
  padding: 52px 0;
}
#services-page h1, #services-page h2, #services-page h3, #services-page h4 {
  font-family: 'Ubuntu', sans-serif;
}
#services-page .page-header {
  margin-bottom: 52px;
}
#services-page .page-header h1 {
  color: hsl(296, 52%, 10%);
  font-weight: 700;
}
#services-page .page-header p {
  color: #333;
  max-width: 760px;
}
#services-page .badge-info {
  background: hsl(268, 59%, 32%);
  color: #fff;
  border-radius: 20px;
  padding: 6px 16px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 14px;
}
#services-page .card {
  border: none;
  border-radius: 20px;
  background: #fff;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}
#services-page .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(38,15,62,0.2);
}
#services-page .card-body {
  padding: 32px 28px;
}
#services-page .icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: hsl(244, 83%, 63%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
#services-page .card h3 {
  color: hsl(296, 52%, 10%);
  font-size: 1.25rem;
  margin-bottom: 12px;
}
#services-page .card p {
  color: #444;
  font-size: 0.98rem;
  line-height: 1.55;
}
#services-page .price-tag {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  color: hsl(268, 59%, 32%);
  font-size: 1.15rem;
  margin-top: 14px;
  display: block;
}
#services-page .price-unit {
  font-size: 0.8rem;
  color: #666;
  font-weight: 400;
}
#services-page .details-table-wrap {
  margin-top: 56px;
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}
#services-page .details-table-wrap h2 {
  color: hsl(296, 52%, 10%);
  margin-bottom: 20px;
  font-size: 1.5rem;
}
#services-page table {
  font-family: 'Playfair Display', serif;
  color: #222;
}
#services-page table thead th {
  background: hsl(268, 59%, 32%);
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  border: none;
}
#services-page table tbody tr:nth-child(even) {
  background: #f5f5f5;
}
#services-page table td, #services-page table th {
  padding: 12px 14px;
  vertical-align: middle;
}
#services-page .cta-box {
  margin-top: 52px;
  background: hsl(296, 52%, 10%);
  border-radius: 20px;
  padding: 44px;
  text-align: center;
}
#services-page .cta-box h2 {
  color: #fff;
  margin-bottom: 10px;
}
#services-page .cta-box p {
  color: #e6dff0;
  margin-bottom: 22px;
}
#services-page .cta-box .btn {
  background: hsl(244, 83%, 63%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 12px 32px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
}
#services-page .cta-box .btn:hover {
  background: hsl(268, 59%, 32%);
  color: #fff;
}

#contact-content {
  background-color: #f8f9fa;
  color: #222;
  padding: 56px 0;
  font-family: 'Playfair Display', serif;
}
#contact-content h1,
#contact-content h2,
#contact-content h3 {
  font-family: 'Ubuntu', sans-serif;
}
#contact-content .intro-heading {
  color: hsl(296, 52%, 10%);
  font-weight: 700;
}
#contact-content .intro-text {
  color: #333;
  max-width: 700px;
}
#contact-content .info-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  height: 100%;
}
#contact-content .info-card h3 {
  color: hsl(268, 59%, 32%);
  margin-bottom: 20px;
}
#contact-content .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#contact-content .info-list li {
  margin-bottom: 16px;
  color: #222;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
#contact-content .info-list li i {
  color: hsl(244, 83%, 63%);
  margin-top: 4px;
}
#contact-content .info-list a {
  color: hsl(268, 59%, 32%);
  text-decoration: none;
  font-weight: 600;
}
#contact-content .info-list a:hover {
  color: hsl(244, 83%, 63%);
  text-decoration: underline;
}
#contact-content .find-us {
  background-color: hsl(296, 52%, 10%);
  color: #f8f9fa;
  border-radius: 20px;
  padding: 24px;
  margin-top: 24px;
}
#contact-content .find-us p {
  color: #f0e9f7;
  margin-bottom: 12px;
}
#contact-content .find-us a {
  color: hsl(244, 83%, 63%);
  font-weight: 700;
  text-decoration: none;
}
#contact-content .find-us a:hover {
  text-decoration: underline;
}
#contact-content .form-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
#contact-content .form-card h3 {
  color: hsl(296, 52%, 10%);
  margin-bottom: 8px;
}
#contact-content .form-card .form-sub {
  color: #555;
  margin-bottom: 24px;
}
#contact-content .form-label {
  color: #222;
  font-weight: 600;
  font-family: 'Ubuntu', sans-serif;
}
#contact-content .form-control {
  border-radius: 12px;
  border: 1px solid #ccc;
  padding: 10px 14px;
  font-family: 'Playfair Display', serif;
}
#contact-content .form-control:focus {
  border-color: hsl(244, 83%, 63%);
  box-shadow: 0 0 0 0.2rem rgba(76, 65, 216, 0.2);
}
#contact-content .btn-submit {
  background-color: hsl(268, 59%, 32%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 12px 32px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
#contact-content .btn-submit:hover {
  background-color: hsl(244, 83%, 63%);
  color: #fff;
}
#contact-content .stats-strip {
  background-color: hsl(268, 59%, 32%);
  color: #fff;
  border-radius: 20px;
  padding: 24px;
  margin-top: 48px;
  text-align: center;
}
#contact-content .stats-strip .stat-item {
  color: #fff;
}
#contact-content .stats-strip .stat-number {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  display: block;
}
#contact-content .stats-strip .stat-label {
  font-size: 0.9rem;
  color: #e6e0f5;
}
#contact-content .cta-final {
  text-align: center;
  margin-top: 48px;
}
#contact-content .cta-final a {
  background-color: hsl(244, 83%, 63%);
  color: #fff;
  padding: 14px 36px;
  border-radius: 16px;
  text-decoration: none;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  display: inline-block;
}
#contact-content .cta-final a:hover {
  background-color: hsl(296, 52%, 10%);
  color: #fff;
}

.hero-outsourced {
  background: #f8f9fa;
  padding: 52px 0;
  color: #222;
}
.hero-outsourced h1 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  color: hsl(296, 52%, 10%);
  font-size: 2.4rem;
}
.hero-outsourced h2 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  color: hsl(268, 59%, 32%);
  font-size: 1.3rem;
}
.hero-outsourced p {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #333;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-img-strip {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 32px;
}
.hero-img-strip img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}
.hero-cta-btn {
  background: hsl(244, 83%, 63%);
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 18px;
  padding: 14px 34px;
  font-size: 1.05rem;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-cta-btn:hover {
  background: hsl(268, 59%, 32%);
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .hero-outsourced h1 {
    font-size: 1.8rem;
  }
  .hero-outsourced h2 {
    font-size: 1.1rem;
  }
}

.services-section {
  background-color: #f8f9fa;
  padding: 52px 0;
  font-family: 'Playfair Display', serif;
  color: #222;
}

.services-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(296, 52%, 10%);
  font-weight: 700;
}

.services-section .lead-text {
  color: #333;
  max-width: 720px;
}

.services-intro {
  margin-bottom: 40px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 12px;
  border-bottom: 1px solid rgba(268, 59%, 32%, 0.15);
  border-radius: 16px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-item:hover {
  background-color: #fff;
  transform: translateX(6px);
  box-shadow: 0 8px 20px rgba(38, 0, 60, 0.1);
}

.service-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: hsl(268, 59%, 32%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.service-item:hover .service-icon {
  background-color: hsl(244, 83%, 63%);
}

.service-content h3 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.15rem;
  color: hsl(296, 52%, 10%);
  margin-bottom: 6px;
  font-weight: 600;
}

.service-content p {
  font-size: 0.98rem;
  color: #333;
  margin-bottom: 10px;
}

.service-price {
  display: inline-block;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  color: #fff;
  background-color: hsl(296, 52%, 10%);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.service-item:hover .service-price {
  background-color: hsl(268, 59%, 32%);
}

@media (max-width: 767px) {
  .service-item {
    padding: 18px 8px;
  }
  .service-icon {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }
}

#works{background:#f8f9fa;padding:56px 0;font-family:'Playfair Display',serif;color:#222;}
#works h2{font-family:'Ubuntu',sans-serif;color:hsl(296,52%,10%);font-weight:700;}
#works .lead-text{color:#444;max-width:720px;}
#works .card{border:none;border-radius:20px;overflow:hidden;box-shadow:0 4px 14px rgba(0,0,0,0.08);height:100%;}
#works .card img{width:100%;aspect-ratio:4/3;object-fit:cover;}
#works .card-body{padding:20px;}
#works .badge-cat{background:hsl(244,83%,63%);color:#fff;font-family:'Ubuntu',sans-serif;font-weight:500;border-radius:10px;padding:6px 12px;font-size:0.8rem;}
#works .card-title{font-family:'Ubuntu',sans-serif;color:hsl(296,52%,10%);font-weight:700;margin-top:12px;}
#works .card-text{color:#333;font-size:0.95rem;}
#works .btn-details{background:hsl(268,59%,32%);border:none;color:#fff;border-radius:14px;font-family:'Ubuntu',sans-serif;font-weight:500;padding:8px 18px;}
#works .btn-details:hover{background:hsl(244,83%,63%);color:#fff;}
#works .modal-content{border-radius:20px;border:none;}
#works .modal-header{background:hsl(268,59%,32%);color:#fff;border-radius:20px 20px 0 0;}
#works .modal-header .btn-close{filter:invert(1);}
#works .modal-body{color:#222;}
#works .modal-body img{width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:14px;margin-bottom:16px;}
#works .stats-strip{background:hsl(296,52%,10%);color:#fff;border-radius:20px;padding:24px;margin-top:48px;}
#works .stats-strip .num{font-family:'Ubuntu',sans-serif;font-weight:700;font-size:1.9rem;color:#fff;}
#works .stats-strip .lbl{color:#e6d9f5;font-size:0.9rem;}

#benefits {
  padding: 52px 0;
  background-color: #f8f9fa;
}
#benefits h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(296, 52%, 10%);
  font-weight: 700;
}
#benefits .subtitle {
  font-family: 'Playfair Display', serif;
  color: #333;
  font-size: 1.05rem;
  max-width: 700px;
}
#benefits .benefit-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
#benefits .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(37, 20, 84, 0.18);
  background: hsl(268, 59%, 32%);
}
#benefits .benefit-card:hover .benefit-title, #benefits .benefit-card:hover .benefit-text, #benefits .benefit-card:hover .icon-wrap {
  color: #fff !important;
}
#benefits .benefit-card:hover .icon-wrap {
  background: hsl(244, 83%, 63%);
}
#benefits .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: hsl(296, 52%, 10%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
  transition: background 0.3s ease, color 0.3s ease;
}
#benefits .benefit-title {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  color: hsl(296, 52%, 10%);
  font-size: 1.15rem;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
#benefits .benefit-text {
  font-family: 'Playfair Display', serif;
  color: #333;
  font-size: 0.98rem;
  line-height: 1.55;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  #benefits { padding: 40px 0; }
}

#answers {
  background-color: #f8f9fa;
  padding: 52px 0;
}
#answers h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(296, 52%, 10%);
  font-weight: 700;
}
#answers .lead-text {
  font-family: 'Playfair Display', serif;
  color: #333;
  max-width: 760px;
}
#answers .faq-accordion .accordion-item {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
#answers .faq-accordion .accordion-button {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  color: hsl(296, 52%, 10%);
  background-color: #ffffff;
  border-radius: 18px;
}
#answers .faq-accordion .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: hsl(268, 59%, 32%);
  box-shadow: none;
}
#answers .faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: hsl(244, 83%, 63%);
}
#answers .faq-accordion .accordion-button::after {
  filter: none;
}
#answers .faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
#answers .faq-accordion .accordion-body {
  font-family: 'Playfair Display', serif;
  color: #333;
  background-color: #ffffff;
  border-radius: 0 0 18px 18px;
  line-height: 1.7;
}

#contact {
  background:#f8f9fa;
  padding:56px 0;
  font-family:'Playfair Display',serif;
  color:#222;
}
#contact h2 {
  font-family:'Ubuntu',sans-serif;
  color:hsl(268, 59%, 32%);
  font-weight:700;
}
#contact .lead-text {
  color:#333;
  font-size:1.05rem;
  margin-bottom:32px;
}
#contact .contact-card {
  background:#fff;
  border-radius:20px;
  padding:32px;
  box-shadow:0 4px 18px rgba(0,0,0,0.06);
  height:100%;
}
#contact .contact-info-item {
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:22px;
}
#contact .contact-info-icon {
  width:44px;
  height:44px;
  min-width:44px;
  border-radius:14px;
  background:hsl(268, 59%, 32%);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
}
#contact .contact-info-item a {
  color:hsl(244, 83%, 63%);
  text-decoration:none;
  font-weight:600;
}
#contact .contact-info-item a:hover {
  text-decoration:underline;
}
#contact .contact-info-item p {
  margin:0;
  color:#333;
}
#contact .map-link {
  display:inline-block;
  margin-top:6px;
  color:hsl(268, 59%, 32%);
  font-weight:600;
  text-decoration:underline;
}
#contact .contact-form label {
  font-weight:600;
  color:#222;
  margin-bottom:6px;
}
#contact .contact-form .form-control {
  border-radius:14px;
  border:1px solid #ccc;
  padding:12px 16px;
  font-family:'Playfair Display',serif;
}
#contact .contact-form .form-control:focus {
  border-color:hsl(244, 83%, 63%);
  box-shadow:0 0 0 0.2rem rgba(76,63,208,0.2);
}
#contact .btn-send {
  background:hsl(268, 59%, 32%);
  color:#fff;
  border:none;
  border-radius:14px;
  padding:12px 32px;
  font-family:'Ubuntu',sans-serif;
  font-weight:600;
  transition:background 0.2s ease;
}
#contact .btn-send:hover {
  background:hsl(244, 83%, 63%);
  color:#fff;
}
#contact .hours-box {
  background:hsl(296, 52%, 10%);
  color:#f8f9fa;
  border-radius:16px;
  padding:20px;
  margin-top:10px;
}
#contact .hours-box p {
  margin:0;
  color:#f8f9fa;
}

.disclaimer-section-ticewi {
  font-family: 'Playfair Display', serif;
  background-color: #f8f9fa;
  padding: 52px 0;
  color: #222;
}
.disclaimer-section-ticewi h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(268, 59%, 32%);
  font-weight: 700;
}
.disclaimer-box-ticewi {
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.disclaimer-icon-ticewi {
  font-size: 2.2rem;
  color: hsl(244, 83%, 63%);
  flex-shrink: 0;
}
.disclaimer-box-ticewi p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 0;
}
