/* ==============================
   PROPERTIES PAGE STYLES
   ============================== */

/* Banner description */
.project-banner-desc {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  margin-top: 8px;
  font-weight: 400;
}

/* ===== MAIN SECTION — Dholera-style white bg with image ===== */
.pp-section {
  background: linear-gradient(rgba(249,249,249,0.94), rgba(255,255,255,0.96)),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600') center/cover no-repeat fixed;
  padding: 80px 0 60px;
}

/* Header */
.pp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.pp-header-text {
  flex: 1;
}

.pp-label {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: #c9a84c;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  padding: 8px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid rgba(201,168,76,0.2);
}

.pp-title {
  font-size: 36px;
  font-weight: 800;
  color: #0f2a3c;
  margin: 0;
}

/* ===== FILTERS ===== */
.pp-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ===== FILTER BAR ===== */
.pp-filter-bar {
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 24px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  border: 1px solid #eee;
}

.pp-filter-form {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.pp-filter-group {
  flex: 1;
  min-width: 160px;
}

.pp-filter-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.pp-filter-label i {
  color: #c9a84c;
}

.pp-filter-input,
.pp-filter-select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  background: #fafafa;
  transition: border-color 0.3s;
  outline: none;
}

.pp-filter-input:focus,
.pp-filter-select:focus {
  border-color: #c9a84c;
  background: #fff;
}

.pp-filter-input::placeholder {
  color: #bbb;
}

.pp-filter-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 1px;
}

.pp-filter-submit {
  padding: 10px 24px;
  background: #c9a84c;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.pp-filter-submit:hover {
  background: #b89640;
  box-shadow: 0 4px 12px rgba(201,168,76,0.3);
}

.pp-filter-clear {
  padding: 10px 18px;
  background: transparent;
  color: #999;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s;
  white-space: nowrap;
}

.pp-filter-clear:hover {
  border-color: #cc4444;
  color: #cc4444;
}

/* ===== TYPE QUICK FILTER BUTTONS ===== */
.pp-type-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pp-type-btn {
  padding: 7px 18px;
  border: 1.5px solid #ddd;
  background: #fff;
  color: #555;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.3px;
  text-decoration: none;
}

.pp-type-btn:hover {
  border-color: #c9a84c;
  color: #c9a84c;
}

.pp-type-btn.active {
  background: #c9a84c;
  border-color: #c9a84c;
  color: #fff;
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}

/* Count */
.pp-count {
  font-size: 13px;
  color: #999;
  margin-bottom: 30px;
  font-weight: 500;
}

.pp-count span {
  font-weight: 700;
  color: #0f2a3c;
}

/* ===== PROPERTY CARD ===== */
.pp-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.pp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Card image */
.pp-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.pp-card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  pointer-events: none;
}

