 /* Hide on all devices except desktops/laptops */
.hide-mobile-tablet {
    display: none;
}

/* Show only on desktop/laptop (1024px and above) */
@media (min-width: 1024px) {
    .hide-mobile-tablet {
        display: block !important;
    }
}
.fa, .fas {
    color:white;
}

/* Hide dropdown by default */
.ss-navigation .dropdown-menu {
    display: none;
    position: relative;
    z-index: 99999;
}

/* Show when open */
.ss-navigation .dropdown.open .dropdown-menu {
    display: block;
}

/* Ensure links are clickable */
.ss-navigation .dropdown-menu a {
    pointer-events: auto !important;
    z-index: 99999;
}

/* Hide menu by default on mobile */
/*@media (max-width: 991px) {*/
/*    .ss-navigation {*/
/*        display: none;*/
/*        position: absolute;*/
/*        top: 70px;*/
/*        right: 135px;*/
/*        width: 50%;*/
/*        background: linear-gradient(135deg, #ea365f, #ef4a3b);*/
/*        padding: 20px 0;*/
/*        text-align: center;*/
/*        z-index: 9999;*/
/*    }*/

/*    .ss-navigation.active {*/
/*        display: block;*/
/*    }*/

/*    .ss-navigation ul {*/
/*        flex-direction: column;*/
/*        gap: 20px;*/
/*    }*/
/*}*/
@media (max-width: 991px) {

    /* Hide navigation initially */
    .ss-navigation {
        display: none;
        position: absolute;
        top: 70px;
        right: 135px;
        width: 50%;
        background: linear-gradient(135deg, #ea365f, #ef4a3b);
        padding: 20px 0;
        text-align: center;
        z-index: 9999;
    }

    .ss-navigation.active {
        display: block;
    }
    .ss-navigation ul {
        flex-direction: column;
        gap: 20px;
    }
    .menu-close-icon {
        font-size: 26px;
        cursor: pointer;
    }

    .menu-open-icon {
        font-size: 26px;
        cursor: pointer;
    }
}


/* Navbar Base */
#ss-header {
    background: transparent;
    padding: 18px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    transition: background 0.3s ease, padding 0.3s ease;
}

#ss-header.scrolled {
    background: #ea365f !important;
    padding: 12px 0; /* optional shrink effect */
    box-shadow: 0 2px 25px rgba(0,0,0,0.15);
}

.logo-default { 
    display: inline-block;
}

.logo-scroll { 
    display: none;
}

#ss-header.scrolled .logo-default {
    display: none;
}
#ss-header.scrolled .logo-scroll {
    display: inline-block;
}

/* Menu links and icons */
.ss-navigation ul li a,
.ss-nav-btns a i {
    color: #fff !important;
}


.ss-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ss-logo img {
    width: 170px;
}

/* Navigation Links */
.ss-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 35px;
}

.ss-navigation ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #fff; /* White text because header is transparent */
    text-decoration: none;
    transition: color 0.3s ease;
}

#ss-header.scrolled .ss-navigation ul li a {
    color: #fff; /* Keep white when scrolled */
}

/* Buttons */
.ss-btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}


/* Mobile */
.ss-menu-icon {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #fff;
}
.ei-scrollup {
    width: 55px;
    right: 20px;
    z-index: 5;
    height: 55px;
    bottom: 20px;
    display: none;
    position: fixed;
    border-radius: 100%;
    line-height: 55px;
    background-image: linear-gradient(-45deg, #ea365f 30%, #ef4a3b 100%);
}
@media (max-width: 991px) {
    .ss-navigation,
    .ss-nav-btns {
        display: none;
    }
    .ss-menu-icon {
        display: block;
    }
}
.ss-nav-btns a i {
    font-size: 20px;
    color: #fff;      /* White icon */
    transition: color 0.3s ease;
}

/* After scroll â€” keep white OR change to dark */
#ss-header.scrolled .ss-nav-btns a i {
    color: #fff;      /* stays white even when scrolled */
    /* if you want black on scroll: color: #000; */
}
.ss-nav-btns ul{
    list-style-type: none;
}


/* Parent dropdown item */
.ss-navigation ul li.dropdown {
    position: relative;
}

