/* Services Introduction */
.services-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.services-overview-text p {
  margin-bottom: 24px;
}

.services-overview-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--box-shadow);
}

.services-overview-image img {
  transition: transform 0.5s ease;
}

.services-overview-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .services-overview {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Service Highlight */
.service-highlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-highlight-inner.reverse {
  direction: rtl;
}

.service-highlight-inner.reverse > * {
  direction: ltr;
}

.service-highlight-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--box-shadow);
}

.service-highlight-image img {
  width: 100%;
  transition: transform 0.5s ease;
}

.service-highlight-image:hover img {
  transform: scale(1.05);
}

.service-highlight-content h2 {
  margin-bottom: 16px;
}

.service-highlight-content p {
  margin-bottom: 24px;
}

.service-highlight-content h2 span {
  color: var(--crimson-red);
}

.feature-list {
  margin: 24px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.feature-list li i {
  color: var(--crimson-red);
  margin-right: 12px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .service-highlight-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .service-highlight-inner.reverse {
    direction: ltr;
  }
}

/* Additional Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-box {
  background-color: var(--pearl-white);
  border-radius: 4px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-speed) ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-box:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--warm-taupe);
  opacity: 0.1;
  transition: height 0.3s ease;
  z-index: -1;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.service-box:hover:before {
  height: 100%;
}

.service-box-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(179, 139, 109, 0.1);
  border-radius: 50%;
  margin: 0 auto 16px;
}

.service-box-icon i {
  font-size: 1.5rem;
  color: var(--warm-taupe);
}

.service-box h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.service-box p {
  margin-bottom: 0;
  color: var(--medium-gray);
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* VIP Program */
.vip-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.vip-text h2 {
  color: var(--pearl-white);
  margin-bottom: 16px;
}

.vip-text h2 span {
  color: var(--warm-taupe);
}

.vip-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.vip-benefits {
  margin: 24px 0;
}

.vip-benefits li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.vip-benefits li i {
  color: var(--warm-taupe);
  margin-right: 12px;
  margin-top: 4px;
}

.vip-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.vip-image img {
  transition: transform 0.5s ease;
}

.vip-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .vip-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* CTA Section */
.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--pearl-white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 576px) {
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
}