/* Home Page */
@import url('https://fonts.googleapis.com/css2?family=Anybody:ital,wght@0,100..900;1,100..900&family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

:root {
    --body-font: "Anybody", sans-serif;
    --heading-font: "Bricolage Grotesque", sans-serif;
    --banner-font: "Bricolage Grotesque", serif;
    --Theme-solid:#EC257F;
    --primary-pink:linear-gradient(180deg,rgba(233, 30, 99, 0.06) 0%, rgba(233, 30, 99, 1) 70%);
    --gradient-dark: linear-gradient(180deg,rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 1) 70%);
    
}
h2 {
    color: rgb(var(--base));
}
.navbar-brand.logo img {
        border-radius: 0px 0px 90px 90px;
        /* -webkit-box-shadow: 0px 8px 15px -11px rgba(49,49,49,0.6); 
        box-shadow: 0px 8px 15px -11px rgba(49,49,49,0.6); */
    }
    .nav-menu .nav-item {
      margin: 0 20px;
  }
  .navbar-toggler.header-button {
    margin: 15px 0px;
}
.hero__content-title {
  font-size: 45px;
}
.social-icon {
    border: 1px solid hsl(var(--white));
    color: hsl(var(--white));
}
.social-icon:hover {
    color: hsl(var(--white));
    background: var(--dark-color);
    border: 1px solid var(--dark-color);
}
.aboutus-heading{
  color: rgb(var(--base));
}

.more-about-section {
    position: relative;
    isolation: isolate;
    background-image: url(../images/work-process-img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.more-about-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #000000a8;
    z-index: -1;
}
.header-top {
    border-bottom: 0px solid var(--border-color);
    background: var(--linear-bg);
    /* border-bottom: 1px solid var(--border-color); */
}
.header-top__para {
    color: hsl(var(--white)) !important;
}
.social-icons__link {
    font-size: 12px;
    color: hsl(var(--white));
}
.more-process {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: hsl(var(--white));
    padding: 20px;
    border-radius: 15px;
}
.more-process__content {
    flex: 1;
}
.more-process {
  position: relative;
  display: inline-block;
  width: 100%;
}
.more-process img {
  transition: opacity 0.3s ease;
  width: 55px;
}
.more-process img.white-version {
  position: absolute;
  left: 41%;
  opacity: 0;
}
.more-process:hover img.white-version {
  opacity: 1;
}
.more-process:hover h5,.more-process:hover p {
  color: hsl(var(--white));
}
.more-process:hover{background: var(--linear-bg);}
  @media (max-width: 991px) {
      .more-process {
        flex-direction: row;
    }
  }
/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}




.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #d1d1d1;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}




.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}



.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}


.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background-color: rgb(var(--base));
  border-radius: 5px;
  border: 0;
  margin-bottom: 0px;
  color: #fff;
  margin-top: 0px !important;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #cccccf59;
  --hover-border-color: rgb(var(--base));
  background-color: #fff;
  border-radius: 5px;
  height: 100%;

}


.payment-system-list.is-scrollable {
  max-height: min(388px, 70vh);
  overflow-x: auto;
  padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;

}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: rgb(var(--base));
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  border: 1px solid #fff;
  border-top-color: var(--border-color);
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.payment-item:first-child {
  border-top-color: #fff;
  border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid var(--hover-border-color);
  border-radius: 0px;
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid rgb(var(--base));
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width))
}

.payment-item__check {
  width: var(--radio-size);
  height: var(--radio-size);
  border: 1px solid rgb(var(--base));
  display: inline-block;
  border-radius: 100%;

}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
}

.payment-item__thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  text-align: right;
  padding-left: 10px;

  &:has(.text) {
      width: fit-content;
  }
}

.payment-item__thumb img {
  max-width: var(--thumb-width);
  max-height: var(--thumb-height);
  object-fit: cover;
}


.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.deposit-info__title {
  max-width: 50%;
  margin-bottom: 0px;
  text-align: left;
}

.deposit-info__input {
  max-width: 50%;
  text-align: right;
  width: 100%;
}

.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border: 1px solid var(--border-color);
  border-radius: 5px;

  .deposit-info__input-group-text {
      align-self: center;
      padding-left: 5px;
  }

}

.deposit-info__input-group .form--control {
  padding: 5px;
  border: 0;
  height: 35px;
  text-align: right;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
  font-size: 14px;

}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px
}