/* Dropdown menu */
.ss-navigation ul li .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #f05f62;
    min-width: 180px;
    display: none;
    flex-direction: column;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 9999;
}

/* Dropdown items */
.ss-navigation ul li .dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    font-size: 15px;
    transition: 0.3s;
}

.ss-navigation ul li .dropdown-menu li a:hover {
    background: #ef4a3b;
    color: #fff;
}

/* DESKTOP HOVER */
@media (min-width: 992px) {
    .ss-navigation ul li.dropdown:hover > .dropdown-menu {
        display: block;
    }
}
.dropdown-menu.active {
    display: block;
}






/*---------------------------------------------------- */
/*banner area*/
/*----------------------------------------------------*/
.eight-banner-section {
   position: relative;
   width: 100%;
   height: 100vh; /* Adjust height as needed */
   overflow: hidden;
   z-index: 1;
}
@media (max-width: 767px) {
    .eight-banner-section {
        height: 75vh; /* Change this value as needed */
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .eight-banner-section {
        height: 65vh; /* Optional: even smaller for tiny screens */
    }
}
.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.eight-banner-section .bg-video {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: -2;
}

.eight-banner-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45); /* Adjust darkness here */
    z-index: 2;
}
.banner-content {
    position: relative;
    z-index: 3 !important;   /* VERY IMPORTANT */
    color: #fff;
}
.eight-banner-section .banner-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    max-width: 700px;
}

.eight-banner-section .banner-content h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: 0 0 25px 0;
}

.eight-banner-section .banner-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #f0f0f0;
    max-width: 520px;
    opacity: 0.9;
}


.banner-buttons {
     display: flex;
    gap: 20px; /* space between buttons */
    margin-top: 25px;
}

/* Primary gradient button */
.gradient-btn {
    display: inline-block;
    padding: 14px 38px;
    background: linear-gradient(135deg, #ea365f, #ef4a3b);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 54, 95, 0.3);
}

.gradient-btn:hover {
    background: linear-gradient(135deg, #ef4a3b, #ea365f);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(239, 74, 59, 0.4);
    color:#fff;
    text-decoration:none;
}

/* Secondary outlined button */
.outline-btn-1 {
    display: inline-block;
    padding: 14px 38px;
    background: transparent;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.outline-btn-1:hover {
    background: #fff;
    color: #ef4a3b;
    transform: translateY(-3px);
    text-decoration:none;
}

.why-section {
  background: linear-gradient(135deg, #ea365f 0%, #ef4a3b 100%);
  color: #fff;
  padding: 100px 0 !important;
}

.why-text h2 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 25px;
}

.why-text p {
  font-size: 18px;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 550px;
  opacity: 0.95;
}

.mini-cta {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.mini-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.7);
  transition: width 0.3s ease;
}

.mini-cta:hover {
  color: #fff;
  opacity: 0.8;
}

.mini-cta:hover::after {
  width: 60%;
}

.why-image img {
  max-width: 90%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  display: inline-block;
  border-radius: 1rem !important;
}

.how-it-works {
  background: #fff;
  padding: 100px 0;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.how-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 25px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
  border-top: 5px solid transparent;
}

.how-card:hover {
  transform: translateY(-10px);
  border-top: 5px solid #ea365f;
  box-shadow: 0 15px 35px rgba(234, 54, 95, 0.15);
}

.icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ea365f, #ef4a3b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(234, 54, 95, 0.3);
}

.how-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.how-card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.stories-section {
  background: linear-gradient(135deg, #ea365f, #ef4a3b);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-heading {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 60px;
}

.story-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.story-image img {
 width: 120px;
  height: 120px;
  aspect-ratio: 1 / 1; /* Ensures perfect square before rounding */
  object-fit: cover; /* Crops nicely inside the circle */
  border-radius: 50%; /* Makes it perfectly circular */
  border: 5px solid #fff;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  display: block;
}

/* Text Styling */
.story-text p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 15px;
}

.story-text h5 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px; /* Adds space above the pagination dots */
}

/* Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 1;
}

/* Swiper Pagination (Dots) */
.swiper-pagination {
  margin-top: 20px !important;
  position: relative;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

.final-cta {
  background: transparent; /* Plain background */
  padding: 100px 0;
}

.final-cta-1 {
  background: transparent; /* Plain background */
}

.cta-heading {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-subtext {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 20px;
}

.qr-wrapper {
  display: inline-block;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.qr-img {
  width: 150px;
  height: 150px;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.app-mockup img {
  max-width: 85%;
  height: auto;
  border-radius:30px;
  /*filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));*/
}



@media (max-width: 991px) {
    .eight-banner-section .banner-content {
        left: 5%;
        top: 45%;
                width: 91%;
    }

    .eight-banner-section .banner-content h1 {
        font-size: 48px;
    }

    .eight-banner-section .banner-content p {
        font-size: 16px;
        max-width: 90%;
    }
    .why-section {
    padding: 60px 0;
    text-align: center;
  }

  .why-text h2 {
    font-size: 36px;
  }

  .why-text p {
    font-size: 16px;
    margin: 0 auto 20px;
  }

  .mini-cta {
    display: inline-block;
  }

  .why-image {
    margin-top: 40px;
  }
   .section-title {
    font-size: 36px;
  }
  .how-card {
    padding: 30px 20px;
  }
  .how-card h4 {
    font-size: 20px;
  }
  
  .cta-heading {
    font-size: 32px;
    text-align: center;
  }

  .cta-subtext {
    text-align: center;
    font-size: 16px;
    margin-bottom: 25px;
  }

  .qr-wrapper {
    margin: 0 auto;
  }

  .app-mockup img {
    max-width: 75%;
    transform: rotate(0);
  }
}

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition-property: transform, opacity;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
    .banner-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .gradient-btn, .outline-btn {
        width: 100%;
        text-align: center;
    }
    .section-heading {
    font-size: 32px;
  }

  .story-image img {
    width: 90px;
    height: 90px;
    border-width: 3px;
  }

  .story-text p {
    font-size: 18px;
    line-height: 1.5;
  }

  .story-text h5 {
    font-size: 16px;
    margin-bottom: 35px;
  }
}

.footer-logo{
    width:20rem !important;
}
.footer-paypal{
    width:21rem !important;
}
.download-icon{
    width:170px;
}


/*about us css*/


.eight-banner-section-about {
    position: relative;
    background: url('../img/about-us-banner.webp') no-repeat center center/cover;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 0 80px;
    color: #fff;
    overflow: hidden;
}

.eight-banner-section-about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);  /* light black overlay */
    z-index: 1;
}

.banner-content-about {
    position: relative;
    z-index: 2;
    width: 100%;
}


.banner-buttons-about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}


.eight-banner-section-about .banner-content-about {
    color: #fff;
}

.eight-banner-section-about .banner-content-about h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.eight-banner-section-about .banner-content-about p {
    font-size: 20px;
    line-height: 1.6;
    color: #f0f0f0;
    opacity: 0.9;
    margin-bottom: 20px;
}

.eight-banner-section-about img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

@media(max-width: 991px) {
    .eight-banner-section-about {
        padding-top: 120px !important;
        padding-bottom: 60px;
    }

    .eight-banner-section-about .banner-content-about {
        text-align: left;
    }

    .eight-banner-section-about .banner-content-about h1 {
        font-size: 42px;
    }

    .eight-banner-section-about img {
        margin-top: 25px;
    }
}

.eight-banner-section-safety {
    position: relative;
    background: url('../img/safety-banner.jpg') no-repeat center center/cover;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 0 80px;
    color: #fff;
    overflow: hidden;
}

.eight-banner-section-safety::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);  /* light black overlay */
    z-index: 1;
}

.banner-content-safety {
    position: relative;
    z-index: 2;
    width: 100%;
}

.banner-buttons-about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.eight-banner-section-safety .banner-content-safety {
    color: #fff;
}

.eight-banner-section-safety .banner-content-safety h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.eight-banner-section-safety .banner-content-safety p {
    font-size: 20px;
    line-height: 1.6;
    color: #f0f0f0;
    opacity: 0.9;
    margin-bottom: 20px;
}

