/* ===== GLOBAL PAGE ===== */
.no-scroll {
  overflow: hidden;
  height: 100vh;
}
.serviceBackdrop {
  position: fixed;
  inset: 0;
  background-color: #555;
  z-index: 5000;
  background-color: rgba(0, 0, 0, 0.5);
  display: none
}
.serviceBackdrop.active {
  display: block;
}
#serviceForm {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  opacity: 1;
  width: 40%;
  max-width: 600px;
  display:none;
}
#serviceForm.active {
  display: block;
}
.corssButton {
  position: absolute;
  top: -15px;
  right: -15px;
}
.corssButton img {
  height: 50px;
  width: 50px;
}
.pricing-page {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.page-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 8px;
}

.page-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}

/* ===== SECTION HEADINGS ===== */
.section-title {
  font-size: 28px;
  margin: 60px 0 20px;
}

/* ===== GRID ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* ===== CARD ===== */
.pricing-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 24px;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.price {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ===== LIST ===== */
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.pricing-card ul li {
  margin-bottom: 8px;
  color: #555;
  font-size: 14px;
}

/* ===== POPULAR CARD ===== */
.pricing-card.popular {
  border-color: #c4ac57;
}

.badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: #c4ac57;
  color: #fff;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 20px;
}

/* ===== CUSTOM CARD ===== */
.pricing-card.custom {
  border-style: dashed;
  background: #fafafa;
}

.custom-price {
  font-size: 18px;
  font-weight: 500;
  color: #666;
}

/* ===== ACTION BUTTONS ===== */
.actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.actions.single {
  justify-content: center;
}

.actions.single .enquire {
  width: 100%;
}

/* ===== BUTTONS ===== */
.buy {
  flex: 1;
  background: #c4ac57;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

.buy:hover {
  opacity: 0.9;
}

.enquire {
  flex: 1;
  background: transparent;
  border: 1px solid #c4ac57;
  color: #c4ac57;
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

.enquire:hover {
  background: rgba(196, 172, 87, 0.12);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .page-title {
    font-size: 30px;
  }

  .section-title {
    font-size: 24px;
  }
  #serviceForm {
    width: 80%;
  }
}

/* /////////////////Flag Icon//////////// currency selector///// */
.currency-select-wrapper {
  position: absolute;
  top: 2px;
  right: 5px;
  padding: 10px;
}

.currency-select {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  cursor: pointer;
  background-color: #c4ac57;
  color: white;
  font: bold;
}

.currency-select:focus {
  outline: none;
  border-color: #666;
  box-shadow: 0 0 0 2px rgba(196, 172, 87, 0.2);
}
