/* ==========================================
   SHUFFL‑EV — ULTRA PREMIUM LEGAL PAGE
   (Same Grid Background as About/Services)
========================================== */

.legal-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;

  /* GRID BACKGROUND */
  background-image:
    linear-gradient(to right, rgba(16,185,129,0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(16,185,129,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  background-color: #edf5f1;
}

/* Soft Glow Circles */
.legal-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,0.25), transparent 70%);
  top: -150px;
  right: -150px;
  z-index: 0;
}

.legal-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,0.25), transparent 70%);
  bottom: -150px;
  left: -150px;
  z-index: 0;
}

.legal-section .container {
  position: relative;
  z-index: 2;
}

/* ================= HEADER ================= */

.legal-header {
  max-width: 820px;
  margin: 0 auto 80px;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: #10b981;
  background: rgba(16,185,129,0.12);
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-heading {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-text {
  font-size: 1.1rem;
  color: #475569;
  margin-top: 15px;
}

/* ================= CONTENT CARD ================= */

.legal-content {
  max-width: 1000px;
  margin: auto;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(25px);
  border-radius: 28px;
  padding: 70px 80px;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255,255,255,0.6);
  transition: all 0.4s ease;
}

.legal-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 60px 140px rgba(16,185,129,0.18);
}

/* ================= CONTENT BLOCK ================= */

.legal-block {
  margin-bottom: 45px;
  padding-left: 55px;
  position: relative;
  transition: all 0.3s ease;
}

.legal-block:hover {
  transform: translateX(8px);
}

/* Premium Vertical Gradient Line */
.legal-block::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 10px;
  width: 4px;
  height: 75%;
  background: linear-gradient(180deg, #10b981, #059669);
  border-radius: 5px;
}

/* Heading Style */
.legal-content h4 {
  font-weight: 700;
  font-size: 1.35rem;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Icon Style */
.legal-icon {
  font-size: 1.2rem;
  color: #10b981;
  background: rgba(16,185,129,0.15);
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(16,185,129,0.25);
  transition: all 0.3s ease;
}

.legal-block:hover .legal-icon {
  transform: scale(1.1);
  background: #10b981;
  color: #fff;
}

/* Paragraph */
.legal-content p {
  color: #334155;
  line-height: 1.9;
  font-size: 1.05rem;
  margin-top: 12px;
}

/* ================= CONTACT SECTION ================= */

.legal-contact {
  margin-top: 50px;
  padding: 22px 30px;
  border-radius: 16px;
  background: linear-gradient(90deg, #10b981, #059669);
  color: #ffffff;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; /* space between email & phone */
  box-shadow: 0 20px 50px rgba(16,185,129,0.35);
  flex-wrap: wrap; /* responsive safety */
}

.legal-contact span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.legal-contact i {
  font-size: 1.1rem;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .section-heading {
    font-size: 2.3rem;
  }

  .legal-content {
    padding: 50px 35px;
  }
}

@media (max-width: 768px) {
  .legal-content {
    padding: 35px 25px;
  }

  .legal-block {
    padding-left: 40px;
  }

  .legal-contact {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
