/* MAIN SECTION */
.unlock-location-level-main-section {
  width: 100%;
  padding: 80px 0;
  background-color: #f8bfd0;
  position: relative;
  overflow: hidden;
}

.unlock-location-container {
  max-width: 1400px;
  margin: auto;
  text-align: center;
  /* position: relative; */
  padding: 40px 20px;
}

.unlock-location-content h1 {
  font-size: 55px;
  font-weight: 600;
  margin-bottom: 20px;
}

.unlock-location-content p {
  max-width: 1200px;
  margin: 0 auto 30px;
  font-size: 20px;
  color: #1f2a41;
  line-height: 30px;
}


.unlock-left-shape {
  position: absolute;
  left: -50px;
  top: 0;
  width: 200px !important;
  height: 200px !important;
  border-radius: 50%;
  opacity: 0.9 !important;
}

.unlock-right-shape {
  position: absolute;
  right: -50px;
  bottom: 0;
  width: 200px !important;
  height: 200px !important;
  border-radius: 50%;
  opacity: 0.9 !important;                                   
}

/* Second Section */
.location-review-data {
  width: 100%;
  padding: 50px 20px 0 20px;
  background-color: #ffffff;
}

.lrd-container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.lrd-title {
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 40px;
}

.lrd-description {
  max-width: 1400px;
  margin: 0 auto 40px;
  font-size: 18px;
}

.lrd-features {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.lrd-item {
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.lrd-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto 8px;
  position: relative;
}

.lrd-item p {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  padding-left: 15px;
}

/* Third Section */
.store-review-data-section {
  max-width: 1400px;
  margin: 0 auto !important;
  padding: 0px 20px 50px 20px;
  margin: 0 20px;
}

.store-review-data-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.store-review-data-left {
  padding-right: 20px;
}

.store-review-data-title {
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 30px;
}

.store-review-data-description {
  font-size: 18 !important;
  margin-bottom: 40px;
}

.store-review-data-types-header {
  font-size: 45px;
  font-weight: 600;
  color: #ff3366;
  margin-bottom: 30px;
  text-align: left;
}

.store-review-data-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 80px;
}

.store-review-data-type-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.store-review-data-type-bullet {
  width: 8px;
  height: 8px;
  background: #1a1a1a;
  border-radius: 50%;
  flex-shrink: 0;
}

.store-review-data-type-text {
  font-size: 0.95rem;
  color: #1a1a1a;
  font-weight: 500;
}

/* Fourth Section */
.only-image-section-card {
  width: 100%;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.only-image-wrapper {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.image-horizontal {
  width: 100%;
  height: auto;
  display: block;
}

.image-vertical {
  display: none;
  width: 100%;
  height: auto;
}

/* Fifth Section */
.explore-store-review-intelligence-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 20px 40px 20px;
}

.explore-store-review-intelligence-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.explore-store-review-intelligence-content {
  padding-right: 40px;
}

.explore-store-review-intelligence-title {
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 30px;
}

.explore-store-review-intelligence-description {
  font-size: 18px;
  line-height: 1.8;
  color: #333333e8;
  margin-bottom: 40px;
}



.explore-store-review-intelligence-button {
  display: inline-block;
  padding: 12px 17px;
  background: #ff0052;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.4s ease, color 0.4s ease;
  position: relative;
}

.explore-store-review-intelligence-button::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 5px;
  border: 2px solid #ff155a;
  clip-path: polygon(
    0% 0%, 0% 0%,
    0% 0%, 0% 0%,
    0% 100%, 0% 100%,
    0% 100%, 0% 100%
  );
  transition: clip-path 0.6s ease;
}

.explore-store-review-intelligence-button:hover {
  background: #fff;
  color: #ff0052;
}

.explore-store-review-intelligence-button:hover::before {
  clip-path: polygon(
    0% 0%, 100% 0%,
    100% 0%, 100% 100%,
    100% 100%, 0% 100%,
    0% 100%, 0% 0%
  );
}


.explore-store-review-intelligence-image-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-store-review-intelligence-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 10px;
}

/* Sixth Section */
.usecase-of-store-location-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  background: #ffffff;
}

.usecase-of-store-location-header {
  text-align: center;
  margin-bottom: 50px;
}