.eight-banner-section-safety img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

@media(max-width: 991px) {
    .eight-banner-section-safety {
        padding-top: 120px !important;
        padding-bottom: 60px;
    }

    .eight-banner-section-safety .banner-content-safety {
        text-align: left;
    }

    .eight-banner-section-safety .banner-content-safety h1 {
        font-size: 42px;
    }

    .eight-banner-section-safety img {
        margin-top: 25px;
    }
}


.waveWrapperInner {
  position: absolute;
  width: 100%;
  overflow: hidden;
  height: 100%;
  bottom: -1px;
  background: linear-gradient(135deg, #ea365f, #ef4a3b);
}

/*3rd section*/

.about-believe-section {
    background: linear-gradient(135deg, #ea365f, #ef4a3b);
    padding: 120px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-believe-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 50px 40px;
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.15);
}

.about-believe-box h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-believe-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
    opacity: 0.95;
    color: #ffecec;
}

/* ðŸ“± Mobile Responsive */
@media (max-width: 768px) {

    .about-believe-section {
        padding: 80px 20px;
    }

    .about-believe-box {
        padding: 35px 25px;
    }

    .about-believe-box h2 {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .about-believe-box p {
        font-size: 16px;
    }
}


/*our values*/

.stats-section {
    background: linear-gradient(135deg, #ea365f, #ef4a3b);
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

.stats-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
}

.box-authenticity {
    background: url('../img/authenticity.webp') no-repeat center center/cover;
}
.box-clarity {
    background: url('../img/clarity.webp') no-repeat center center/cover;
}
.box-respect {
    background: url('../img/respect.webp') no-repeat center center/cover;
}
.box-connection {
    background: url('../img/connection.webp') no-repeat center center/cover;
}

.stats-box * {
    position: relative;
    z-index: 2 !important;
}

.stats-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35); /* light black overlay */
    z-index: 1; 
    pointer-events: none;
}

.stats-box {
    height:100%;
    padding: 30px 25px;
    border-radius: 18px;
    margin-bottom: 35px;
    color: #fff;
    box-shadow: 0px 10px 35px rgba(0,0,0,0.12);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* CENTER CONTENT */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.stats-box:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 40px rgba(0,0,0,0.18);
}

.stats-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 12px;
}

/* Circular Number Badge */
.circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px auto;
    color: #fff;
}

