
:root {
    --pasa-blue:#2E8BC0;
    --pasa-hover:#333;
    --pasa-grey:#444;
    --pasa-orange:#f59e0b;
    --pasa-border:#e5e7eb;
    
  }
/* --------------- SECTION ---- */
.phw-amenities-container{
    max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
.phw-amenities-header {
  padding-bottom: 64px;
  padding-top: 20px;
  margin-top: 5rem;
}

/* ======= BACK LINK === */
.phw-back-link-wrapper {
  margin-bottom: 48px;
}

.phw-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pasa-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
 
}

.phw-back-link:hover {
  color: #57b3e9;
}

.phw-back-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ==== CENTER CONTENT ===== */
.phw-amenities-center {
  text-align: center;
  max-width: 900px;
  margin: auto;
  padding: 0 16px;
}

/* ====== BADGE ====== */
.phw-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--pasa-blue);
   background-color: rgb(184, 210, 231);
  border-radius: 999px;
  margin-bottom: 16px;
}
.phw-badge:hover{
  background-color: var(--pasa-grey);
}

.phw-badge svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ======= TITLE ===== */
.phw-amenities-title {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  margin-bottom: 16px;
  color: #111827;
}

/* ====== DESCRIPTION ===== */
.phw-amenities-description {
  font-size: 18px;
  line-height: 1.7;
  color: black;
  max-width: 720px;
  margin: auto;
}

/* ======= RESPONSIVE== */
@media (max-width: 600px) {
  .phw-back-link-wrapper {
    margin-bottom: 32px;
  }

  .phw-amenities-description {
    font-size: 16px;
  }
}

/* ===============================
   Section & Container
================================ */
.amenities-section {
  padding: 5px 0;
  background: #fafafa;
}

.amenities-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

/* ===============================
   Card Layout
================================ */
.amenity-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .amenity-card {
    flex-direction: row;
  }
  .amenity-reverse {
    flex-direction: row-reverse;
  }
}

/* ===============================
   Image
================================ */
.amenity-image {
  width: 100%;
  min-height: 300px;
}

.amenity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   Content
================================ */
.amenity-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.amenity-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.amenity-title-row h2 {
  font-size: 1.75rem;
}
.amenity-content p {
  font-size: 1.20rem;
}

/* ===============================
   Icon
================================ */
.amenity-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2563eb1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
   List
================================ */
.amenity-list {
  list-style-type: disc;        
  list-style-position: inside;  
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1rem;
  padding-left: 0;
  margin-top: 1rem;
}

.amenity-list li {
  font-size: 1rem;
  color: black;
}

/* ===============================
   SVG 
================================ */
.amenities-section svg {
  width: 22px;
  height: 22px;
  stroke: var(--pasa-blue);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}


/* Section */
#shine-shop-section {
  padding: 15px 20px;
}

/* Container */
.shine-container {
  max-width: 1200px;
  margin: 0 auto;
}

.shine-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}


.shine-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 260px;
  background: rgba(99, 102, 241, 0.12);
  border-radius: 50%;
  filter: blur(60px);
  transform: translate(50%, -50%);
}


.shine-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: auto;
  text-align: center;
}


.shine-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(110, 110, 110, 0.12);
  color: var(--pasa-grey);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}


.shine-badge-icon {
  width: 16px;
  height: 16px;
}


.shine-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111827;
}

.shine-text {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
}

.shine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}


.shine-item {
  background: rgba(177, 177, 182, 0.8);
  border-radius: 14px;
  padding: 16px;
  font-weight: 500;
  color: #111827;
}

/* Responsive */
@media (min-width: 768px) {
  .shine-title {
    font-size: 40px;
  }

  .shine-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .shine-card {
    padding: 48px;
  }
}

/* Section */
#cta-experience-section {
  padding: 40px 20px;
}


.cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-card {
  background: var(--pasa-blue);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}


.cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}


.cta-text {
  max-width: 640px;
  margin: 0 auto 24px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.cta-button-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}


.cta-btn {
  min-width: 200px;
  height: 44px;
  padding: 0 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Secondary Button */
.cta-btn-secondary {
  background:var(--pasa-hover) ;
  color: #fff;
  border:  1px solid var(--pasa-hover);
}

.cta-btn-secondary:hover {
  background: var(--pasa-grey);
}

/* Outline Button */
.cta-btn-outline {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.cta-btn-outline:hover {
  background: transparent;
}


.cta-btn svg {
  width: 16px;
  height: 16px;
}

/* Responsive */
@media (min-width: 640px) {
  .cta-button-group {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 32px;
  }

  .cta-card {
    padding: 48px;
  }
}

