/* =========================================
   GLOBAL SECTION STYLES
========================================= */

.section-label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.5rem); /* FIXED */
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-heading span {
  color: var(--primary);
}

.section-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.section-text.muted {
  color: #64748b;
}

/* =========================================
   BELIEF SECTION
========================================= */

.belief-section {
  position: relative;
  padding: 120px 0;

  background-image:
    linear-gradient(to right, rgba(10,173,94,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,173,94,0.08) 1px, transparent 1px);

  background-size: 64px 64px;
  background-color: #edf5f1;
}

.belief-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1d1e1f;
  margin-bottom: 20px;
}

.belief-title span {
  color: var(--primary);
}

.belief-text {
  color: #1d1e1f;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* =========================================
   LET’S CONNECT BUTTON (FULLY RESPONSIVE)
========================================= */

.btn-belief {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  min-height: 52px;
  padding: 0 28px;

  background: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;

  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-decoration: none;

  transition: all 0.35s ease;
}

.btn-belief .btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;
  border-radius: 50%;

  font-size: 16px;
  background: rgba(255,255,255,0.2);
  transition: all 0.35s ease;
}

/* Hover Effect */
.btn-belief:hover {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(16,185,129,0.25);
}

.btn-belief:hover .btn-arrow {
  background: var(--primary);
  color: #ffffff;
  transform: translateX(4px);
}

/* 📱 Mobile Version */
@media (max-width: 768px) {

  .belief-title,
  .belief-text {
    text-align: center;
  }

  .btn-belief {
    width: 100%;
    max-width: 280px;
    margin: 25px auto 0;
  }
}

/* =========================================
   BELIEF GLASS CARDS
========================================= */

.belief-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.belief-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 35px 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.belief-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 30px 60px rgba(10,173,94,0.2);
}

.belief-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1d1e1f;
}

.belief-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
}

/* =========================================
   JOURNEY SECTION
========================================= */

.journey-section {
  padding: 120px 0;
}

.journey-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.journey-track::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(10,173,94,0.2),
    rgba(10,173,94,0.6)
  );
}

.journey-step {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transition: 0.4s ease;
}

.journey-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(10,173,94,0.18);
}

.step-dot {
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: -8px;
  left: 28px;
  box-shadow: 0 0 0 6px rgba(10,173,94,0.1);
}

@media (max-width: 992px) {
  .journey-track {
    grid-template-columns: 1fr;
  }

  .journey-track::before {
    display: none;
  }
}

/* =========================================
   WHAT MAKES US DIFFERENT
========================================= */

.different-main-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 45px 40px;
  border-left: 5px solid var(--primary);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.different-main-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(10,173,94,0.18);
}

.different-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.different-list li {
  font-size: 1.05rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.different-list li:last-child {
  border-bottom: none;
}
/* =========================================
   CONTACT SECTION (NOT REMOVED)
========================================= */

.contact-section {
  padding: 120px 0;

  background-image:
    linear-gradient(to right, rgba(10,173,94,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,173,94,0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  background-color: #edf5f1;
}

.contact-header {
  max-width: 700px;
  margin: 0 auto 70px;
}

.contact-card {
  max-width: 720px;
  padding: 50px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 2px solid rgba(16,185,129,0.3);
  box-shadow: 0 20px 45px rgba(16,185,129,0.12);
}

.contact-card ::placeholder {
  color: #94a3b8;
}

.form-control,
.form-select {
  height: 52px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
}

textarea.form-control {
  height: auto;
}

.contact-btn {
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  background: #10b981;
  border-color: #10b981;
  color: #fff;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #059669;
  border-color: #059669;
}

/* Contact Responsive */
@media (max-width: 768px) {
  .contact-card {
    padding: 30px 20px;
  }
}