/* Colors */
.circle.pink { background: #ff4f8b; }
.circle.yellow { background: #ffb638; }
.circle.green { background: #00c06d; }
.circle.blue { background: #1d8bff; }

/* Responsive */
@media(max-width: 992px) {
    .stats-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
}

@media(max-width: 768px) {
    .stats-box {
        padding: 25px 20px;
    }

    .circle {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }
}


/*cta banner*/
.cta-movement-section {
    background: #ffffff;
    text-align: center;
    padding: 120px 0;
}

.cta-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
    margin-bottom: 35px;
}

/* Buttons Section */
.cta-buttons {
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    font-size: 18px;
    padding: 14px 32px;
    border-radius: 50px;
    margin: 0 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* Primary Gradient Button */
.primary-btn {
    background: linear-gradient(135deg, #ea365f, #ef4a3b);
    color: #fff;
}
.primary-btn:hover {
    background: #fff;
    color: linear-gradient(135deg, #ea365f, #ef4a3b);
    text-decoration:none;
    border:2px solid #ef4a3b;
}

/* Outline button */
.outline-btn {display: inline-block;
    padding: 14px 38px;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ef4a3b;
    color: #ef4a3b;
}

.outline-btn:hover {
    background: #ef4a3b;
    color: #fff;
    text-decoration:none;
}

/* App Store Badges */
.app-icons {
    margin: 25px 0 35px;
}

.store-icon {
    width: 160px;
    margin: 0 8px;
}

/* Sub text */
.cta-subtext {
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 18px;
    color: #444;
    line-height: 1.7;
}

/* Final CTA small button */
.secondary-action-btn {
    background: linear-gradient(135deg, #ea365f, #ef4a3b);
    color: #fff;
    padding: 12px 26px;
    font-size: 17px;
    border-radius: 40px;
    text-decoration: none;
    display: inline-block;
}

/* Mobile Responsive */
@media(max-width: 768px) {
    .cta-title {
        font-size: 32px;
        margin-bottom: 25px;
        padding: 0 20px;
    }

    .cta-btn {
        display: block;
        margin: 10px auto;
        width: 80%;
        text-align:center;
    }

    .store-icon {
        width: 140px;
        margin: 10px auto;
        display: block;
    }

    .cta-subtext {
        font-size: 16px;
        padding: 0 20px;
    }
}

/* Hide city results container until city is selected */
.city-results-container {
    display: none;
}




/* footer */

/* ================================
   Swipe Singles Footer Styling
   ================================ */

.ei-footer-section {
  background: linear-gradient(135deg, #ea365f, #ef4a3b);
  padding-top: 100px;
  color: #fff;
  position: relative;
  overflow: hidden;
  
}

.ei-footer-widget .ei-widget-title {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  padding-bottom: 20px;
}

.ei-footer-widget .ei-footer-logo {
  margin-bottom: 25px;
}

.ei-footer-widget p {
  line-height: 1.875;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.ei-footer-widget .ei-payment-mathod {
  margin-top: 30px;
}

.ei-footer-widget ul li {
  /*width: 50%;*/
  /*float: left;*/
  font-size: 14px;
  padding-left: 15px;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  list-style:none;
}



.ei-footer-widget ul li a {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  transition: 0.3s;
}

.ei-footer-widget ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

.ei-footer-widget span,
.ei-footer-widget div span {
  font-size: 15px;
  line-height: 1.7;
}

/* Footer Social Icons */
.ei-footer-social a {
  width: 38px;
  height: 38px;
  margin-right: 10px;
  color: #fff;
  line-height: 38px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

.ei-footer-social a:hover {
  background: #fff;
  color: #ef4a3b;
}

/* Download Buttons */
.download-btn img.download-icon {
  width: 150px;
  margin-right: 10px;
  margin-top: 15px;
  border-radius: 10px;
}

/* Footer Copyright */
.ei-footer-copyright {
  background: rgba(0, 0, 0, 0.1);
  margin-top: 60px;
  padding: 20px 0;
}

.ei-footer-copyright-content {
  text-align: center;
}

.ei-footer-copyright a {
  color: #fff;
  margin: 0 12px;
  font-size: 14px;
  transition: 0.3s;
}

.ei-footer-copyright a:hover {
  color: #000;
}

/* Footer Shapes */
.ei-footer-shape1,
.ei-footer-shape2,
.ei-footer-shape3 {
  position: absolute;
  z-index: 0;
}

.ei-footer-shape1 {
  right: 0;
  top: 50px;
}

.ei-footer-shape2 {
  left: 0;
  bottom: 80px;
}

.ei-footer-shape3 {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}


/*safety page*/
.safety-section {
    background: linear-gradient(135deg, #ea365f, #ef4a3b);
    padding: 120px 0;
    color: #fff;
}

/* Section Title */
.safety-section .section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color:#fff;
}

.safety-section .section-subtitle {
    max-width: 650px;
    margin: 0 auto 60px;
    font-size: 18px;
    opacity: 0.9;
    color:#fff;
}

/* Cards */
.safety-box {
    background: rgba(255,255,255,0.12);
    padding: 30px 25px;
    border-radius: 18px;
    margin-bottom: 35px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
    text-align: left;
    backdrop-filter: blur(4px);
    transition: 0.3s ease;
}

/* Hover effect */
.safety-box:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 35px rgba(0,0,0,0.25);
}

/* Text Styling */
.safety-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.safety-box p {
    opacity: 0.95;
    line-height: 1.6;
    font-size: 16px;
}

/* Responsive */
@media(max-width: 768px) {
    .safety-section {
        padding: 80px 0;
    }

    .safety-section .section-title {
        font-size: 30px;
    }

    .safety-box {
        text-align: center;
    }
}


.safety-rules-section {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.safety-rules-box {
    background: #f06062;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.text-white{
    color:#fff;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.rule-item {
    background: #fff;
    border: 1px solid rgba(239, 74, 59, 0.25);
    padding: 18px 20px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
}

/* Add checkmark icon */
.rule-item::before {
    content: "✔";
    color: #ef4a3b;
    font-weight: 700;
    font-size: 18px;
}
@media (max-width: 768px) {
    .rules-grid {
        grid-template-columns: 1fr;
    }

    .rule-item {
        justify-content: center;
        text-align: center;
    }
}

.redflags-section {
    background: linear-gradient(135deg, #ea365f, #ef4a3b);
    padding: 120px 0;
    color: #fff;
}

/* Title styling */
.redflags-section .rf-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.redflags-section .rf-subtitle {
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0.9;
}

/* Grid layout */
.rf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 850px;
    margin: auto;
    margin-bottom: 40px;
}

/* Card base style */
.rf-item,
.rf-item-wide {
    background: rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 20px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Wide bottom card */
.rf-item-wide {
    grid-column: span 2;
}

/* Icon style */
.rf-icon {
    font-size: 22px;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Text style */
.rf-grid p {
    font-size: 16px;
    margin: 0;
    opacity: 0.95;
}

/* Footer text */
.rf-footer {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
}


@media(max-width: 768px) {
    .rf-grid {
        grid-template-columns: 1fr;
    }

    .rf-item-wide {
        grid-column: span 1;
    }

    .redflags-section .rf-title {
        font-size: 32px;
    }
}

.meet-real-section {
    background: #fff;
}

.meet-real-box {
    background: #f06062; /* subtle light peach background */
    border-radius: 20px;
    padding: 60px 50px;
    max-width: 900px;
    margin: auto;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

/* Heading */
.meet-real-box h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

/* Subtitle */
.meet-subtitle {
    font-size: 18px;
    margin-bottom: 50px;
    color:#fff;
}

/* Two column layout */
.meet-list {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-bottom: 40px;
}

.meet-col p {
    font-size: 18px;
    margin: 15px 0;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Check icons */
.icon-check {
    background: #4caf50;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Footer line */
.meet-footer {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}
@media (max-width: 768px) {
    .meet-real-box {
        padding: 40px 25px;
    }

    .meet-real-box h2 {
        font-size: 30px;
    }

    .meet-list {
        flex-direction: column;
        gap: 30px;
    }

    .meet-col p {
        justify-content: center;
        text-align: center;
    }
}
.commitment-section {
    background: linear-gradient(135deg, #ea365f, #ef4a3b);
    padding: 120px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Inner box */
.commitment-box {
    background: #f06062;
    color: #fff;
    padding: 60px 50px;
    border-radius: 22px;
    max-width: 850px;
    margin: auto;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

/* Title */
.commitment-box h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
}

/* Paragraph text */
.commitment-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.95;
}
@media (max-width: 768px) {
    .commitment-box {
        padding: 40px 25px;
    }

    .commitment-box h2 {
        font-size: 30px;
    }

    .commitment-box p {
        font-size: 16px;
    }
}


.help-support-section {
    background: #ffffff;
    padding: 100px 0;
}

.help-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #222;
    text-transform: none;
}

.help-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #444;
}

.help-list {
    list-style: none;
    padding: 0;
}

.help-list li {
    font-size: 17px;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: #333;
}

/* 🟢 Add custom tick / icon */
.help-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #e83f5e;
    font-weight: bold;
    font-size: 18px;
}

.help-image img {
    border-radius: 18px;
    box-shadow: 0px 10px 35px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
    .help-content h2 {
        font-size: 32px;
        text-align: center;
    }

    .help-content p,
    .help-list {
        text-align: center;
    }

    .help-list li {
        padding-left: 25px;
    }

    .help-image {
        margin-top: 30px;
        text-align: center;
    }
}


.terms h2 p{
    color:#000 !important;
}

.support-form-section {
    padding: 120px 0;
    background: #f9f9f9;
    display: flex;
    justify-content: center;
}

.support-form-box {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    margin: auto;
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
    text-align: left;
}

.support-form-box h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
}

.support-form-box p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

/* Inputs */
.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ea365f;
    box-shadow: 0px 0px 6px rgba(234,54,95,0.3);
}

/* Required Indicator */
.form-group label span {
    color: red;
}

/* Submit Button */
.support-submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, #ea365f, #ef4a3b);
    box-shadow: 0 8px 25px rgba(234,54,95,0.3);
    transition: 0.3s ease;
}

.support-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(234,54,95,0.4);
}
@media (max-width: 768px) {
    .support-form-box {
        padding: 30px 20px;
    }

    .support-form-box h2 {
        font-size: 28px;
    }
}


.city-results-container {
    margin-top: 60px;
}

.city-box {
    display: none;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0px 10px 35px rgba(0,0,0,0.12);
    margin-bottom: 40px;
}

.location-dropdown {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    width: 220px;
    padding: 12px 20px;
    
    border-radius: 40px;
    border: 2px solid rgba(255,255,255,0.6);

    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);

    font-size: 16px;
    font-weight: 600;
    outline: none;
    color: #fff;
    cursor: pointer;

    transition: 0.3s ease;
    text-align: center;
}

/* Text color inside options */
.location-dropdown option {
    color: #333;
}

/* Hover */
.location-dropdown:hover {
    background: rgba(255,255,255,0.35);
    border-color: rgba(255,255,255,0.9);
}

/* Focus */
.location-dropdown:focus {
    background: rgba(255,255,255,0.45);
    border-color: #fff;
    box-shadow: 0 0 12px rgba(255,255,255,0.6);
}
.location-dropdown {
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='14' width='14' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'><path d='M5.25 7.25L10 12.75L14.75 7.25'></path></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px;
}
.location-dropdown {
    color: #fff !important;
}
@media (max-width: 768px) {
    .location-dropdown {
        width: 90%;
        max-width: none;
    }
}
/* CITY TITLE */
.city-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #222;
    text-align: left;
}

/* GRID WRAPPER */
.places-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 20px;
}

/* CARD STYLE */
.place-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.place-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.15);
    border-color: #ef4a3b;
}

/* Tablet (≤992px) */
@media (max-width: 992px) {
    .places-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (≤576px) */
@media (max-width: 576px) {
    .places-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .place-card {
        width: 100%;
    }
}

/* IMAGE */
.place-card img {
    width: 100%;
    /*height: 320px;*/
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 18px;
}

/* NAME */
.place-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #ef4a3b; /* matches branding */
}

/* LIST OF INFO */
.place-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.place-info li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.place-info li span {
    margin-right: 8px;
    font-size: 18px;
}


/*datespace*/

.eight-banner-section-datespace {
    position: relative;
    background: url('../img/date-space-banner.jpg') no-repeat center center/cover;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 0 80px;
    color: #fff;
    overflow: hidden;
}

.eight-banner-section-datespace::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);  /* light black overlay */
    z-index: 1;
}

.banner-content-datespace {
    position: relative;
    z-index: 2;
    width: 100%;
}

.banner-buttons-datespace {
    display: flex;
    justify-content: left;
    align-items: left;
    gap: 20px;
}

.eight-banner-section-datespace .banner-content-datespace {
    color: #fff;
}

.eight-banner-section-datespace .banner-content-datespace h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.eight-banner-section-datespace .banner-content-datespace p {
    font-size: 20px;
    line-height: 1.6;
    color: #f0f0f0;
    opacity: 0.9;
    margin-bottom: 20px;
}

.eight-banner-section-datespace img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

@media(max-width: 991px) {
    .eight-banner-section-datespace {
        padding-top: 120px !important;
        padding-bottom: 60px;
    }

    .eight-banner-section-datespace .banner-content-datespace {
        text-align: left;
    }

    .eight-banner-section-datespace .banner-content-datespace h1 {
        font-size: 42px;
    }

    .eight-banner-section-datespace img {
        margin-top: 25px;
    }
}


/*support*/
.eight-banner-section-support {
    position: relative;
    background: url('../img/support-banner.jpg') no-repeat center center/cover;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 0 80px;
    color: #fff;
    overflow: hidden;
}

.eight-banner-section-support::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);  /* light black overlay */
    z-index: 1;
}

