

/*---------GBP section----------*/
.gbp-section {
    background-color: #f8fafc;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
  }

  .gbp-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
  }

  /* Map Card */
  .gbp-map-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
  }

  .gbp-map-card h3 {
    margin-top: 0;
    color: #0f172a;
    font-size: 1.25rem;
  }

  .gbp-map-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .map-wrapper {
    border-radius: 8px;
    overflow: hidden;
  }

  /* Review Card */
  .gbp-review-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
  }

  .rating-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
  }

  .stars {
    color: #f59e0b;
    font-size: 1.2rem;
    letter-spacing: 2px;
  }

  .rating-text {
    font-size: 0.9rem;
    font-weight: bold;
    color: #334155;
  }

  .gbp-review-card h2 {
    margin: 0 0 10px 0;
    color: #0f172a;
    font-size: 1.5rem;
  }

  .gbp-review-card p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* Buttons */
  .btn-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s ease;
  }

  .btn-review:hover {
    background-color: #1d4ed8;
  }

  .btn-view-map {
    display: inline-block;
    text-align: center;
    color: #2563eb;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .btn-view-map:hover {
    text-decoration: underline;
  }

  /* Responsive Design for Mobile Devices */
  @media (max-width: 768px) {
    .gbp-container {
      grid-template-columns: 1fr;
    }
  }