.total-amount {
  border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid var(--border-color);
  border-bottom: 0;
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 500;
}

.payment-item:hover+.payment-item__btn {
  border-top-color: #fff;
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: #fff;
  border-radius: 5px;
  border: 1px solid rgb(var(--base));
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}




.hover-input-popup {
  position: relative;
  z-index: 999;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}



.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}


.maintenance-page {
  display: grid;
  place-content: center;
  width: 100vw;
  height: 100vh;
}

.language-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 8px;
  border-radius: 4px;
  width: max-content;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.language_flag {
  flex-shrink: 0;
  display: flex;
}

.language_flag img {
  height: 20px;
  width: 20px;
  object-fit: cover;
  border-radius: 50%;
}

.language-wrapper.show .collapse-icon {
  transform: rotate(180deg)
}

.collapse-icon {
  font-size: 14px;
  display: flex;
  transition: all linear 0.2s;
}

.language_text_select {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  display: flex;
  line-height: 1;
}

.language-content {
  display: flex;
  align-items: center;
  gap: 6px;
}


.language_text {
  color: black;
  margin-bottom: 0px;
}

.language-list {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  cursor: pointer;
  border: 0 !important;
}

.language .dropdown-menu {
  position: absolute;
  -webkit-transition: ease-in-out 0.1s;
  transition: ease-in-out 0.1s;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  display: unset;
  background: #fff;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  min-width: 150px;
  border-radius: 8px;
  border: 1px solid rgb(0 0 0 / 10%);
  padding-block: 6px !important;
  right: 0 !important;
  left: auto !important;
}

.language .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
}

.form-control:disabled {
  background-color: #e9ecef8a;
  opacity: 1;
}

.removeFile i{
  color: hsl(var(--white));
}

/* Price Section */

