/* ============================================================
   TERMS CLAUSE STYLES (extend partner-copy)
   ============================================================ */
.terms-clause {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eef2f6;
}

.terms-clause:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* strong {
  color: #d31013;
} */

.terms-clause h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}

.terms-clause p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
}

.terms-clause ul {
  padding-left: 24px;
  margin-top: 10px;
}

.terms-clause ul li {
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 6px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .terms-clause h3 {
    font-size: 1.25rem;
  }
  .terms-clause p,
  .terms-clause ul li {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .terms-clause h3 {
    font-size: 1.1rem;
  }
  .terms-clause p,
  .terms-clause ul li {
    font-size: 0.9rem;
  }
}

/* --- 1. HERO SECTION (Dark Premium Gradient) --- */
/* ============================================================
   STYLES FOR: ABOUT-HERO
   ============================================================ */

.about-hero {
  background: var(--gradient-premium-dark);
  padding: 160px 24px 100px;
  position: relative;
  overflow: hidden;
}

/* Animated Grid Background */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(#bf1a1a24 1px, transparent 1px),
    linear-gradient(90deg, #bf1a1a26 2px, transparent 2px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}

/* Glow Effect */
.about-hero .glow-blob-hero {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(231, 24, 27, 0.15) 0%,
    transparent 70%
  );
  top: -10%;
  right: -5%;
  border-radius: 50%;
  z-index: 1;
}

.about-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 60px;
  }
}

.about-hero .hero-content {
  color: var(--color-white);
  width: 100%;
  max-width: 100%;
  text-align: center;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-hero .badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 0 rgba(231, 24, 27, 0.7);
  animation: badge-pulse-animation 2s infinite;
}

@keyframes badge-pulse-animation {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(231, 24, 27, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(231, 24, 27, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(231, 24, 27, 0);
  }
}

.about-hero .hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--color-white);
}

.about-hero .hero-desc {
  font-size: 1.3rem;
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 35px;
}

.about-hero .hero-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 70px;
}

.btn-primary.hero-cta {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 14px 38px;
  border-radius: 60px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary.hero-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(231, 24, 27, 0.3);
  color: #fff;
}

.btn-outline.testimonial-cta {
  background: transparent;
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: 60px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline.testimonial-cta:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 10px 20px rgba(231, 24, 27, 0.3);
  transform: translateY(-2px);
}

/* Floating Enquire Badge */
.float-enquire {
  position: fixed;
  right: 0;
  top: 40%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right bottom;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 8px 8px 0 0;
  z-index: 999;
  box-shadow: -4px 0 20px rgba(231, 24, 27, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.float-enquire:hover {
  background: var(--color-primary-hover);
  padding-bottom: 34px;
  color: #fff;
}

.float-enquire i {
  margin-right: 8px;
}

/* --- Stats Grid inside Hero --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 5px;
}

.stat-item .stat-highlight {
  color: var(--color-primary);
  background: linear-gradient(135deg, #d31013 30%, #ff5252 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  font-size: 1.1rem;
  color: #cbd5e1;
  font-weight: 500;
}
