/* ==========================================================================
   HOMEPAGE SPECIFIC STYLES
   ========================================================================== */

/* QUICK SERVICE STRIP */
.quick-services-bar {
  background: var(--white);
  margin-top: -45px;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

.quick-svc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}

.quick-svc-item:hover {
  background-color: var(--primary-light);
}

.quick-svc-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.quick-svc-item:hover .quick-svc-icon {
  background: var(--primary-color);
  color: var(--white);
  transform: rotateY(180deg);
}

.quick-svc-text h6 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.quick-svc-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ABOUT SECTION */
.about-image-wrapper {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about-experience-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--primary-color);
  color: var(--white);
  padding: 1.75rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4);
  text-align: center;
}

.about-experience-badge .exp-number {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.about-experience-badge .exp-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-counter-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.stat-counter-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.stat-counter-card h3 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.stat-counter-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
}

/* SERVICE CARDS GRID */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.service-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-icon-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-card-body {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-card-link {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-card-link:hover {
  color: var(--primary-hover);
  gap: 0.7rem;
}

/* WHY CHOOSE US BENEFITS */
.benefit-box {
  display: flex;
  gap: 1.25rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.benefit-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.benefit-icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* PROCESS STEPS */
.process-step-card {
  text-align: center;
  position: relative;
  padding: 1.5rem;
}

.step-number-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  box-shadow: 0 8px 20px rgba(10, 17, 40, 0.25);
}

.step-number-circle::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px dashed var(--primary-color);
}

.process-step-card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* RATE CHART TABLE */
.rate-chart-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.rate-table {
  margin-bottom: 0;
}

.rate-table thead {
  background: var(--secondary-color);
  color: var(--white);
}

.rate-table th {
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
}

.rate-table td {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  vertical-align: middle;
}

/* REVIEWS & TESTIMONIALS */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.stars-rating {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

/* CALL TO ACTION BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  box-shadow: 0 20px 40px rgba(211, 47, 47, 0.35);
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

@media (max-width: 991.98px) {
  .quick-services-bar {
    margin-top: 0;
  }
  .about-experience-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 1rem;
  }
  .cta-banner {
    padding: 2.5rem 1.5rem;
    text-align: center;
  }
}