.section--bg {
    background-color: rgb(var(--base), 0.08);
}
/* Pricing Cards */
.pricing-card {
    background-color: hsl(var(--white));
    border-radius: 12px;
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

/* Featured Card (Diamond) */
.featured-card {
    border: 2px solid  rgb(var(--base));
    box-shadow: 0 8px 40px rgba(233, 30, 99, 0.25), 0 0 0 1px rgba(233, 30, 99, 0.1);
    /* transform: scale(1.08); */
    z-index: 10;
}

/* .featured-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 6px;
    background: linear-gradient(90deg,  rgb(var(--base)), #FF69B4,  rgb(var(--base)));
    border-radius: 12px 12px 0 0;
    z-index: 1;
} */

.featured-card:hover {
    transform: scale(1.02) translateY(-3px);
    box-shadow: 0 12px 50px rgba(233, 30, 99, 0.3), 0 0 0 1px rgba(233, 30, 99, 0.15);
}

/* Plan Title */
.plan-title {
    color:  rgb(var(--base));
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: -0.3px;
}

/* Plan Description */
.plan-description {
    color: var(--dark-gray);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 400;
}

/* Price Display */
.price-display {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: baseline;
}



/* Buttons */
.get-started-btn {
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
    border-width: 0px;
    letter-spacing: 0.3px;
}

.btn-outline-primary {
    border-color:  rgb(var(--base));
    color:  rgb(var(--base));
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color:  rgb(var(--base));
    border-color:  rgb(var(--base));
    color: var(--white);
}

.btn-primary {
    background-color:  rgb(var(--base));
    border-color:  rgb(var(--base));
    color: var(--white);
}

.btn-primary:hover {
    background-color: #C2185B;
    border-color: #C2185B;
    color: var(--white);
}

/* Explore More Button */
.explore-more-btn {
    padding: 18px 50px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.15rem;
    background-color:  rgb(var(--base));
    border-color:  rgb(var(--base));
    color: var(--white);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.explore-more-btn:hover {
    background-color: #C2185B;
    border-color: #C2185B;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

/* Features Section */
.features-section {
    margin-top: 0.5rem;
}

.features-title {
    color: var(--black);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: -0.2px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    color: var(--black);
    font-size: 1rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.checkmark {
    color:  rgb(var(--base));
    font-weight: bold;
    margin-right: 0.7rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .featured-card {
        transform: none;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .featured-card:hover {
        transform: translateY(-3px);
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .pricing-section {
        padding: 80px 0 100px 0;
    }
}

@media (max-width: 767.98px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .price {
        font-size: 3.5rem;
    }
    
    .pricing-section {
        padding: 60px 0 80px 0;
    }
    
    .explore-more-btn {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .plan-title {
        font-size: 1.6rem;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .pricing-card {
        padding: 1.8rem 1.25rem;
    }
    
    .pricing-section {
        padding: 50px 0 70px 0;
    }
    
    .explore-more-btn {
        padding: 14px 35px;
        font-size: 1rem;
    }
}
.work-process__icon {

    width: 60px;
    height: 60px;
    font-size: 20px;
}

.work-process-border {
    border: 2px solid rgb(var(--base));
}
.work-process-border:hover{box-shadow: 0 8px 40px rgba(233, 30, 99, 0.25), 0 0 0 1px rgba(233, 30, 99, 0.1);}

.How-it-work-section{
  background-repeat: no-repeat;
  background-position: 100% 50%;
}

/* What Makes Love Knots Different - content vertical middle */
.more-process.different-sec {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.more-process.different-sec .work-process__content {
  flex: none;
}

/* Story */


/* Slider Container */
.love-stories-slider {
    margin: 0 -15px;
}

/* Love Story Cards */
.love-story-card {
    padding: 0 15px;
    margin-bottom: 40px;
}

.story-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Gradient Overlay */
.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-dark);
    padding: 20px;
    color: hsl(var(--white));
    transition: all 0.3s ease;
}

.couple-names {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: hsl(var(--white));
}

.couple-location {
    font-size: 1rem;
    margin: 0;
    color: hsl(var(--white));
    opacity: 0.9;
}

/* Hover Effects */
.love-story-card:hover .story-image {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.3);
}

.love-story-card:hover .story-image img {
    transform: scale(1.05);
}

.love-story-card:hover .story-overlay {
    background: var(--primary-pink);
    padding: 25px 20px;
}

.love-story-card:hover .couple-names {
    transform: translateY(-2px);
}

.love-story-card:hover .couple-location {
    transform: translateY(-2px);
}

/* Slick Slider Customization */
.love-stories-section.slick-slider {
    position: relative;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: hsl(var(--white));
    border: none;
    color: var(--primary-pink);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slick-arrow:hover {
    background: var(--primary-pink);
    color: hsl(var(--white));
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.slick-prev {
    left: -25px;
}

.slick-next {
    right: -25px;
}

.slick-arrow:before {
    display: none;
}

/* See More Button */
.see-more-stories-btn {
    background-color: hsl(var(--white));
    color: var(--primary-pink);
    border: 2px solid hsl(var(--white));
    padding: 15px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.see-more-stories-btn:hover {
    background-color: transparent;
    color: hsl(var(--white));
    border-color: hsl(var(--white));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .love-stories-title {
        font-size: 2.5rem;
    }
    
    .slick-prev {
        left: -15px;
    }
    
    .slick-next {
        right: -15px;
    }
}

@media (max-width: 768px) {
    .love-stories-section {
        padding: 80px 0;
    }
    
    .love-stories-title {
        font-size: 2.2rem;
    }
    
    .love-stories-subtitle {
        font-size: 1.1rem;
    }
    
    .story-image {
        height: 250px;
    }
    
    .couple-names {
        font-size: 1.2rem;
    }
    
    .slick-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slick-prev {
        left: -10px;
    }
    
    .slick-next {
        right: -10px;
    }
}

@media (max-width: 480px) {
    .love-stories-section {
        padding: 60px 0;
    }
    
    .love-stories-title {
        font-size: 1.8rem;
    }
    
    .love-stories-subtitle {
        font-size: 1rem;
    }
    
    .story-image {
        height: 200px;
    }
    
    .story-overlay {
        padding: 15px;
    }
    
    .couple-names {
        font-size: 1.1rem;
    }
    
    .couple-location {
        font-size: 0.9rem;
    }
    
    .see-more-stories-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .slick-arrow {
        display: none !important;
    }
}

/* Slick Dots Customization */
.slick-dots {
    bottom: -50px;
}

.slick-dots li button:before {
    color: hsl(var(--white));
    opacity: 0.5;
    font-size: 12px;
}

.slick-dots li.slick-active button:before {
    color: var(--primary-pink);
    opacity: 1;
}

@media (max-width: 991px) {
  .footer__contact .nav-item {
      padding: 0px 0!important;
  }
}

/* ============================================================
   RESPONSIVE FIXES - Tablet (768px-1199px) & Mobile (<768px)
   ============================================================ */

/* ---- Hero / Banner Section ---- */
@media (max-width: 991px) {
    .hero {
        min-height: 70vh !important;
    }
    .hero__content {
        padding: 80px 0;
    }
    .hero-slider__item img {
        min-height: 70vh !important;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: 60vh !important;
    }
    .hero__content {
        padding: 60px 0;
    }
    .hero-slider__item img {
        min-height: 60vh !important;
    }
}

@media (max-width: 575px) {
    .hero__content {
        padding: 50px 0;
    }
    .banner-account {
        padding: 20px 15px;
    }
}

/* ---- Header on tablets ---- */
@media (max-width: 991px) {
    .navbar-brand.logo img {
        max-width: 140px;
    }
    .header-bottom .navbar {
        padding: 8px 0;
    }
}

/* ---- Body bottom padding for fixed mobile nav ---- */
@media (max-width: 991px) {
    body {
        padding-bottom: 70px;
    }
}

/* ---- About / More About / How-it-works section cards ---- */
@media (max-width: 575px) {
    .more-process {
        padding: 15px;
    }
    .more-process img {
        width: 45px;
    }
    /* keep white-version icon aligned */
    .more-process img.white-version {
        left: 35%;
    }
}

/* ---- How-it-works section: center the odd card on sm ---- */
@media (min-width: 576px) and (max-width: 991px) {
    .How-it-work-section .row > .col-sm-6:last-child:nth-child(odd) {
        margin: 0 auto;
        float: none;
    }
}

/* ---- Package / Pricing table on tablets ---- */
@media (min-width: 768px) and (max-width: 991px) {
    .package-table th,
    .package-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    .package-table .plan-title {
        font-size: 1.2rem;
    }
    .package-table .price {
        font-size: 1.2rem;
    }
    .package-table .feature-column {
        min-width: 150px;
    }
}

/* ---- Members list on tablet ---- */
@media (max-width: 991px) and (min-width: 768px) {
    .search__right .row > .col-md-4 {
        height: 200px;
        overflow: hidden;
    }
}

@media (max-width: 575px) {
    /* Stack member card image on very small screens */
    .search__right .col-md-4,
    .search__right .col-md-8 {
        width: 100%;
    }
    .search__right-thumb {
        height: 220px;
    }
    .search__right-content {
        padding: 12px;
    }
}

/* ---- Dashboard sidenav on tablets ---- */
@media (max-width: 991px) {
    .col-lg-4.col-xl-3 {
        /* sidenav column - don't take layout space when hidden */
        padding: 0;
    }
}

/* ---- Footer mobile only ---- */
@media (max-width: 767px) {
    footer .footer__title {
        text-align: left;
    }
    footer .footer__contact {
        text-align: left;
    }
    footer .footer__content .col-md-6 {
        width: 50% !important;
    }
    .footer__contact .list--row {
        justify-content: flex-start;
    }
}

/* ---- Mobile nav safe area / extra scroll space ---- */
@media (max-width: 991px) {
    .footer {
        padding-bottom: 20px;
    }
}

/* ---- Cookies card tablet fix ---- */
@media (min-width: 576px) and (max-width: 767px) {
    .cookies-card {
        width: calc(100% - 30px);
        left: 15px;
        bottom: 75px;
    }
}

/* ---- Section head text on small tablets ---- */
@media (max-width: 991px) {
    .section__head h2 {
        font-size: 28px;
    }
    .left-heading {
        font-size: 28px;
    }
}

/* ---- Testimonial / Feedback cards on tablet ---- */
@media (max-width: 991px) {
    .feedback-card {
        padding: 20px 15px;
    }
}

/* ---- Counter section on tablet ---- */
@media (max-width: 767px) {
    .counter-card {
        text-align: center;
        padding: 15px;
    }
}

/* ---- Stories section on mobile ---- */
@media (max-width: 575px) {
    .story-image {
        height: 220px;
    }
}

/* ---- Search / Filter bar on tablets ---- */
@media (max-width: 1199px) {
    .search__left-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
    }
}

/* ---- Login / Register forms ---- */
@media (max-width: 575px) {
    .login__wrapper {
        padding: 25px 15px;
    }
}

/* ---- Mobile nav icon spacing ---- */
@media (max-width: 374px) {
    .mobile-nav__menu {
        gap: 5px;
    }
    .mobile-nav__link i {
        font-size: 18px;
    }
}

/* ---- How-it-works background on small screens ---- */
@media (max-width: 767px) {
    .How-it-work-section {
        background-position: center top;
        background-size: 100% auto;
    }
}

/* ---- Work process section on tablet ---- */
@media (max-width: 991px) {
    .work-process-section .row > [class*="col-"] {
        margin-bottom: 0;
    }
}

/* ---- Contact page cards ---- */
@media (max-width: 767px) {
    .contact-form {
        padding: 20px 15px;
    }
}

/* ---- Profile / Member profile on tablet ---- */
@media (max-width: 767px) {
    .member-details label {
        font-size: 13px;
    }
}

/* ---- Award sections (About page) - stack image below content on mobile ---- */
@media (max-width: 767px) {
    .award-section .col-lg-6:first-child {
        order: 2;
    }
    .award-section .col-lg-6:last-child {
        order: 1;
    }
    .award-image {
        min-height: 200px !important;
    }
}

/* ---- About page: Our Purpose image on mobile ---- */
@media (max-width: 767px) {
    .purpose {
        width: 100%;
        max-width: 100%;
        border-radius: 15px;
    }
    .section--sm .mobile-app-thumb img {
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
}

/* ---- Chatbox / Messaging page on mobile ---- */
@media (max-width: 767px) {
    /* Give the fixed panel a proper width so it's visible when opened */
    .chatbox-left {
        width: 300px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.15);
    }
    .chatbox-body {
        height: calc(80vh - 220px);
    }
}

@media (max-width: 575px) {
    .chatbox-body {
        height: calc(75vh - 200px);
    }
    .chatbox__container .col-lg-4,
    .chatbox__container .col-md-5 {
        display: none;
    }
    .chatbox__container .col-lg-4.show-chat-list,
    .chatbox__container .col-md-5.show-chat-list {
        display: block;
        width: 100%;
    }
    .chatbox__container .col-lg-8,
    .chatbox__container .col-md-7 {
        width: 100%;
    }
}

/* ---- Contact page: form full-width on mobile ---- */
@media (max-width: 767px) {
    .contact-img {
        min-height: 250px;
    }
    .contact-img__is {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 10px;
    }
}

/* ---- Dashboard cards on mobile ---- */
@media (max-width: 575px) {
    .dashboard-card {
        padding: 15px;
    }
    .dashboard-card__icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    .dashboard-card__title {
        font-size: 1.3rem;
    }
}

/* ---- Member list filter button - show on all tablets ---- */
@media (max-width: 1199px) {
    .search__left-bar {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
    }
    .member-wrapper .col-xl-3 {
        display: none;
    }
}

/* ---- Package table on small tablets (show accordion instead) ---- */
@media (max-width: 767px) {
    .package-table-wrapper {
        display: none !important;
    }
    .package-accordion-wrapper {
        display: block !important;
    }
}

/* ---- Stories grid on mobile ---- */
@media (max-width: 575px) {
    .filter-container .grid-item {
        width: 100% !important;
    }
}

/* ---- Stories tiles layout stability (desktop + mobile) ---- */
.filter-container .grid-item {
    /* Force stacking context for absolute overlay content */
    position: relative !important;
    overflow: hidden;
    /* Keep a fixed tile height so absolute overlay content doesn't overlap next tiles */
    height: 240px;
}

.filter-container .grid-item .filter-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .filter-container {
        height: auto !important;
        display: flex;
        flex-wrap: wrap;
    }

    .filter-container .grid-item .filter-img {
        height: 100%;
    }

    .filter-container .grid-item {
        height: 220px;
        /* width: auto !important; */
        left: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin-bottom: 16px;
    }
}

/* ---- FAQ section on tablet/mobile ---- */
@media (max-width: 767px) {
    .accordion-button {
        font-size: 0.95rem;
        padding: 12px 15px;
    }
}

/* ---- Hero content title on very small screens ---- */
@media (max-width: 400px) {
    .hero__content-title {
        font-size: 22px !important;
    }
    .banner-account {
        padding: 15px 10px;
    }
}

/* ---- Footer logo responsive ---- */
@media (max-width: 575px) {
    .footer__contact img[style*="width: 250px"] {
        width: 180px !important;
    }
}

/* ---- Prevent horizontal overflow on all screens ---- */
body {
    overflow-x: hidden;
}
.container {
    max-width: 100%;
}
img {
    max-width: 100%;
}