body {
  background: linear-gradient(135deg, #0c082b 0%, #182c4f 100%) fixed !important;
}

.testimonials-section {
  padding: 140px 0 40px;
  position: relative;
}

.testimonials-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.6);
}

.testimonials-breadcrumbs__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.testimonials-breadcrumbs__link:hover {
  color: #0096ff;
}

.testimonials-breadcrumbs__link svg {
  color: rgba(255, 255, 255, 0.4);
}

.testimonials-breadcrumbs__divider {
  color: rgba(255, 255, 255, 0.3);
}

.testimonials-breadcrumbs__current {
  color: #0096ff;
  font-weight: 600;
}

.testimonials-hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: start;
}

.testimonials-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  color: #0096ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}

.testimonials-label svg {
  color: #0096ff;
}

.testimonials-title {
  font-size: 64px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.testimonials-title-highlight {
  color: #0096ff;
}

.testimonials-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 40px 0;
  max-width: 550px;
}

.testimonials-actions {
  display: flex;
  gap: 16px;
}

.testimonials-actions__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.testimonials-actions__btn--primary {
  background: linear-gradient(135deg, #0096ff 0%, #00c3ff 100%);
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 150, 255, 0.3);
}

.testimonials-actions__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 150, 255, 0.5);
}

.testimonials-actions__btn--secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.testimonials-actions__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testimonials-stat-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  transition: all 0.3s ease;
}

.testimonials-stat-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 150, 255, 0.2);
  transform: translateY(-4px);
}

.testimonials-stat-card__label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.testimonials-stat-card__value {
  font-size: 36px;
  font-weight: 900;
  color: #0096ff;
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonials-stat-card__stars {
  display: flex;
  gap: 2px;
  align-self: end;
  padding: 0 0 4px;
}

.testimonials-stat-card__stars svg {
  fill: #0096ff;
  stroke: #0096ff;
}

.testimonials-stat-card__info {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.reviews-section {
  padding: 40px 0;
  position: relative;
}

.reviews-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.reviews-header {
  margin-bottom: 40px;
}

.reviews-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 150, 255, 0.15);
  color: #0096ff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.reviews-title {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.reviews-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 150, 255, 0.2);
  transform: translateY(-4px);
}

.review-card__quote {
  margin-bottom: 20px;
  color: #0096ff;
  opacity: 0.6;
}

.review-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 24px 0;
  min-height: 120px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  background: rgba(0, 150, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #0096ff;
  flex-shrink: 0;
}

.review-card__info {
  flex: 1;
}

.review-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.review-card__meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.review-card__rating {
  display: flex;
  gap: 2px;
}

.review-card__rating svg {
  fill: #0096ff;
  stroke: #0096ff;
}

.photo-gallery-section {
  padding: 80px 0;
  position: relative;
}

.photo-gallery-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.photo-gallery-header {
  margin-bottom: 40px;
}

.photo-gallery-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 150, 255, 0.15);
  color: #0096ff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.photo-gallery-title {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.photo-gallery-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0;
}

.photo-gallery-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.photo-gallery-left,
.photo-gallery-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.photo-gallery-top-small,
.photo-gallery-bottom-small {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.photo-gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.photo-gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 150, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.photo-gallery-item--large-top,
.photo-gallery-item--large-bottom {
  height: 453px;
}

.photo-gallery-top-small .photo-gallery-item,
.photo-gallery-bottom-small .photo-gallery-item {
  height: 300px;
}

.photo-gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.photo-gallery-item:hover .photo-gallery-item__img {
  transform: scale(1.05);
}

.photo-gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.photo-gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.photo-gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 150, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.photo-gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.photo-gallery-item:hover .photo-gallery-item__img {
  transform: scale(1.05);
}

.photo-gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.video-testimonials-section {
  padding: 80px 0;
  position: relative;
}

.video-testimonials-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-testimonials-header {
  margin-bottom: 60px;
}

.video-testimonials-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 150, 255, 0.15);
  color: #0096ff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.video-testimonials-title {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.video-testimonials-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0;
}