.banner-content-support {
    position: relative;
    z-index: 2;
    width: 100%;
}

.banner-buttons-support {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.eight-banner-section-support .banner-content-support {
    color: #fff;
}

.eight-banner-section-support .banner-content-support h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.eight-banner-section-support .banner-content-support p {
    font-size: 20px;
    line-height: 1.6;
    color: #f0f0f0;
    opacity: 0.9;
    margin-bottom: 20px;
}

.eight-banner-section-support img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

@media(max-width: 991px) {
    .eight-banner-section-support {
        padding-top: 120px !important;
        padding-bottom: 60px;
    }

    .eight-banner-section-support .banner-content-support {
        text-align: left;
    }

    .eight-banner-section-support .banner-content-support h1 {
        font-size: 42px;
    }

    .eight-banner-section-support img {
        margin-top: 25px;
    }
}

/*terms and conditions*/
.eight-banner-section-terms-conditions {
    position: relative;
    background: url('../img/terms-and-conditions.jpg') no-repeat center center/cover;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 0 80px;
    color: #fff;
    overflow: hidden;
}

.eight-banner-section-terms-conditions::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);  /* light black overlay */
    z-index: 1;
}

.banner-content-terms-conditions {
    position: relative;
    z-index: 2;
    width: 100%;
}

