:root {
  --bg: #fff;
  --text-dark: #333;
  --accent-primary: #e1cff6;
  --accent-secondary: #f6d1e1;
  --wave-color: rgba(225, 207, 246, 0.3);
  --transition: 0.3s ease;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}
.loader-logo {
  width: 60px;
  animation: spin 1s linear infinite;
}
.loader-text {
  margin-top: 1rem;
  font-weight: 500;
  color: var(--accent-primary);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  padding: 1rem 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--accent-secondary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: "Roboto Slab", serif;
  font-size: 1.75rem;
  color: var(--text-dark);
  text-decoration: none;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text-dark);
  transition: transform var(--transition), opacity var(--transition);
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.site-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--accent-primary);
  transition: transform var(--transition);
}
.site-nav a:hover::after,
.site-nav .active::after {
  transform: translateX(-50%) scaleX(1);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right var(--transition);
  }
  .site-nav.open {
    right: 0;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.wave-bg {
  position: relative;
  overflow: hidden;
}
.wave-bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 200px;
  background: var(--wave-color);
  border-radius: 40%;
  transform: translateX(-25%) scaleX(1.5);
  animation: wave 6s ease-in-out infinite;
}
@keyframes wave {
  0%,
  100% {
    transform: translateX(-25%) scaleX(1.5);
  }
  50% {
    transform: translateX(-15%) scaleX(1.6);
  }
}

.cookies-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--accent-secondary);
  color: var(--text-dark);
  width: 200px;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2000;
}
.cookies-button {
  background: var(--accent-primary);
  border: none;
  padding: 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background var(--transition);
}
.cookies-button:hover {
  background: var(--accent-secondary);
}

.scroll-to-top {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  background: var(--accent-primary);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--transition);
}
.scroll-to-top.visible {
  opacity: 1;
}

.site-footer {
  background: var(--accent-secondary);
  color: var(--text-dark);
  padding: 3rem 1rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
}
.footer-logo img {
  max-width: 120px;
  margin: 0 auto 0.5rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.footer-links a {
  color: var(--text-dark);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--accent-primary);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dark);
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
}

@media (max-width: 768px) {
  .logo {
    font-size: 1.5rem;
  }
  .site-nav ul {
    gap: 1rem;
  }
  .footer-inner {
    gap: 1rem;
  }
}

.hero-section {
  position: relative;
  height: 60vh;
  overflow: hidden;
}
.hero-section .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  height: 60vh;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 1rem;
}
.hero-content h1 {
  font-family: "Roboto Slab", serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.hero-content p {
  font-size: 1.25rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-section .splide__pagination {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}
.hero-section .splide__pagination__page {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: background var(--transition);
}
.hero-section .splide__pagination__page.is-active {
  background: var(--accent-primary);
}

.hero-section.wave-bg::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 200%;
  height: 200px;
  background: var(--wave-color);
  border-radius: 40%;
  transform: translateX(-25%) scaleX(1.5);
  animation: wave 6s ease-in-out infinite;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}

.about-salon-section {
  padding: 6rem 0 4rem;
  background: var(--bg);
  position: relative;
}
.about-salon__title {
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-size: 2.5rem;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}
.about-salon__text {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  color: var(--text-dark);
  line-height: 1.6;
  text-align: center;
}

.salon-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.salon-photo {
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.salon-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.salon-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-salon-section.wave-bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 150px;
  background: var(--wave-color);
  border-radius: 40%;
  transform: translateX(-25%) scaleX(1.5);
  animation: wave 6s ease-in-out infinite;
  z-index: -1;
}

@media (max-width: 992px) {
  .salon-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .about-salon__title {
    font-size: 2rem;
  }
  .about-salon__text {
    font-size: 1rem;
  }
  .salon-gallery {
    grid-template-columns: 1fr;
  }
  .salon-photo img {
    height: 180px;
  }
}

.director-section {
  padding: 6rem 0;
  background: var(--accent-secondary);
  position: relative;
}
.director-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap;
}
.director-photo {
  flex: 0 0 280px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.director-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.director-bio {
  flex: 1;
}
.director-bio__name {
  font-family: "Roboto Slab", serif;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.director-bio__role {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.director-bio__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.director-bio__credentials {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.director-bio__credentials li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.director-bio__credentials li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-primary);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .director-inner {
    flex-direction: column;
    text-align: center;
  }
  .director-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
  }
  .director-bio__credentials {
    grid-template-columns: 1fr;
  }
}

.services-section {
  padding: 6rem 0;
  background: var(--bg);
  position: relative;
}
.services__title {
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-size: 2.5rem;
  color: var(--accent-primary);
  margin-bottom: 2.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.service-card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.service-card__img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.service-card__name {
  font-family: "Roboto Slab", serif;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin: 1rem;
}
.service-card__price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent-secondary);
  margin: 0 1rem;
}
.service-card__features {
  list-style: none;
  padding: 0 1.5rem;
  margin: 1rem 0;
  flex-grow: 1;
}
.service-card__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.service-card__features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-primary);
}