.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-card:hover {
  border-color: rgba(0, 150, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-card__thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.video-card:hover .video-card__img {
  transform: scale(1.05);
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.video-card__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card__play svg circle {
  transition: all 0.3s ease;
}

.video-card__play:hover svg circle {
  fill: #00c3ff;
  filter: drop-shadow(0 0 20px rgba(0, 150, 255, 0.6));
}

.video-card__quality {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  z-index: 1;
}

.video-card__duration {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  z-index: 1;
}

.video-card__content {
  padding: 24px;
}

.video-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.video-card__author {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.4;
}

.google-reviews-section {
  padding: 0 0 80px;
  position: relative;
}

.google-reviews-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.google-reviews-wrapper {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.google-reviews-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  color: #0096ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.google-reviews-label svg {
  color: #0096ff;
}

.google-reviews-title {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.google-reviews-title-highlight {
  color: #0096ff;
}

.google-reviews-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.google-reviews-rating__value {
  font-size: 48px;
  font-weight: 900;
  color: #0096ff;
  line-height: 1;
}

.google-reviews-rating__stars {
  display: flex;
  gap: 2px;
}

.google-reviews-rating__stars svg {
  fill: #0096ff;
  stroke: #0096ff;
}

.google-reviews-rating__count {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.google-reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.google-reviews-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 150, 255, 0.3);
  gap: 14px;
}

.google-reviews-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.google-review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.google-review-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 150, 255, 0.2);
}

.google-review-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.google-review-card__avatar {
  width: 40px;
  height: 40px;
  background: rgba(0, 150, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #0096ff;
  flex-shrink: 0;
}

.google-review-card__info {
  flex: 1;
}

.google-review-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.google-review-card__date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.google-review-card__rating {
  display: flex;
  gap: 2px;
}

.google-review-card__rating svg {
  fill: #0096ff;
  stroke: #0096ff;
}

.google-review-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.review-contact-section {
  padding: 80px 0;
  position: relative;
}

.review-contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
}

.review-contact-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.review-contact-wrapper {
  background: radial-gradient(
    ellipse at 70% 39%,
    rgba(0, 150, 255, 0.15) 0%,
    transparent 90%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.review-contact-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  color: #0096ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.review-contact-label svg {
  color: #0096ff;
}

.review-contact-title {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.review-contact-title-highlight {
  color: #0096ff;
}

.review-contact-description {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 450px;
}

.review-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-contact-info__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.review-contact-info__item:hover {
  color: #0096ff;
  transform: translateX(4px);
}

.review-contact-info__item svg {
  stroke: #0096ff;
  width: 20px;
  height: 20px;
}

.review-contact-form-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
}

.review-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.review-contact-form__group {
  margin-bottom: 20px;
}

.review-contact-form__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.review-contact-form__input,
.review-contact-form__textarea {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.review-contact-form__input:focus,
.review-contact-form__textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 150, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 150, 255, 0.1);
}

.review-contact-form__input::placeholder,
.review-contact-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.review-contact-form__textarea {
  resize: vertical;
  min-height: 100px;
}

.review-contact-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #0096ff 0%, #00c3ff 100%);
  border: none;
  border-radius: 50px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 150, 255, 0.3);
}

.review-contact-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 150, 255, 0.5);
}

.seo-why-choose-section {
  padding: 80px 0;
  position: relative;
}

.seo-why-choose-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.seo-why-choose-content {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 50px 60px;
  max-height: 500px;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.seo-why-choose-content.expanded {
  max-height: 5000px;
}

.seo-why-choose-content ol {
  list-style-type: decimal;
  margin: 20px 0 20px 30px;
}
.seo-why-choose-content ul {
  list-style-type: disc;
  margin: 20px 0 20px 30px;
}

.seo-why-choose-content p {
  margin: 20px 0;
}

.seo-why-choose-content blockquote {
  position: relative;
  margin: 24px 0;
  padding: 18px 22px 18px 56px;
  background: #f5f8fc1c;
  border-left: 4px solid #0b5fff;
  border-radius: 0 10px 10px 0;
  font-size: 16px;
  line-height: 1.65;
  color: #ffffff;
}

.seo-why-choose-content blockquote::before {
  content: "\201C";
  position: absolute;
  left: 16px;
  top: 10px;
  font-family: Georgia, serif;
  font-size: 44px;
  line-height: 1;
  color: #0b5fff;
}

.seo-why-choose-content blockquote strong {
  color: #0b5fff;
}

.seo-why-choose-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  background: linear-gradient(to bottom, transparent, rgba(12, 8, 43, 0.98));
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.seo-why-choose-content.expanded::after {
  opacity: 0;
}

.seo-why-choose-title {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 30px 0;
  line-height: 1.3;
}

.seo-why-choose-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
}

