/*==================================================
        PRICING SECTION
==================================================*/

.pricing {
  padding: 100px 0;

  background: linear-gradient(180deg, #fff 0%, #fff8fb 100%);

  position: relative;

  overflow: hidden;
}


/* Decorative Blobs */

.pricing::before {
  content: "";

  position: absolute;

  width: 350px;

  height: 350px;

  background: rgba(212, 165, 116, 0.08);

  border-radius: 50%;

  top: -120px;

  right: -120px;
}

.pricing::after {
  content: "";

  position: absolute;

  width: 280px;

  height: 280px;

  background: rgba(201, 23, 82, 0.05);

  border-radius: 50%;

  bottom: -100px;

  left: -100px;
}

/*==================================================
        PRICING CARD
==================================================*/

.pricing-card {
  position: relative;

  background:transparent;

  border-radius: 18px;

  overflow: hidden;

  transition: 0.4s ease;

  border:1px solid rgba(212,165,116,.15);

    box-shadow:0 12px 30px rgba(0,0,0,.06);

  height: 100%;
}




.pricing-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
  border: 2px solid #d4a574;
}

/*==================================================
        IMAGE
==================================================*/

.pricing-image {
  position: relative;

  overflow: hidden;

  height: 200px;
}

.pricing-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.5s;
}

.pricing-card:hover .pricing-image img {
  transform: scale(1.08);
}

/* Overlay */

.pricing-image::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    to top,

    rgba(0, 0, 0, 0.45),
    transparent
  );

  z-index: 1;
}

/*==================================================
        BADGE
==================================================*/