.services-section.wave-bg::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 200%;
  height: 150px;
  background: var(--wave-color);
  border-radius: 40%;
  transform: translateX(-25%) scaleX(1.5);
  animation: wave 6s ease-in-out infinite;
  z-index: -1;
}

@media (max-width: 768px) {
  .services-section {
    padding: 4rem 0;
  }
  .services__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .service-card__img img {
    height: 140px;
  }
}

.client-gallery-section {
  padding: 6rem 0 !important;
  background: var(--bg);
  position: relative;
}
.client-gallery__title {
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-size: 2.5rem;
  color: var(--accent-primary);
  margin-bottom: 2rem !important;
}

.client-gallery__splide .splide__slide {
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.client-gallery__splide .splide__slide img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.client-gallery__splide .splide__slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.client-gallery__splide .splide__arrow {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-dark);
  font-size: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.client-gallery__splide .splide__arrow:hover {
  background: var(--accent-primary);
  color: #fff;
}

.client-gallery__splide .splide__pagination__page {
  width: 10px;
  height: 10px;
  margin: 0 4px !important;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: background var(--transition);
}
.client-gallery__splide .splide__pagination__page.is-active {
  background: var(--accent-primary);
}

.client-gallery-section.wave-bg::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 200%;
  height: 150px;
  background: var(--wave-color);
  border-radius: 40%;
  transform: translateX(-25%) scaleX(1.5);
  animation: wave 6s ease-in-out infinite;
  z-index: -1;
}

@media (max-width: 1024px) {
  .client-gallery__splide .splide__slide img {
    height: 180px;
  }
}
@media (max-width: 600px) {
  .client-gallery__splide .splide__slide img {
    height: 160px;
  }
  .client-gallery__title {
    font-size: 2rem;
  }
}

.parallax-section {
  position: relative;
  height: 60vh;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 1rem;
}
.parallax__title {
  font-family: "Roboto Slab", serif;
  font-size: 2.75rem;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.parallax__subtitle {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .parallax__title {
    font-size: 2rem;
  }
  .parallax__subtitle {
    font-size: 1rem;
  }
}

/* Special Offers Section */
.special-offers-section {
  padding: 6rem 0;
  background: var(--bg);
  position: relative;
}
.special-offers__title {
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-size: 2.5rem;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}
.special-offers__subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.offer-card {
  position: relative;
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.offer-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-primary);
  color: #fff;
  font-weight: bold;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.offer-card h3 {
  font-family: "Roboto Slab", serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.offer-old-price {
  font-size: 0.9rem;
  color: #888;
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

.offer-new-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-secondary);
  margin-bottom: 1rem;
}

.offer-btn {
  display: inline-block;
  background: var(--accent-primary);
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}
.offer-btn:hover {
  background: var(--accent-secondary);
  transform: translateY(-2px);
}

.special-offers-section.wave-bg::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 200%;
  height: 150px;
  background: var(--wave-color);
  border-radius: 40%;
  transform: translateX(-25%) scaleX(1.5);
  animation: wave 6s ease-in-out infinite;
  z-index: -1;
}

@media (max-width: 600px) {
  .special-offers__title {
    font-size: 2rem;
  }
  .special-offers__subtitle {
    font-size: 1rem;
  }
  .offer-card {
    padding: 1.5rem 1rem 1rem;
  }
}