.banner-buttons-terms-conditions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.eight-banner-section-terms-conditions .banner-content-terms-conditions {
    color: #fff;
}

.eight-banner-section-terms-conditions .banner-content-terms-conditions h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.eight-banner-section-terms-conditions .banner-content-terms-conditions p {
    font-size: 20px;
    line-height: 1.6;
    color: #f0f0f0;
    opacity: 0.9;
    margin-bottom: 20px;
}

.eight-banner-section-terms-conditions img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

@media(max-width: 991px) {
    .eight-banner-section-terms-conditions {
        padding-top: 120px !important;
        padding-bottom: 60px;
    }

    .eight-banner-section-terms-conditions .banner-content-terms-conditions {
        text-align: left;
    }

    .eight-banner-section-terms-conditions .banner-content-terms-conditions h1 {
        font-size: 42px;
    }

    .eight-banner-section-terms-conditions img {
        margin-top: 25px;
    }
}

.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

/* Last row single */
.faq-box.single {
    grid-column: span 2;
}

/* BOX DESIGN */
.faq-box {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    border: 2px solid #f2f2f2;
    box-shadow: 0px 10px 35px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.faq-box:hover {
    border-color:#ef4a3b;
    transform: translateY(-6px);
}

/* FAQ TITLE */
.faq-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ef4a3b;
}