.pricing-badge {
  
   padding:6px 12px;

    font-size:11px;
    position: absolute;

  top: 18px;

  left: 18px;

  z-index: 5;

  background: linear-gradient(135deg, #c91752, #d4a574);

  color: #fff;

  

  border-radius: 40px;

  

  font-weight: 600;

  letter-spacing: 0.5px;

  text-transform: uppercase;
}

/*==================================================
        CONTENT
==================================================*/

.pricing-content {
  padding: 22px;

  text-align: center;

  background:#ffffff;

    border-top:1px solid rgba(212,165,116,.12);

    padding:22px;
}



.pricing-content h3 {
  font-size: 24px;

  font-weight: 700;

  margin-bottom: 10px;

  color: #2b1810;
}

.price {
  padding: 8px 18px;

  font-size: 16px;

  margin-bottom: 18px;
  display: inline-block;

  background: #fff2f5;

  color: #c91752;

  border-radius: 40px;

  font-weight: 700;
}

.pricing-content ul {
  list-style: none;

  padding: 0;

  margin: 0 0 25px;
}

.pricing-content li {
   padding:6px 0;

  font-size:14px;

  color: #666;

  border-bottom: 1px dashed #ececec;
}

.pricing-content li:last-child {
  border: none;
}

/*==================================================
        ICON
==================================================*/

.pricing-icon {
  width: 70px;

  height: 70px;

  border-radius: 50%;

  margin: -55px auto 18px;

  position: relative;

  z-index: 3;

  display: flex;

  justify-content: center;

  align-items: center;

  background: linear-gradient(135deg, #d4a574, #f7d487);

  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.pricing-icon i {
  font-size: 28px;

  color: #c91752;
}

/*==================================================
        BUTTON
==================================================*/

.pricing-btn {
  width: 100%;

  margin-top: 20px;

  padding: 14px;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.35s;
}

.pricing-btn:hover {
  transform: translateY(-3px);
}

.featured .pricing-btn {
  background: #fff;

  color: #c91752;
}

.featured .pricing-btn:hover {
  background: #f8f8f8;
}

/*==================================================
        SWIPER
==================================================*/

.pricingSwiper {
  padding-bottom: 70px;
}

.pricing-prev,
.pricing-next {
  color: #c91752;
}

.pricing-pagination .swiper-pagination-bullet {
  width: 12px;

  height: 12px;
}

.pricing-pagination .swiper-pagination-bullet-active {
  background: #c91752;
}

/*==================================================
        PRICING MODAL
==================================================*/

.pricing-modal {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.75);

  backdrop-filter: blur(8px);

  display: flex;

  justify-content: center;

  align-items: center;

  padding: 25px;

  opacity: 0;

  visibility: hidden;

  transition: 0.35s ease;

  z-index: 99999;
}

.pricing-modal.show {
  opacity: 1;

  visibility: visible;
}

/*==========================================
        MODAL BOX
==========================================*/

.pricing-modal-content {
  position: relative;

  width: 95%;

  max-width: 1200px;

  max-height: 90vh;

  background: #fff;

  border-radius: 25px;

  overflow: hidden;

  display: grid;

  grid-template-columns: 38% 62%;
}

.pricing-modal.show .pricing-modal-content {
  transform: translateY(0) scale(1);
}

/*==========================================
        IMAGE
==========================================*/

.pricing-modal-left {
  display: flex;

  align-items: center;

  justify-content: center;

  background: #faf7f5;
}

.pricing-modal-left img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

/*==========================================
        CONTENT
==========================================*/

.pricing-modal-right {
  padding: 35px;

  overflow-y: auto;

  max-height: 90vh;

  scrollbar-width: thin;
}

.pricing-modal-right::-webkit-scrollbar {
  width: 8px;
}

.pricing-modal-right::-webkit-scrollbar-thumb {
  background: #d4a574;

  border-radius: 20px;
}

/*==========================================
        BADGE
==========================================*/

.pricing-modal-badge {
  display: inline-flex;

  align-items: center;

  padding: 8px 18px;

  border-radius: 50px;

  background: linear-gradient(135deg, #c91752, #d4a574);

  color: #fff;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 1px;

  text-transform: uppercase;

  margin-bottom: 18px;
}

/*==========================================
        TITLE
==========================================*/

.pricing-modal-right h2 {
  font-size: 38px;

  font-weight: 700;

  margin-bottom: 10px;

  color: #2b1810;
}

.pricing-modal-right p {
  color: #666;

  line-height: 1.8;

  margin-bottom: 30px;
}

/*==================================================
        SEARCH
==================================================*/

.pricing-search {
  position: relative;

  margin-bottom: 30px;
}

.pricing-search i {
  position: absolute;

  left: 18px;

  top: 50%;

  transform: translateY(-50%);

  color: #c91752;
}

.pricing-search input {
  width: 100%;

  height: 55px;

  border: 2px solid #ececec;

  border-radius: 50px;

  padding-left: 52px;

  padding-right: 20px;

  font-size: 15px;

  transition: 0.3s;

  outline: none;
}

.pricing-search input:focus {
  border-color: #c91752;

  box-shadow: 0 0 0 4px rgba(201, 23, 82, 0.08);
}

/*==================================================
        TABLE
==================================================*/

.pricing-section-box {
  margin-bottom: 35px;
}

.pricing-section-box h4 {
  font-size: 22px;

  margin-bottom: 15px;

  color: #c91752;

  border-left: 5px solid #d4a574;

  padding-left: 12px;
}

.pricing-table {
  width: 100%;

  border-collapse: collapse;

  background: #fff;

  border-radius: 15px;

  overflow: hidden;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.pricing-table thead {
  background: #faf7f5;
}

.pricing-table th {
  padding: 15px;

  text-align: left;

  font-weight: 700;
}

.pricing-table td {
  padding: 14px 15px;

  border-bottom: 1px solid #f2f2f2;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table td:last-child {
  text-align: right;

  color: #c91752;

  font-weight: 700;
}

/*==================================================
        NOTE
==================================================*/

.pricing-note {
  margin-top: 30px;

  padding: 18px;

  border-radius: 15px;

  background: #fff6ec;

  border-left: 5px solid #d4a574;

  color: #555;
}

.pricing-note i {
  color: #c91752;

  margin-right: 8px;
}

/*==================================================
        FOOTER
==================================================*/

.pricing-footer {
  margin-top: 30px;

  display: flex;

  gap: 15px;

  flex-wrap: wrap;
}

.pricing-footer .btn {
  flex: 1;

  border-radius: 50px;

  padding: 14px;

  font-weight: 600;
}

/*==================================================
        CLOSE BUTTON
==================================================*/

.pricing-close {
  position: absolute;

  right: 20px;

  top: 20px;

  width: 46px;

  height: 46px;

  border: none;

  border-radius: 50%;

  background: #fff;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);

  cursor: pointer;

  z-index: 100;

  transition: 0.3s;
}

.pricing-close:hover {
  background: #c91752;

  color: #fff;

  transform: rotate(90deg);
}

/*==================================================
        EMPTY
==================================================*/

.pricing-empty {
  text-align: center;

  padding: 60px 20px;

  color: #999;
}

.pricing-empty i {
  font-size: 48px;

  color: #d4a574;

  margin-bottom: 20px;
}

/*==================================================
        RESPONSIVE
==================================================*/

@media (max-width: 991px) {
  .pricing-modal-content {
    grid-template-columns: 1fr;

    max-height: 95vh;
  }

  .pricing-modal-left {
    height: 260px;
  }

  .pricing-modal-right {
    padding: 30px;
  }

  .pricing-footer {
    flex-direction: column;

    position: static;
  }
}

@media (max-width: 768px) {
  .pricing-modal {
    padding: 12px;
  }

  .pricing-modal-right {
    padding: 22px;
  }

  .pricing-modal-right h2 {
    font-size: 28px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 10px;

    font-size: 14px;
  }

  .pricing-section-box h4 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .pricing-modal-left {
    height: 190px;
  }

  .pricing-modal-right {
    padding: 18px;
  }

  .pricing-search input {
    height: 48px;
  }

  .pricing-modal-right h2 {
    font-size: 24px;
  }

  .pricing-footer .btn {
    width: 100%;
  }
}

.pricing-accordion {
  border: 1px solid #eee;

  border-radius: 15px;

  margin-bottom: 20px;

  overflow: hidden;
}

.pricing-accordion-header {
  width: 100%;

  background: #faf7f5;

  border: none;

  padding: 18px;

  display: flex;

  justify-content: space-between;

  cursor: pointer;

  font-weight: 600;
}

.pricing-accordion-body {
  display: none;

  padding: 20px;
}

.pricing-accordion.active .pricing-accordion-body {
  display: block;
}

.pricing-accordion.active i {
  transform: rotate(180deg);
}

.highlight {
  background: #fff3c6;

  color: #c91752;

  padding: 2px 4px;

  border-radius: 4px;
}

.pricing-section-box {
  animation: fadeIn 0.4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;

    transform: translateY(20px);
  }

  to {
    opacity: 1;

    transform: none;
  }
}

.pricing-table tr:hover {
  background: #fff8f3;

  transform: scale(1.01);
}

@media (max-width: 991px) {
  .pricing-modal {
    padding: 15px;
  }

  .pricing-modal-content {
    grid-template-columns: 1fr;

    max-height: 95vh;
  }

  .pricing-modal-left {
    height: 220px;
  }

  .pricing-modal-right {
    max-height: calc(95vh - 220px);

    overflow-y: auto;
  }
}

@media (max-width: 576px) {
  .pricing-modal-content {
    width: 100%;

    max-height: 98vh;

    border-radius: 15px;
  }

  .pricing-modal-left {
    height: 180px;
  }

  .pricing-modal-right {
    padding: 20px;

    max-height: calc(98vh - 180px);
  }
}

.pricing-table {
  font-size: 15px;
}

.pricing-table td {
  padding: 10px 12px;
}

/*=====================================
    LUXURY PRICING BUTTON
=====================================*/

.luxury-btn {

     height:46px;

    font-size:15px;
  position: relative;

  width: 100%;

  

  border: none;

  border-radius: 50px;

  cursor: pointer;

  overflow: hidden;

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 12px;

 
  font-weight: 600;

  letter-spacing: 0.5px;

  color: #fff;

  background: linear-gradient(135deg, #c91752, #d4a574);

  transition: 0.4s ease;

  box-shadow: 0 12px 30px rgba(201, 23, 82, 0.3);
}

.luxury-btn span {
  position: relative;

  z-index: 2;
}

.luxury-btn i {
  position: relative;

  z-index: 2;

  transition: 0.35s;
}

.luxury-btn::before {
  content: "";

  position: absolute;

  left: -120%;

  top: 0;

  width: 100%;

  height: 100%;

  background: rgba(255, 255, 255, 0.18);

  transform: skewX(-25deg);

  transition: 0.6s;
}

.luxury-btn:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 40px rgba(201, 23, 82, 0.4);
}

.luxury-btn:hover::before {
  left: 130%;
}

.luxury-btn:hover i {
  transform: translateX(6px);
}

.luxury-btn:active {
  transform: scale(0.98);
}

.pricing-card.featured .luxury-btn {
  background: linear-gradient(135deg, #ffffff, #f5e6c4);

  color: #c91752;
}

.pricing-card.featured .luxury-btn i {
  color: #c91752;
}

@media (max-width: 768px) {
  .luxury-btn {
    height: 50px;

    font-size: 15px;
  }
}
.pricing-card{

    display:flex;

    flex-direction:column;

}

.pricing-content{

    display:flex;

    flex-direction:column;

    flex:1;

}

.pricing-content ul{

    flex:1;

}

.pricing-btn{

    margin-top:auto;

}