.special-offers-section {
  padding: 6rem 0;
  background: var(--bg);
  position: relative;
}
.special-offers__title {
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-size: 2.5rem;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}
.special-offers__subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.offer-card {
  position: relative;
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.offer-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-primary);
  color: #fff;
  font-weight: bold;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.offer-card h3 {
  font-family: "Roboto Slab", serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.offer-old-price {
  font-size: 0.9rem;
  color: #888;
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

.offer-new-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-secondary);
  margin-bottom: 1rem;
}

.offer-btn {
  display: inline-block;
  background: var(--accent-primary);
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}
.offer-btn:hover {
  background: var(--accent-secondary);
  transform: translateY(-2px);
}

.special-offers-section.wave-bg::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 200%;
  height: 150px;
  background: var(--wave-color);
  border-radius: 40%;
  transform: translateX(-25%) scaleX(1.5);
  animation: wave 6s ease-in-out infinite;
  z-index: -1;
}

@media (max-width: 600px) {
  .special-offers__title {
    font-size: 2rem;
  }
  .special-offers__subtitle {
    font-size: 1rem;
  }
  .offer-card {
    padding: 1.5rem 1rem 1rem;
  }
}

.contact-info-section {
  padding: 6rem 0;
  background: var(--bg);
}
.contact-info__title {
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-size: 2.5rem;
  color: var(--accent-primary);
  margin-bottom: 2rem;
}
.contact-info__lists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.contact-info__group h3 {
  font-family: "Roboto Slab", serif;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.contact-info__group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info__group ul li {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.25rem;
}
.contact-info__group ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-primary);
}
.contact-info__group ul li a {
  color: var(--accent-secondary);
  text-decoration: none;
  transition: color var(--transition);
}
.contact-info__group ul li a:hover {
  color: var(--accent-primary);
}

.social-links li {
  display: inline-block;
  margin-right: 1rem;
}
.social-links li:last-child {
  margin-right: 0;
}
.social-links a {
  font-weight: 500;
}

@media (max-width: 768px) {
  .contact-info__title {
    font-size: 2rem;
  }
  .contact-info__lists {
    grid-template-columns: 1fr;
  }
}

.title_background {
  background: var(--accent-secondary, #2e5f3d);
  padding: 8rem 0;
}
.title_background .container {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.title_background .title {
  font-family: "Roboto Slab", serif;
  font-size: 1.75rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text_background {
  background: #f9f9f9;
  padding: 3rem 0;
}
.text_background .container {
  max-width: var(--max-width);
  margin: 0 auto;
}
.text_background .text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  position: relative;
  padding-left: 1.5rem;
}
.text_background .text::before {
  content: "“";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 3rem;
  color: var(--accent-secondary, #2e5f3d);
  line-height: 1;
}
.text_background .text::after {
  content: "”";
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 3rem;
  color: var(--accent-secondary, #2e5f3d);
  line-height: 1;
}

@media (max-width: 768px) {
  .title_background .title {
    font-size: 1.5rem;
  }
  .text_background .text {
    font-size: 0.95rem;
    padding-left: 1rem;
  }
  .text_background .text::before,
  .text_background .text::after {
    font-size: 2.5rem;
  }
}

.services-detail-section {
  padding: 6rem 0;
  background: var(--bg);
}
.services-detail__title {
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-size: 2.5rem;
  color: var(--accent-primary);
  margin-bottom: 3rem;
}
.service-detail {
  margin-bottom: 4rem;
}
.service-detail__name {
  font-family: "Roboto Slab", serif;
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
}
.service-detail__name::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-secondary);
  margin-top: 0.5rem;
}
.service-detail__inner {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.service-detail__image {
  flex: 1 1 300px;
  max-width: 400px;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.service-detail__image img {
  width: 100%;
  height: auto;
  display: block;
}
.service-detail__content {
  flex: 2 1 400px;
}
.service-detail__price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}
.service-detail__features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
}
.service-detail__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}
.service-detail__features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-secondary);
  font-weight: bold;
}
.service-detail__btn {
  display: inline-block;
  background: var(--accent-secondary);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 500;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.service-detail__btn:hover {
  background: var(--accent-primary);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .service-detail__inner {
    flex-direction: column;
  }
  .service-detail__image,
  .service-detail__content {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .services-detail__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .service-detail__name {
    font-size: 1.5rem;
  }
  .service-detail__price {
    font-size: 1.125rem;
  }
  .service-detail__btn {
    width: 100%;
    text-align: center;
  }
}
