/* Alt Services Page */
.services-page-alt {
  padding-bottom: 100px;
  background: #F8FAFC;
  font-family: 'Inter', sans-serif;
}

/* Hero */
.services-hero {
  text-align: center;
  padding: 90px 0 70px;
  max-width: 850px;
}

.services-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.services-hero p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.7;
}

/* Service Blocks */
.service-block {
  padding: 70px 0;
}

.service-block:nth-child(even) {
  background: #FFFFFF;
}

.service-inner {
  display: flex;
  gap: 60px;
  align-items: center;
}

.service-block.reverse .service-inner {
  flex-direction: row-reverse;
}

/* Text */
.service-text {
  flex: 1;
}

.service-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-text p {
  font-size: 1rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-text ul {
  padding-left: 18px;
}

.service-text ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Image */
.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* CTA */
.services-cta {
  text-align: center;
  padding: 90px 20px;
  background: linear-gradient(135deg, #0A2540, #0F3C6E);
  color: #FFFFFF;
}

.services-cta h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.services-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive */
@media (max-width: 1199px) {
  .service-inner {
    flex-direction: column;
  }

  .service-block.reverse .service-inner {
    flex-direction: column;
  }

  .services-hero h1 {
    font-size: 2.2rem;
  }
}

.packages-highlight {
  padding: 90px 0;
  background: linear-gradient(135deg, #F0F9FF, #E0F2FE);
  text-align: center;
}

.packages-content {
  max-width: 700px;
  margin: 0 auto;
}

.packages-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.packages-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 30px;
}


.gift-voucher-highlight {
  padding: 100px 0;
  background: #FFFFFF;
}

.gift-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.gift-text {
  flex: 1;
}

.gift-text h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.gift-text p {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 15px;
}

.gift-note {
  font-weight: 600;
  color: #0EA5E9;
}

/* Image */
.gift-image {
  flex: 1;
}

.gift-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 1199px) {
  .gift-inner {
    flex-direction: column;
  }

  .gift-text h2 {
    font-size: 2rem;
  }
}

.gift-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 34px;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  border: 2px solid #38BDF8;
  border-radius: 50px;
  text-decoration: none;
  background: transparent;
  transition: all 0.3s ease;
}

.gift-btn-outline:hover {
  background: #38BDF8;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .services-hero {
    padding: 45px 0px;
  }

  .service-block, .packages-highlight, .gift-voucher-highlight {
    padding: 50px 0px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1199px) {
  .services-hero.container {
    padding-left: 45px;
    padding-right: 45px;
  }
}