.usecase-of-store-location-title {
  font-size: 45px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.usecase-of-store-location-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  max-width: 900px;
  margin: 0 auto;
}

.usecase-of-store-location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.usecase-of-store-location-card {
  background: #ffffff;
  border: 1px solid #df8da1;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.usecase-of-store-location-card:hover {
  box-shadow: 0 8px 24px rgb(251 197 209);
  transform: translateY(-5px);
}

.usecase-of-store-location-card {
    position: relative;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgb(159 84 84 / 21%);
    background-color: #fff;
    overflow: hidden;
}

.usecase-of-store-location-card::before,
.usecase-of-store-location-card::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 2px solid #ff155a;
    border-radius: 8px;
    transition: width 0.4s ease, height 0.4s ease;
    box-sizing: border-box;
}

.usecase-of-store-location-card::before {
    top: 0;
    left: 0;
    border-width: 2px 0 0 2px;
}

.usecase-of-store-location-card::after {
    bottom: 0;
    right: 0;
    border-width: 0 2px 2px 0;
}

.usecase-of-store-location-card:hover::before,
.usecase-of-store-location-card:hover::after {
    width: 100%;
    height: 100%;
}









.usecase-of-store-location-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #ff4d7d 0%, #ff1744 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.usecase-of-store-location-icon img {
  height: 50%;
}

.usecase-of-store-location-card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.usecase-of-store-location-card-description {
  font-size: 16px;
  line-height: 1.7;
  color: #333333e8;
}

/* Why Choose Datazivot Section */
.why-choose-datazivot-review {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
}

.wcd-title {
  text-align: center;
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #333;
}

.wcd-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.wcd-column-left,
.wcd-column-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wcd-box {
    position: relative;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgb(159 84 84 / 21%);
    background-color: #fff;
    overflow: hidden;
}

.wcd-box::before,
.wcd-box::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 2px solid #ff155a;
    border-radius: 8px;
    transition: width 0.4s ease, height 0.4s ease;
    box-sizing: border-box;
}

.wcd-box::before {
    top: 0;
    left: 0;
    border-width: 2px 0 0 2px;
}

.wcd-box::after {
    bottom: 0;
    right: 0;
    border-width: 0 2px 2px 0;
}

.wcd-box:hover::before,
.wcd-box:hover::after {
    width: 100%;
    height: 100%;
}








.wcd-box-icon {
  width: 50px;
  height: 50px;
  background-color: #ff155a;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.wcd-box-icon img {
  width: 65%;
}

.wcd-box-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.wcd-box-description {
  font-size: 16px;
  color: #333333e8;
  line-height: 1.6;
}

.wcd-column-center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 400px;
}