.pp-card-img {
  width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.pp-card:hover .pp-card-img {
  transform: scale(1.05);
}

/* Badge */
.pp-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 6px;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* Price tag on image */
.pp-price-tag {
  position: absolute;
  bottom: 12px;
  right: 14px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 6px;
  z-index: 3;
}

/* Card body */
.pp-card-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pp-location {
  font-size: 13px;
  color: #999;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pp-location i {
  color: #c9a84c;
  font-size: 12px;
}

.pp-name {
  font-size: 18px;
  font-weight: 700;
  color: #0f2a3c;
  margin-bottom: 14px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Specs */
.pp-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.pp-spec {
  font-size: 12px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f8f8f8;
  padding: 4px 10px;
  border-radius: 6px;
}

.pp-spec i {
  color: #c9a84c;
  font-size: 11px;
}

/* Footer */
.pp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.pp-price {
  font-size: 17px;
  font-weight: 800;
  color: #0f2a3c;
}

.pp-view-btn {
  display: inline-block;
  padding: 9px 22px;
  border: 1.5px solid #c9a84c;
  color: #c9a84c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pp-view-btn:hover {
  background: #c9a84c;
  color: #fff;
  box-shadow: 0 4px 15px rgba(201,168,76,0.35);
}

/* No results */
.pp-no-results {
  text-align: center;
  padding: 60px 0;
}

.pp-no-results i {
  font-size: 48px;
  color: #ddd;
  margin-bottom: 16px;
}

.pp-no-results h4 {
  color: #0f2a3c;
  font-weight: 700;
  margin-bottom: 6px;
}

.pp-no-results p {
  color: #999;
  font-size: 14px;
}

/* Empty state */
.pp-empty {
  padding: 40px 0;
}

.pp-empty h4 {
  color: #0f2a3c;
  font-weight: 700;
  margin-bottom: 4px;
}

/* Active filter tag */
.pp-active-filter {
  color: #c9a84c;
  font-weight: 600;
  margin-left: 4px;
}

.pp-active-filter a {
  color: #cc4444;
  margin-left: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.pp-active-filter a:hover {
  color: #ee2222;
}

/* Filter links */
a.pp-type-btn {
  text-decoration: none;
}

/* =========================================
   WHAT WE OFFER SECTION
   ========================================= */
.pp-offer-section {
  padding: 80px 0;
  background: #fff;
}

.pp-offer-subtitle {
  font-size: 15px;
  color: #888;
  max-width: 600px;
  margin: 14px auto 0;
  line-height: 1.7;
}

.pp-offer-card {
  background: #fff;
  border: 1.5px solid #f0f0f0;
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.pp-offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #c9a84c;
  border-radius: 0 4px 4px 0;
  transition: height 0.4s ease;
}

.pp-offer-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.pp-offer-card:hover::before {
  height: 100%;
}

.pp-offer-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.pp-offer-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f2a3c;
  margin-bottom: 10px;
}

.pp-offer-desc {
  font-size: 13.5px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 16px;
}

.pp-offer-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pp-offer-tags li {
  font-size: 11.5px;
  font-weight: 600;
  color: #27ae60;
  background: rgba(39,174,96,0.08);
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pp-offer-tags li i {
  font-size: 10px;
}

/* =========================================
   WORK WITH US / CTA SECTION
   ========================================= */
.pp-cta-section {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(135deg, #0f2a3c 0%, #1a3d55 50%, #0f2a3c 100%);
  overflow: hidden;
}

.pp-cta-overlay {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600') center/cover no-repeat;
  opacity: 0.08;
}

.pp-cta-label {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: #c9a84c;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  padding: 8px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(201,168,76,0.25);
}

.pp-cta-title {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.pp-cta-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 540px;
}

/* Feature list */
.pp-cta-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pp-cta-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pp-cta-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(201,168,76,0.15);
  color: #c9a84c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.pp-cta-feature h5 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.pp-cta-feature p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.5;
}

/* CTA Card */
.pp-cta-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  text-align: center;
}

.pp-cta-card-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f2a3c;
  margin-bottom: 6px;
}

.pp-cta-card-title i {
  color: #c9a84c;
}

.pp-cta-card-desc {
  font-size: 13px;
  color: #999;
  margin-bottom: 24px;
}

.pp-cta-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.3px;
}

