.service-page {
  padding-top: 80px;
}
.service-page .hero {
  min-height: 60vh;
}

.service-hero {
  background: linear-gradient(135deg, rgba(44, 62, 58, 0.95), rgba(139, 115, 85, 0.9));
  color: #FFFFFF;
  padding: 6rem 0;
  text-align: center;
}
.service-hero__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.service-hero__subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 4rem;
}
.service-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.service-intro {
  padding: 80px 0;
  background: #FDF9F5;
  position: relative;
  overflow: hidden;
}
.service-intro::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(156, 39, 176, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.service-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 992px) {
  .service-intro__grid {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .service-intro__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .service-intro__content {
    order: 1;
  }
}
.service-intro .section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1A1A1A;
  line-height: 1.2;
}
@media (max-width: 992px) {
  .service-intro .section-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .service-intro .section-title {
    font-size: 28px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .service-intro .section-title {
    font-size: 24px;
  }
}
.service-intro__text {
  font-size: 1.05rem;
  color: #5A5A5A;
  line-height: 1.7;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .service-intro__text {
    text-align: center;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .service-intro__text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}
.service-intro__text p {
  margin-bottom: 15px;
}
.service-intro__text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .service-intro {
    padding: 50px 0;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .service-intro {
    padding: 40px 0;
  }
}

.gallery-carousel-one {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 400px;
}
@media (max-width: 768px) {
  .gallery-carousel-one {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}
.gallery-carousel-one .gallery-slide {
  position: relative;
}
.gallery-carousel-one .gallery-slide__img {
  max-width: 400px;
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
@media (max-width: 992px) {
  .gallery-carousel-one .gallery-slide__img {
    height: 350px;
  }
}
@media (max-width: 768px) {
  .gallery-carousel-one .gallery-slide__img {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .gallery-carousel-one .gallery-slide__img {
    height: 250px;
  }
}
.gallery-carousel-one .swiper-pagination {
  position: absolute;
  bottom: 20px !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 10;
}
.gallery-carousel-one .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #D4C4B5;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.gallery-carousel-one .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #2C3E3A;
  transform: scale(1.2);
}
.gallery-carousel-one .swiper-button-prev,
.gallery-carousel-one .swiper-button-next {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  backdrop-filter: blur(4px);
}
.gallery-carousel-one .swiper-button-prev::after,
.gallery-carousel-one .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.gallery-carousel-one .swiper-button-prev:hover,
.gallery-carousel-one .swiper-button-next:hover {
  background: white;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .gallery-carousel-one .swiper-button-prev,
  .gallery-carousel-one .swiper-button-next {
    width: 32px;
    height: 32px;
  }
  .gallery-carousel-one .swiper-button-prev::after,
  .gallery-carousel-one .swiper-button-next::after {
    font-size: 14px;
  }
}
.gallery-carousel-one .swiper-button-prev {
  left: 15px;
}
.gallery-carousel-one .swiper-button-next {
  right: 15px;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .service-features {
    grid-template-columns: 1fr;
  }
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: #FFFFFF;
  border-radius: 12px;
}
.service-feature__icon {
  font-size: 2.5rem;
}
.service-feature__text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.service-feature__text strong {
  font-size: 1.05rem;
  color: #1A1A1A;
}
.service-feature__text span {
  font-size: 0.9rem;
  color: #5A5A5A;
}

.service-prices {
  padding: 6rem 0;
  background: #FFFFFF;
}
.service-prices .section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.prices-table-wrapper {
  overflow-x: auto;
  max-width: 100%;
}

.prices-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  max-width: 900px;
}
.prices-table thead {
  background: #2C3E3A;
  color: #FFFFFF;
}
.prices-table thead th {
  padding: 2rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.prices-table thead th:first-child {
  text-align: left;
  border-top-left-radius: 12px;
}
.prices-table thead th:last-child {
  border-top-right-radius: 12px;
}
.prices-table tbody tr {
  border-bottom: 1px solid rgba(139, 115, 85, 0.1);
  transition: background 0.2s;
}
.prices-table tbody tr:hover {
  background: rgba(139, 115, 85, 0.03);
}
.prices-table tbody tr:last-child td {
  border-bottom: none;
}
.prices-table tbody td {
  padding: 2rem;
  text-align: center;
  font-size: 1rem;
  color: #1A1A1A;
}
.prices-table tbody td:first-child {
  text-align: left;
}
.prices-table tbody td:nth-child(2), .prices-table tbody td:nth-child(3), .prices-table tbody td:nth-child(4) {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: #2C3E3A;
  font-size: 1.1rem;
}

.price-name {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.price-name strong {
  font-size: 1.05rem;
  color: #1A1A1A;
}
.price-name .price-duration {
  font-size: 0.85rem;
  color: #5A5A5A;
  font-weight: 400;
}

.btn-table {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: #2C3E3A;
  color: #FFFFFF;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-table:hover {
  background: rgb(22.8301886792, 32.1698113208, 30.0943396226);
  transform: translateY(-2px);
}

.service-cta {
  background: linear-gradient(135deg, rgba(44, 62, 58, 0.95), rgba(139, 115, 85, 0.9));
  color: #FFFFFF;
  padding: 6rem 0;
  text-align: center;
}
.service-cta__content {
  max-width: 700px;
  margin: 0 auto;
}
.service-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.service-cta p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 4rem;
}
.service-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.service-cta__phone {
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}
.service-cta__phone:hover {
  opacity: 0.85;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: #2C3E3A;
  color: #FFFFFF;
}
.btn--primary:hover {
  background: rgb(22.8301886792, 32.1698113208, 30.0943396226);
  transform: translateY(-2px);
}
.btn--outline {
  border: 2px solid currentColor;
  background: transparent;
}
.btn--outline.btn--light {
  color: #FFFFFF;
}
.btn--outline.btn--light:hover {
  background: #FFFFFF;
  color: #2C3E3A;
}
.btn--lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.05rem;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 1rem;
}

.gallery-section {
  position: relative;
  overflow: hidden;
}
.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(44, 62, 58, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.gallery-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 115, 85, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.gallery-carousel .swiper-slide {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-carousel .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
  z-index: 2;
}
.gallery-carousel .swiper-slide:hover::before {
  left: 100%;
}
.gallery-carousel .swiper-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.gallery-carousel .swiper-slide:hover .gallery-overlay {
  opacity: 1;
}
.gallery-carousel .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
  cursor: pointer;
}
.gallery-carousel .gallery-overlay__icon {
  background: rgba(255, 255, 255, 0.9);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.swiper-slide:hover .gallery-carousel .gallery-overlay__icon {
  transform: scale(1);
}
.gallery-carousel .gallery-counter {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  color: white;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  z-index: 3;
  pointer-events: none;
}

.gallery-carousel .swiper-slide {
  overflow: hidden;
  border-radius: 24px;
}

.gallery-carousel .gallery-slide__img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  display: block;
}

.gallery-cta {
  text-align: center;
  margin-top: 30px;
}
.gallery-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  border: 2px solid #2C3E3A;
  border-radius: 40px;
  color: #2C3E3A;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.gallery-cta__btn:hover {
  background: #2C3E3A;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(44, 62, 58, 0.3);
}
.gallery-cta__btn:hover .gallery-cta__arrow {
  transform: translateX(5px);
}
.gallery-cta__arrow {
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .prices-table {
    font-size: 0.9rem;
  }
  .prices-table thead th {
    padding: 1rem;
    font-size: 0.85rem;
  }
  .prices-table tbody td {
    padding: 1rem;
  }
  .prices-table tbody td:nth-child(2), .prices-table tbody td:nth-child(3), .prices-table tbody td:nth-child(4) {
    font-size: 1rem;
  }
  .btn-table {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }
}
.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .service-page {
    padding-top: 80px;
  }
  .service-item {
    padding: 1rem;
  }
  .service-item__title {
    font-size: 1.3rem;
  }
  .service-item__price {
    font-size: 1.4rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=default-page.css.map */