.wcd-center-image {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.wcd-image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

/* FAQ Section */
.frequently-ask-question-section {
  max-width: 1400px;
  margin: 0 auto;
  background: white;
  padding: 60px 20px;
  border-radius: 20px;
}

.faq-header-container {
  text-align: center;
  margin-bottom: 50px;
}

.faq-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 50px;
  background: linear-gradient(135deg, #ee264b 0%, #ff2464 100%);
  border-radius: 12px;
  margin-bottom: 20px;
  letter-spacing: 5px;
}

.faq-icon-badge::before {
  content: "FAQ";
  color: white;
  font-weight: 600;
  font-size: 17px;
}

.faq-main-heading {
  font-size: 45px;
  font-weight: 600;

  margin-bottom: 15px;
}

.faq-subtitle-text {
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  color: #333333e8;
}

.faq-item-wrapper {
  border: 2px solid #f9f3f4;
  border-radius: 12px;
  overflow: hidden;
  height: min-content;
  transition: all 0.3s ease;
  margin: 10px 0px;
}

.faq-item-wrapper:hover {
  border-color: #ff9bb0;
}

.faq-item-wrapper.faq-active-state {
  border-color: #ff1749;
  background: #fff;
}

.faq-question-header {
  padding: 10px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question-title {
  font-size: 20px;
  font-weight: 600;
  flex: 1;
  padding-right: 20px;
  margin-bottom: 0px !important;
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  background: #ff1749;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: "";
  position: absolute;
  background: white;
  transition: transform 0.3s ease;
}

.faq-toggle-icon::before {
  width: 12px;
  height: 2px;
}

.faq-toggle-icon::after {
  width: 2px;
  height: 12px;
}

.faq-active-state .faq-toggle-icon {
  transform: rotate(45deg);
  background: #ff1749;
}

.faq-answer-content {
  display: none;
  padding: 0 25px 20px 25px;
}

.faq-active-state .faq-answer-content {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer-text {
  font-size: 17px;
  color: #333333e8;
  margin-bottom: 0px !important;
}

/* -------------------------- */
/* RESPONSIVE MEDIA QUERIES */
/* -------------------------- */

/* Laptops */

@media (max-width: 1024px) {
  .unlock-location-content h2 {
    font-size: 28px;
  }

  .unlock-location-content p {
    font-size: 16px;
  }

  .lrd-title {
    font-size: 30px;
  }

  .lrd-description {
    font-size: 16px;
    max-width: 900px;
  }

  .store-review-data-container {
    gap: 40px;
  }

  .store-review-data-title {
    font-size: 2rem;
  }

  .store-review-data-types-header {
    font-size: 1.75rem;
  }

  .explore-store-review-intelligence-container {
    gap: 40px;
  }

  .explore-store-review-intelligence-title {
    font-size: 2.3rem;
  }

  .explore-store-review-intelligence-description {
    font-size: 1rem;
  }

  .usecase-of-store-location-title {
    font-size: 2rem;
  }

  .faq-main-heading {
    font-size: 36px;
  }
  .unlock-location-content h1 {
    font-size: 35px;
  }
  .unlock-location-level-main-section {
    padding: 40px 0;
    padding-top: 0px !important;
  }
}
.unlock-left-shape,
.unlock-right-shape {
  width: 170px !important;
  height: 170px !important;
  opacity: 0.5;
}

/* Tablets */
@media (max-width: 768px) {
  .unlock-left-shape,
  .unlock-right-shape {
    width: 130px !important;
    height: 130px !important;
    opacity: 0.2 !important;
  }

  .lrd-title {
    font-size: 26px;
    line-height: 34px;
  }

  .lrd-description {
    font-size: 15px;
    line-height: 26px;
  }

  .lrd-features {
    gap: 40px;
  }

  .store-review-data-section {
    padding: 40px 15px;
  }

  .store-review-data-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .store-review-data-left {
    padding-right: 0;
    text-align: center;
  }

  .store-review-data-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .store-review-data-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .store-review-data-right {
    padding: 30px 25px;
  }

  .store-review-data-types-header {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .store-review-data-types-grid {
    gap: 18px 30px;
  }

  .image-horizontal {
    display: none;
  }

  .image-vertical {
    display: block;
  }

  .explore-store-review-intelligence-section {
    padding: 60px 20px;
  }

  .explore-store-review-intelligence-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .explore-store-review-intelligence-content {
    padding-right: 0;
    text-align: center;
  }

  .explore-store-review-intelligence-title {
    font-size: 2rem;
  }

  .usecase-of-store-location-section {
    padding: 60px 20px;
  }

  .usecase-of-store-location-title {
    font-size: 2rem;
  }

  .usecase-of-store-location-subtitle {
    font-size: 1rem;
  }

  .usecase-of-store-location-grid {
    gap: 25px;
  }

  .usecase-of-store-location-card {
    padding: 35px 25px;
  }

  .wcd-content {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .wcd-column-right {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 20px;
  }

  .wcd-column-right .wcd-box {
    flex: 1;
  }

  .frequently-ask-question-section {
    padding: 50px 30px;
  }

  .faq-grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .unlock-location-content h1 {
    font-size: 28px;
  }
}

/* Mobile Phones */
@media (max-width: 576px) {
  .unlock-location-content h2 {
    font-size: 24px;
    line-height: 34px;
  }

  .unlock-location-content p {
    font-size: 15px;
    line-height: 26px;
  }

  .unlock-left-shape,
  .unlock-right-shape {
    width: 100px !important;
    height: 100px !important;
    opacity: 0.2 !important;
  }

  .lrd-title {
    font-size: 22px;
  }

  .lrd-description {
    font-size: 14px;
    line-height: 24px;
  }

  .lrd-icon {
    width: 32px;
    height: 32px;
  }

  .lrd-item p {
    font-size: 16px;
  }

  .lrd-features {
    gap: 30px;
  }

  .store-review-data-section {
    padding: 30px 12px;
  }

  .store-review-data-title {
    font-size: 1.5rem;
  }

  .store-review-data-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .store-review-data-right {
    padding: 25px 20px;
  }

  .store-review-data-types-header {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .store-review-data-types-grid {
    gap: 16px;
  }

  .store-review-data-type-text {
    font-size: 0.9rem;
  }

  .explore-store-review-intelligence-section {
    padding: 40px 15px;
  }

  .explore-store-review-intelligence-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .explore-store-review-intelligence-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .explore-store-review-intelligence-button {
    text-align: center;
    padding: 14px 28px;
  }

  .explore-store-review-intelligence-image {
    border-radius: 8px;
  }

  .usecase-of-store-location-section {
    padding: 50px 15px;
  }

  .usecase-of-store-location-header {
    margin-bottom: 40px;
  }

  .usecase-of-store-location-title {
    font-size: 1.75rem;
    margin-bottom: 15px;
  }

  .usecase-of-store-location-subtitle {
    font-size: 0.95rem;
  }

  .usecase-of-store-location-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .usecase-of-store-location-card {
    padding: 30px 20px;
  }

  .usecase-of-store-location-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .usecase-of-store-location-icon::before {
    width: 30px;
    height: 30px;
  }

  .usecase-of-store-location-icon::after {
    width: 18px;
    height: 18px;
  }

  .usecase-of-store-location-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }

  .usecase-of-store-location-card-description {
    font-size: 0.9rem;
  }

  .wcd-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .wcd-column-right {
    flex-direction: column;
  }

  .wcd-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .wcd-box {
    padding: 25px;
  }

  .wcd-image-placeholder {
    display: none;
  }

  .frequently-ask-question-section {
    padding: 40px 20px;
  }

  .faq-main-heading {
    font-size: 28px;
  }

  .faq-subtitle-text {
    font-size: 14px;
  }

  .faq-question-title {
    font-size: 15px;
  }

  .faq-answer-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .location-review-data{
    padding: 20px 0;
  }
  .lrd-title{
    margin-bottom: 0;
  }
  .only-image-section-card{
    padding: 0;
  }
  .why-choose-datazivot-review{
    padding: 20px 20px;
  }
  .explore-store-review-intelligence-title {
    font-size: 1.4rem;
  }

  .explore-store-review-intelligence-description {
    font-size: 0.9rem;
  }

  .explore-store-review-intelligence-image {
    border-radius: 6px;
  }

  .usecase-of-store-location-section {
    padding: 40px 12px;
  }

  .usecase-of-store-location-title {
    font-size: 1.5rem;
  }

  .usecase-of-store-location-subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .usecase-of-store-location-card {
    padding: 25px 15px;
  }

  .usecase-of-store-location-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 18px;
  }

  .usecase-of-store-location-icon::before {
    width: 28px;
    height: 28px;
  }

  .usecase-of-store-location-icon::after {
    width: 16px;
    height: 16px;
  }

  .usecase-of-store-location-card-title {
    font-size: 1.15rem;
  }

  .usecase-of-store-location-card-description {
    font-size: 0.85rem;
  }

  .wcd-title {
    font-size: 20px;
  }

  .wcd-box {
    padding: 20px;
  }

  .wcd-box-title {
    font-size: 18px;
  }

  .wcd-box-description {
    font-size: 13px;
  }
  .unlock-location-content h1 {
    font-size: 25px;
  }
}

/* Responsive Design */
@media screen and (max-width: 1100px) {
  .wcd-content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .wcd-column-left {
    grid-column: 1;
    grid-row: 1;
  }

  .wcd-column-center {
    grid-column: 2;
    grid-row: 1;
  }

  .wcd-column-right {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .wcd-title {
    font-size: 31px;
    margin-bottom: 30px;
  }

  .wcd-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .wcd-column-left {
    grid-column: 1;
    grid-row: auto;
  }

  .wcd-column-center {
    grid-column: 1;
    grid-row: auto;
    min-height: 300px;
    display: none;
  }

  .wcd-column-right {
    grid-column: 1;
    grid-row: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .wcd-box {
    padding: 25px;
  }

  .wcd-box-title {
    font-size: 20px;
  }

  .wcd-box-description {
    font-size: 15px;
  }
}