/* QUESTION DROPDOWNS */
.faq-item {
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    cursor: pointer;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-right: 25px;
}

/* Arrow indicator */
.faq-question:after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-weight: bold;
    transition: 0.3s;
}

/* Hidden Answer */
.faq-answer {
    display: none;
    font-size: 14px;
    padding-top: 8px;
    line-height: 1.6;
    color: #444;
}

/* Active state */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question:after {
    content: "-";
}


.banner-search-datespace {
    display: flex;
    gap: 15px;
    max-width: 600px;
}

.search-bar {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    border: none;
    font-size: 18px;
    outline: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.3);
}

.search-bar::placeholder {
    color: #f9d9db;
}

.search-btn {
    padding: 14px 30px;
    border-radius: 50px;
    background: #fff;
    color: #ef4053;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.search-btn:hover {
    background: #fbd4d9;
}


.highlight {
    background: #ff6669;
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 600;
}





.eight-banner-section-faq {
    position: relative;
    background: linear-gradient(135deg, #ea365f, #ef4a3b);
    min-height: 55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 0 80px;
    color: #fff;
    overflow: hidden;
}

/* FAQ MOBILE FIX - One column layout */
@media (max-width: 767px) {

    .faq-grid {
        display: block !important;
    }

    .faq-box {
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    .faq-title {
        font-size: 20px !important;
        text-align: left;
    }

    .faq-list {
        margin-top: 10px;
    }

    .faq-item {
        padding: 12px 15px !important;
    }

    .faq-question {
        font-size: 16px !important;
        line-height: 1.4;
    }

    .faq-answer {
        font-size: 14px !important;
    }
}