.seo-why-choose-text p {
  margin: 0 0 20px 0;
}

.seo-why-choose-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 30px auto 0;
  padding: 16px 32px;
  background: rgba(0, 150, 255, 0.1);
  border: 1px solid rgba(0, 150, 255, 0.3);
  border-radius: 12px;
  color: #0096ff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.seo-why-choose-toggle:hover {
  background: rgba(0, 150, 255, 0.2);
  border-color: #0096ff;
  transform: translateY(-2px);
}

.seo-why-choose-toggle.expanded {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

.seo-why-choose-toggle-icon {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.seo-why-choose-toggle.expanded .seo-why-choose-toggle-icon {
  transform: rotate(180deg);
}

.testimonials-hero__right {
  align-items: center;
  align-self: center;
  width: 100%;
}

@media (max-width: 1200px) {
  .testimonials-hero__left {
    text-align: left;
  }
  .testimonials-title {
    font-size: 50px;
  }
  .reviews-description {
    max-width: 100%;
  }

  .google-reviews-wrapper {
    padding: 40px;
    grid-template-columns: 1.5fr 1.5fr;
    gap: 40px;
  }

  .google-reviews-title {
    font-size: 40px;
    text-align: center;
  }

  .google-reviews-rating {
    gap: 12px;
    justify-content: center;
  }

  .google-reviews-left {
    position: sticky;
    top: 150px;
  }

  .google-reviews-section {
    padding: 0 0 40px;
  }
  .review-contact-section,
  .photo-gallery-section,
  .video-testimonials-section {
    padding: 40px 0;
  }

  .review-contact-info {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .testimonials-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-title {
    font-size: 40px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-title {
    font-size: 40px;
  }
  .photo-gallery-wrapper {
    grid-template-columns: 1fr;
  }

  .photo-gallery-item--large-top,
  .photo-gallery-item--large-bottom {
    height: 400px;
  }

  .photo-gallery-top-small,
  .photo-gallery-bottom-small {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-gallery-item--large-left {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }

  .photo-gallery-item--large-right {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
  }

  .photo-gallery-title {
    font-size: 40px;
  }

  .video-testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .video-testimonials-title {
    font-size: 40px;
  }
  .google-reviews-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px;
  }

  .google-reviews-title {
    font-size: 40px;
  }

  .review-contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 40px;
  }

  .review-contact-title {
    font-size: 40px;
  }

  .testimonials-hero {
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
  }

  .google-reviews-left {
    position: relative;
    top: 0;
  }

  .google-reviews-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-stat-card__value {
    justify-content: center;
  }

  .review-contact-description {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 140px 0 60px;
  }

  .testimonials-title {
    font-size: 36px;
  }

  .testimonials-description {
    font-size: 15px;
  }

  .testimonials-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .testimonials-stat-card__value {
    font-size: 20px;
  }

  .testimonials-actions {
    flex-direction: column;
  }

  .testimonials-actions__btn {
    width: 100%;
    justify-content: center;
  }
  .reviews-section {
    padding: 40px 0;
  }

  .reviews-title {
    font-size: 32px;
  }

  .reviews-description {
    font-size: 15px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .review-card__text {
    min-height: auto;
  }
  .photo-gallery-section {
    padding: 40px 0;
  }

  .photo-gallery-title {
    font-size: 32px;
  }

  .photo-gallery-description {
    font-size: 15px;
  }

  .photo-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 300px);
    gap: 16px;
  }

  .photo-gallery-item--large-left,
  .photo-gallery-item--large-right,
  .photo-gallery-item--small {
    grid-column: 1 / 2;
    grid-row: span 1;
  }

  .video-testimonials-section {
    padding: 40px 0;
  }

  .video-testimonials-title {
    font-size: 32px;
  }

  .video-testimonials-description {
    font-size: 15px;
  }

  .video-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .video-card__content {
    padding: 20px;
  }

  .video-card__title {
    font-size: 15px;
  }

  .google-reviews-section {
    padding: 0 0 40px;
  }

  .google-reviews-wrapper {
    padding: 30px 20px;
  }

  .google-reviews-title {
    font-size: 32px;
  }

  .google-reviews-rating__value {
    font-size: 36px;
  }

  .google-review-card {
    padding: 20px;
  }

  .review-contact-section {
    padding: 40px 0;
  }

  .review-contact-wrapper {
    padding: 30px 20px;
  }

  .review-contact-title {
    font-size: 32px;
  }

  .review-contact-description {
    font-size: 14px;
    max-width: 100%;
  }

  .review-contact-form-card {
    padding: 30px 20px;
  }

  .review-contact-form__row {
    grid-template-columns: 2fr 2fr;
    gap: 20px;
  }
  .seo-why-choose-section {
    padding: 40px 0 60px;
  }

  .seo-why-choose-content {
    padding: 30px 24px;
    max-height: 400px;
    border-radius: 20px;
    text-align: left;
  }

  .seo-why-choose-title {
    font-size: 28px;
  }

  .seo-why-choose-text {
    font-size: 14px;
  }

  .google-reviews-right {
    grid-template-columns: repeat(1, 1fr);
  }

  .testimonials-hero {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

@media (max-width: 680px) {
  .reviews-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .testimonials-hero {
    gap: 60px;
    display: flex;
    flex-direction: column;
  }

  .testimonials-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .testimonials-title {
    font-size: 28px;
  }

  .testimonials-stat-card__value {
    font-size: 22px;
  }

  .testimonials-stat-card {
    padding: 15px;
  }
  .reviews-title {
    font-size: 24px;
  }

  .review-card {
    padding: 24px;
  }

  .review-card__text {
    font-size: 14px;
  }
  .photo-gallery-title {
    font-size: 24px;
  }

  .photo-gallery-grid {
    grid-template-rows: repeat(6, 250px);
    gap: 12px;
  }

  .photo-gallery-item__caption {
    padding: 16px;
    font-size: 13px;
  }

  .video-testimonials-title {
    font-size: 24px;
  }

  .video-card__play svg {
    width: 50px;
    height: 50px;
  }

  .video-card__quality,
  .video-card__duration {
    font-size: 11px;
    padding: 3px 8px;
  }

  .google-reviews-title {
    font-size: 24px;
  }

  .google-reviews-rating {
    flex-wrap: wrap;
  }

  .google-reviews-rating__value {
    font-size: 24px;
  }

  .google-review-card__header {
    flex-wrap: wrap;
  }

  .google-review-card__rating {
    order: 3;
    width: 100%;
    margin-top: 8px;
  }

  .review-contact-wrapper {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .review-contact-title {
    font-size: 24px;
  }

  .review-contact-description {
    font-size: 13px;
  }

  .review-contact-form-card {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .review-contact-form__input,
  .review-contact-form__textarea {
    padding: 14px 16px;
    font-size: 14px;
  }

  .review-contact-form__submit {
    padding: 16px;
    font-size: 15px;
  }

  .seo-why-choose-content {
    padding: 24px 20px;
    max-height: 350px;
  }

  .seo-why-choose-title {
    font-size: 24px;
  }

  .seo-why-choose-toggle {
    padding: 14px 24px;
    font-size: 14px;
  }

  .video-testimonials-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }

  .review-contact-info {
    flex-direction: column;
    align-items: center;
  }

  .review-contact-form__row {
    grid-template-columns: 1fr;
    gap: 0px;
    margin-bottom: 0;
  }
  .review-contact-form__label,
  .review-contact-form__label,
  .review-contact-form__label {
    display: none;
  }
}
