/* style/reviews-xs66-customer-service.css */

/* Variables */
:root {
  --page-reviews-xs66-customer-service-primary-color: #0A2463;
  --page-reviews-xs66-customer-service-secondary-color: #FFD700;
  --page-reviews-xs66-customer-service-text-dark: #333;
  --page-reviews-xs66-customer-service-text-light: #fff;
  --page-reviews-xs66-customer-service-bg-light: #f9f9f9;
  --page-reviews-xs66-customer-service-border-color: #e0e0e0;
}

.page-reviews-xs66-customer-service {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-reviews-xs66-customer-service-text-dark);
  background-color: var(--page-reviews-xs66-customer-service-bg-light);
}

.page-reviews-xs66-customer-service a {
  color: var(--page-reviews-xs66-customer-service-primary-color);
  text-decoration: none;
}

.page-reviews-xs66-customer-service a:hover {
  text-decoration: underline;
  color: var(--page-reviews-xs66-customer-service-secondary-color);
}

.page-reviews-xs66-customer-service__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-reviews-xs66-customer-service__hero {
  background: linear-gradient(135deg, var(--page-reviews-xs66-customer-service-primary-color) 0%, #3a5c9f 100%);
  color: var(--page-reviews-xs66-customer-service-text-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-reviews-xs66-customer-service__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,blue_gold_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-reviews-xs66-customer-service__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--page-reviews-xs66-customer-service-secondary-color);
  position: relative;
  z-index: 1;
}

.page-reviews-xs66-customer-service__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-reviews-xs66-customer-service__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--page-reviews-xs66-customer-service-border-color);
}

.page-reviews-xs66-customer-service__section:last-of-type {
  border-bottom: none;
}

.page-reviews-xs66-customer-service__section-title {
  font-size: 2.5em;
  color: var(--page-reviews-xs66-customer-service-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-reviews-xs66-customer-service__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--page-reviews-xs66-customer-service-secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-reviews-xs66-customer-service__intro p,
.page-reviews-xs66-customer-service__performance p,
.page-reviews-xs66-customer-service__quality p,
.page-reviews-xs66-customer-service__experience p,
.page-reviews-xs66-customer-service__tips p,
.page-reviews-xs66-customer-service__conclusion p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-reviews-xs66-customer-service__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-reviews-xs66-customer-service__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-reviews-xs66-customer-service__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-reviews-xs66-customer-service__card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-reviews-xs66-customer-service__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-reviews-xs66-customer-service__card-title {
  font-size: 1.6em;
  color: var(--page-reviews-xs66-customer-service-primary-color);
  margin-bottom: 15px;
}

.page-reviews-xs66-customer-service__card p {
  font-size: 1em;
  color: var(--page-reviews-xs66-customer-service-text-dark);
  margin-bottom: 20px;
  text-align: center;
}

.page-reviews-xs66-customer-service__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.page-reviews-xs66-customer-service__list li {
  background: #fff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid var(--page-reviews-xs66-customer-service-secondary-color);
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
}

.page-reviews-xs66-customer-service__list li strong {
  color: var(--page-reviews-xs66-customer-service-primary-color);
}

.page-reviews-xs66-customer-service__quote {
  background-color: #e8f0f9;
  border-left: 5px solid var(--page-reviews-xs66-customer-service-primary-color);
  padding: 20px 30px;
  margin: 40px auto;
  font-style: italic;
  color: var(--page-reviews-xs66-customer-service-primary-color);
  max-width: 800px;
  border-radius: 0 8px 8px 0;
}

.page-reviews-xs66-customer-service__quote p {
  margin-bottom: 10px;
  font-size: 1.1em;
  text-align: left;
}

.page-reviews-xs66-customer-service__quote cite {
  display: block;
  text-align: right;
  font-style: normal;
  font-weight: bold;
  color: var(--page-reviews-xs66-customer-service-secondary-color);
}

.page-reviews-xs66-customer-service__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
  font-size: 1em;
}

.page-reviews-xs66-customer-service__btn--primary {
  background-color: var(--page-reviews-xs66-customer-service-secondary-color);
  color: var(--page-reviews-xs66-customer-service-primary-color);
}

.page-reviews-xs66-customer-service__btn--primary:hover {
  background-color: #e6c200;
  color: var(--page-reviews-xs66-customer-service-primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-reviews-xs66-customer-service__btn--secondary {
  background-color: var(--page-reviews-xs66-customer-service-primary-color);
  color: var(--page-reviews-xs66-customer-service-text-light);
  border: 1px solid var(--page-reviews-xs66-customer-service-primary-color);
}

.page-reviews-xs66-customer-service__btn--secondary:hover {
  background-color: #071a47;
  color: var(--page-reviews-xs66-customer-service-secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-reviews-xs66-customer-service__cta-group {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-reviews-xs66-customer-service__hero-title {
    font-size: 2.5em;
  }

  .page-reviews-xs66-customer-service__hero-subtitle {
    font-size: 1.1em;
  }

  .page-reviews-xs66-customer-service__section-title {
    font-size: 2em;
  }

  .page-reviews-xs66-customer-service__grid {
    grid-template-columns: 1fr;
  }

  .page-reviews-xs66-customer-service__card {
    padding: 20px;
  }

  .page-reviews-xs66-customer-service__cta-group {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-reviews-xs66-customer-service__hero-title {
    font-size: 2em;
  }

  .page-reviews-xs66-customer-service__hero-subtitle {
    font-size: 1em;
  }

  .page-reviews-xs66-customer-service__section-title {
    font-size: 1.8em;
  }

  .page-reviews-xs66-customer-service__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-reviews-xs66-customer-service__quote {
    padding: 15px 20px;
  }

  .page-reviews-xs66-customer-service__intro p,
  .page-reviews-xs66-customer-service__performance p,
  .page-reviews-xs66-customer-service__quality p,
  .page-reviews-xs66-customer-service__experience p,
  .page-reviews-xs66-customer-service__tips p,
  .page-reviews-xs66-customer-service__conclusion p {
    font-size: 0.95em;
  }
}