.pp-cta-btn-primary {
  background: linear-gradient(135deg, #c9a84c, #b89640);
  color: #fff;
  border: none;
}

.pp-cta-btn-primary:hover {
  background: linear-gradient(135deg, #b89640, #a78530);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
  color: #fff;
  transform: translateY(-2px);
}

.pp-cta-btn-outline {
  background: transparent;
  color: #0f2a3c;
  border: 1.5px solid #ddd;
}

.pp-cta-btn-outline:hover {
  border-color: #c9a84c;
  color: #c9a84c;
  background: rgba(201,168,76,0.04);
}

.pp-cta-btn-dark {
  background: #0f2a3c;
  color: #fff;
  border: none;
  margin-bottom: 0;
}

.pp-cta-btn-dark:hover {
  background: #1a3d55;
  color: #fff;
  box-shadow: 0 6px 20px rgba(15,42,60,0.3);
  transform: translateY(-2px);
}

/* Trust badges */
.pp-cta-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #f0f0f0;
}

.pp-cta-trust-item {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pp-cta-trust-item i {
  color: #c9a84c;
  font-size: 11px;
}

/* ===== PAGINATION ===== */
.pp-pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding-top: 30px;
}

.pp-pagination nav {
  display: flex;
  justify-content: center;
}

.pp-pagination .pagination {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.pp-pagination .page-item .page-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  color: #0f2a3c;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.pp-pagination .page-item .page-link:hover {
  border-color: #c9a84c;
  color: #c9a84c;
  background: rgba(201,168,76,0.06);
}

.pp-pagination .page-item.active .page-link {
  background: #c9a84c;
  border-color: #c9a84c;
  color: #fff;
  box-shadow: 0 4px 12px rgba(201,168,76,0.3);
}

.pp-pagination .page-item.disabled .page-link {
  color: #ccc;
  border-color: #eee;
  background: #fafafa;
  cursor: not-allowed;
}

/* Prev/Next buttons wider */
.pp-pagination .page-item:first-child .page-link,
.pp-pagination .page-item:last-child .page-link {
  width: auto;
  padding: 0 16px;
  font-size: 13px;
}

/* ===== MOBILE FILTER FAB BUTTON (hidden on desktop) ===== */
.pp-mobile-filter-fab {
  display: none;
}

/* ===== DRAWER HEADER (hidden on desktop) ===== */
.pp-drawer-header {
  display: none;
}

/* ===== FILTER OVERLAY (hidden on desktop) ===== */
.pp-filter-overlay {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .pp-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .pp-title {
    font-size: 28px;
  }
  .pp-filter-form {
    flex-direction: column;
    gap: 12px;
  }
  .pp-filter-group {
    min-width: 100%;
  }
  .pp-filter-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ===== MOBILE APP-STYLE BOTTOM SHEET ===== */
@media (max-width: 768px) {

  /* Show FAB button */
  .pp-mobile-filter-fab {
    display: flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 1040;
    background: linear-gradient(135deg, #c9a84c, #b89640);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(201,168,76,0.45), 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
  }

  .pp-mobile-filter-fab:active {
    transform: scale(0.95);
  }

  .pp-mobile-filter-fab i {
    font-size: 16px;
  }

  .pp-fab-badge {
    background: #fff;
    color: #c9a84c;
    font-size: 11px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
  }

  /* Overlay */
  .pp-filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1049;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .pp-filter-overlay.open {
    display: block;
    opacity: 1;
  }

  /* Bottom sheet drawer */
  .pp-filter-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    margin-bottom: 0;
    border-radius: 24px 24px 0 0;
    padding: 0 20px 24px;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
    border: none;
    max-height: 85vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    -webkit-overflow-scrolling: touch;
  }

  .pp-filter-bar.open {
    transform: translateY(0);
  }

  /* Drawer header */
  .pp-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 12px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 16px;
  }

  .pp-drawer-handle {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 4px;
  }

  .pp-drawer-title {
    font-size: 16px;
    font-weight: 800;
    color: #0f2a3c;
    letter-spacing: 0.3px;
  }

  .pp-drawer-title i {
    color: #c9a84c;
    margin-right: 8px;
  }

  .pp-drawer-close {
    background: #f5f5f5;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
  }

  .pp-drawer-close:active {
    background: #eee;
    color: #555;
  }

  /* Filter form stacked on mobile */
  .pp-filter-form {
    flex-direction: column;
    gap: 16px;
  }

  .pp-filter-group {
    min-width: 100%;
  }

  .pp-filter-label {
    font-size: 12px;
    margin-bottom: 8px;
    color: #777;
  }

  .pp-filter-input,
  .pp-filter-select {
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 15px;
    border: 1.5px solid #e8e8e8;
    background: #f8f9fa;
    -webkit-appearance: none;
  }

  .pp-filter-select {
    background: #f8f9fa url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") no-repeat right 16px center;
    padding-right: 40px;
  }

  /* Full-width action buttons */
  .pp-filter-actions {
    flex-direction: column;
    gap: 10px;
    padding-top: 8px;
  }

  .pp-filter-submit {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-align: center;
  }

  .pp-filter-clear {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    font-size: 14px;
    text-align: center;
    display: block;
  }

  /* Type quick filters — horizontal scroll */
  .pp-type-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    margin-bottom: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 6px;
  }

  .pp-type-filters::-webkit-scrollbar {
    display: none;
  }

  .pp-type-btn {
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 20px;
  }

  /* Section padding */
  .pp-section {
    padding: 50px 0 40px;
  }

  .pp-title {
    font-size: 24px;
  }

  /* Smaller count text */
  .pp-count {
    font-size: 12px;
    margin-bottom: 20px;
  }

  /* Card tweaks */
  .pp-card-body {
    padding: 16px 18px 18px;
  }

  .pp-price {
    font-size: 15px;
  }

  /* Pagination */
  .pp-pagination .page-item .page-link {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  /* Active filter tags wrap */
  .pp-active-filter {
    display: block;
    margin-left: 0;
    margin-top: 6px;
    font-size: 12px;
  }

  /* Offer section mobile */
  .pp-offer-section {
    padding: 50px 0;
  }

  .pp-offer-subtitle {
    font-size: 13px;
  }

  .pp-offer-card {
    padding: 24px 22px;
    border-radius: 16px;
  }

  .pp-offer-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
    border-radius: 12px;
    margin-bottom: 16px;
  }

  .pp-offer-title {
    font-size: 16px;
  }

  /* CTA section mobile */
  .pp-cta-section {
    padding: 50px 0;
  }

  .pp-cta-title {
    font-size: 26px;
  }

  .pp-cta-desc {
    font-size: 13.5px;
    margin-bottom: 24px;
  }

  .pp-cta-features {
    margin-bottom: 30px;
  }

  .pp-cta-card {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .pp-cta-trust {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
