/* My CA Buddy - Professional CA Firm Website */
/* Color Palette: Green (#28a745), Blue (#0d6efd), White */

:root {
  --primary-green: #28a745;
  --primary-blue: #0d6efd;
  --primary-accent: #198754;
  --light-bg: #f8f9fa;
  --dark-text: #212529;
  --light-text: #6c757d;
}

/* Global Styles */
* {
  scroll-padding-top: 70px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 1rem 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  padding: 0.6rem 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.brand-logo {
  height: 46px; /* Slightly larger for presence */
  width: auto;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.08));
}

.brand-logo:hover {
  transform: scale(1.05) translateY(-2px);
  filter: drop-shadow(0 8px 15px rgba(13, 110, 253, 0.15));
}

.nav-link {
  color: var(--dark-text) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green) !important;
}

.btn-primary {
  background: var(--primary-green);
  border-color: var(--primary-green);
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--primary-accent);
  border-color: var(--primary-accent);
}

.btn-accent {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #fff;
}

.btn-accent:hover {
  background: #0b5ed7;
  border-color: #0b5ed7;
  color: #fff;
}

/* --- Upgraded Hero Section --- */
.hero-section {
  min-height: 100vh;
  background-color: #f8fafc;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 130px;
  padding-bottom: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Glassmorphism Card Additions */
.hero-section .card {
  transition: transform 0.3s ease;
}

.hero-section .card:hover {
  transform: translateY(-5px);
}

/* Typography */
.hero-title {
  color: #0f172a;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.highlight-blue {
  color: var(--primary-blue);
}

.hero-lead {
  color: #475569;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 95%;
}

/* Feature grid */
.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 0.6rem 1rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.01);
}

.feature-item:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(40, 167, 69, 0.3);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.05);
}

.feature-icon-wrapper {
  color: var(--primary-green);
  margin-right: 0.75rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.feature-item span {
  color: #1e293b;
  font-weight: 600;
  font-size: 0.95rem;
}

/* CTAs */
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-solid-green {
  background-color: var(--primary-green);
  border: 1px solid var(--primary-green);
  color: #fff;
  font-weight: 600;
  padding: 0.85rem 2rem;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.15);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-solid-green:hover {
  background-color: var(--primary-accent);
  border-color: var(--primary-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.25);
}

.btn-outline-custom {
  border: 2px solid rgba(13, 110, 253, 0.25);
  color: var(--primary-blue);
  background: rgba(13, 110, 253, 0.02);
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline-custom:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
}

/* Consultation Card */
.consultation-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08) !important;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consultation-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 50px rgba(15, 23, 42, 0.12) !important;
}

.card-header-custom {
  background-color: var(--primary-blue);
  color: #fff;
  padding: 1.75rem 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.card-header-custom h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.card-header-custom p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.consultation-card form {
  padding: 2rem;
}

.consultation-card .form-label {
  font-weight: 600;
  color: #334155;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.consultation-card .form-control,
.consultation-card .form-select {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #cbd5e1;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  color: #1e293b;
  transition: all 0.25s ease;
}

.consultation-card .form-control:focus,
.consultation-card .form-select:focus {
  border-color: var(--primary-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
  outline: none;
}

.btn-solid-blue {
  background-color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.15);
}

.btn-solid-blue:hover {
  background-color: #0b5ed7;
  border-color: #0b5ed7;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.25);
}

.form-trust-text {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

/* Custom Hero Responsive Adjustments */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero-title {
    font-size: 2.6rem;
    text-align: center;
  }

  .hero-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-badge-container {
    text-align: center;
  }

  .hero-features-grid {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .hero-features-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    margin-right: 0 !important;
    text-align: center;
  }

  .consultation-card form {
    padding: 1.5rem;
  }
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-light {
  background: #fff;
}

.section-blue {
  background: linear-gradient(135deg, var(--primary-blue), #0a58ca);
  color: #fff;
}

/* Section Background Alternation and Demarcation */
#about,
#why,
#faq {
  background: #ffffff;
}

#services,
#testimonials,
#contact {
  background: #f8fafc;
  border-top: 1px solid rgba(226, 232, 240, 0.7);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

#benefits .section-heading h2,
#testimonials .section-heading h2,
#faq .section-heading h2,
#contact .section-heading h2 {
  color: var(--dark-text);
}

#benefits .section-heading p,
#testimonials .section-heading p,
#faq .section-heading p,
#contact .section-heading p {
  color: var(--light-text);
}

.section-kicker,
.trust-kicker {
  color: var(--primary-blue) !important;
  background-color: rgba(13, 110, 253, 0.05) !important;
  padding: 0.4rem 1.1rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  font-size: 0.78rem !important;
  display: inline-block !important;
  margin-bottom: 1rem !important;
  border: 1px solid rgba(13, 110, 253, 0.1) !important;
}

.section-heading {
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

/* About Section */
.about-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.about-p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.about-trust-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.trust-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.trust-feature-item i {
  font-size: 1.4rem;
  color: var(--primary-green);
  background: rgba(40, 167, 69, 0.08);
  padding: 0.6rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.trust-feature-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.trust-feature-item p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.about-stats-upgraded {
  display: flex;
  gap: 1.25rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
  border-top: 1px solid #e2e8f0;
  padding-top: 1.5rem;
}

.stat-box {
  flex: 1;
  min-width: 120px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  padding: 1rem;
  border-radius: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: #ffffff;
  border-color: rgba(13, 110, 253, 0.2);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.05);
}

.stat-box strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 0.25rem;
}

.stat-box span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
}

.about-logo-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 1.5rem;
  padding: 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.03) !important;
  min-height: 380px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Floating Brand Icons styling */
.floating-trust-icon {
  position: absolute;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 0.45rem 0.9rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
  z-index: 3;
}

.floating-trust-icon i {
  font-size: 0.95rem;
}

.floating-trust-icon .rupee-char {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
}

.icon-gst {
  top: 25%;
  left: 20px;
  color: var(--primary-green);
  border-color: rgba(40, 167, 69, 0.2);
  animation: float-icon-1 6s infinite alternate ease-in-out;
}

.icon-tax {
  bottom: 25%;
  left: 30px;
  color: var(--primary-blue);
  border-color: rgba(13, 110, 253, 0.2);
  animation: float-icon-2 8s infinite alternate ease-in-out;
}

.icon-rupee {
  top: 45%;
  right: 20px;
  color: var(--primary-green);
  border-color: rgba(40, 167, 69, 0.2);
  animation: float-icon-3 7s infinite alternate ease-in-out;
}

@keyframes float-icon-1 {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-8px) rotate(3deg);
  }
}

@keyframes float-icon-2 {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(8px) rotate(-4deg);
  }
}

@keyframes float-icon-3 {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-6px) rotate(-2deg);
  }
}

.about-logo-card:hover .floating-trust-icon {
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

.about-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.07) !important;
}

.about-logo-wrapper {
  max-width: 260px;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.about-logo-card:hover .about-logo-wrapper {
  transform: scale(1.05);
}

.about-logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-logo-badge {
  position: absolute;
  bottom: 24px;
  background-color: var(--primary-blue);
  color: #fff;
  padding: 0.45rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.about-badge-side {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(40, 167, 69, 0.06);
  border: 1px solid rgba(40, 167, 69, 0.15);
  color: var(--primary-accent);
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.about-badge-side .pulse-indicator {
  width: 6px;
  height: 6px;
  background-color: var(--primary-green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  animation: pulse-dot-about 1.8s infinite;
}

@keyframes pulse-dot-about {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(40, 167, 69, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

/* Department-wise Services Layout */
.dept-section {
  padding: 5rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.dept-section:nth-of-type(even) {
  background-color: #f8fafc;
}

.dept-kicker {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-blue);
  letter-spacing: 1.2px;
  margin-bottom: 0.75rem;
  display: block;
}

.dept-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.dept-desc {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn-dept-cta {
  background-color: var(--primary-green);
  color: #ffffff;
  padding: 0.8rem 1.6rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-dept-cta:hover {
  background-color: #218838;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.25);
}

.sub-service-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  height: 100%;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.02);
  transition: all 0.3s ease;
}

.sub-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(13, 110, 253, 0.2);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.sub-service-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(13, 110, 253, 0.06);
  color: var(--primary-blue);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.sub-service-card:hover .sub-service-icon {
  background-color: var(--primary-blue);
  color: #ffffff;
}

.sub-service-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.6rem;
}

.sub-service-card p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Professional Why Choose Us Section */
.why-professional-section {
  padding: 6rem 0;
  border-top: 1px solid #f8fafc;
  border-bottom: 1px solid #f8fafc;
}

.pro-feature-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 2.5rem 1.5rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.02);
}

.pro-feature-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  transform: translateY(-6px);
}

.pro-icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: #f1f5f9;
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem auto;
  transition: all 0.3s ease;
}

.pro-feature-card:hover .pro-icon-wrapper {
  background-color: var(--primary-blue);
  color: #ffffff;
}

.pro-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.pro-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

.pro-trust-banner {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 1.25rem 2.5rem;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.02);
}

/* Advanced Process Timeline */
.adv-process-section {
  background-color: #0f172a;
  /* Dark premium background */
  color: #ffffff;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

/* Background ambient glows */
.adv-process-section::before,
.adv-process-section::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.adv-process-section::before {
  top: -200px;
  left: -200px;
  background: rgba(13, 110, 253, 0.15);
}

.adv-process-section::after {
  bottom: -200px;
  right: -200px;
  background: rgba(40, 167, 69, 0.1);
}

.adv-process-section .section-heading h2 {
  color: #ffffff;
}

.adv-process-section .section-heading p {
  color: #94a3b8;
}

.advanced-process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 2;
}

.timeline-center-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, rgba(13, 110, 253, 0), rgba(13, 110, 253, 0.5), rgba(40, 167, 69, 0.5), rgba(13, 110, 253, 0));
  transform: translateX(-50%);
}

.timeline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-row:last-child {
  margin-bottom: 0;
}

.timeline-content-left,
.timeline-content-right {
  width: 45%;
}

.timeline-center-node {
  width: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.node-icon {
  width: 60px;
  height: 60px;
  background: #1e293b;
  border: 2px solid var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(13, 110, 253, 0.4);
  transition: all 0.4s ease;
}

.timeline-row:hover .node-icon {
  background: var(--primary-blue);
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(13, 110, 253, 0.6);
}

.glass-panel {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.timeline-row:hover .glass-panel {
  transform: translateY(-8px);
  border-color: rgba(13, 110, 253, 0.3);
  box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
}

.step-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(13, 110, 253, 0.15);
  color: #60a5fa;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 2rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(13, 110, 253, 0.2);
}

.step-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.step-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.step-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.step-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 0.8rem;
  border-radius: 0.5rem;
}

/* Responsive */
@media (max-width: 767.98px) {
  .timeline-center-line {
    left: 30px;
    transform: none;
  }

  .timeline-content-left,
  .timeline-content-right {
    width: 100%;
    padding-left: 80px;
  }

  .timeline-center-node {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    justify-content: center;
  }

  .timeline-row {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
  }

  .empty-col {
    display: none;
  }
}

/* Google Reviews Layout */
.google-reviews-header {
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  background-color: #f8fafc !important;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.01);
}

.google-stars i {
  font-size: 1.1rem;
  color: #ffc107;
  margin-right: 2px;
}

.google-review-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.015) !important;
}

.google-review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(13, 110, 253, 0.15);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05) !important;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-r {
  background-color: #4285f4;
}

.avatar-p {
  background-color: #e91e63;
}

.avatar-a {
  background-color: #009688;
}

.reviewer-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.reviewer-badge {
  font-size: 0.75rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.review-stars-date .stars i {
  font-size: 0.85rem;
  color: #ffc107;
}

.review-date {
  font-size: 0.75rem;
  color: #94a3b8;
}

.review-text {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
  flex-grow: 1;
}

.owner-reply {
  background-color: #f8fafc;
  border-left: 3px solid var(--primary-blue);
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 1rem;
  margin-top: auto;
}

.owner-header {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.reply-text {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* Benefits Section */
.benefit-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  height: 100%;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(13, 110, 253, 0.15);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

.benefit-icon {
  width: 65px;
  height: 65px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.bg-blue-light {
  background-color: rgba(13, 110, 253, 0.08);
  color: var(--primary-blue);
}

.bg-green-light {
  background-color: rgba(40, 167, 69, 0.08);
  color: var(--primary-green);
}

.benefit-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Blog Section */
.bg-light-gradient {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.blog-card {
  background: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(13, 110, 253, 0.2);
}

.blog-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.blog-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-blue);
  color: #ffffff;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.blog-content {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

.blog-meta i {
  color: var(--primary-blue);
  margin-right: 4px;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.blog-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title a {
  color: var(--primary-blue);
}

.blog-excerpt {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-read-more:hover {
  color: #0b5ed7;
}

.blog-read-more:hover i {
  transform: translateX(4px);
}

/* FAQ */
.faq-container {
  max-width: 800px;
}

.accordion-button {
  font-weight: 600;
  color: var(--dark-text);
}

.accordion-button:not(.collapsed) {
  background: var(--primary-green);
  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-green);
}

/* Contact Section */
#contact {
  background: #fff;
}

#contact .section-heading h2 {
  color: var(--dark-text);
}

#contact .section-heading p {
  color: var(--light-text);
}

#contact .section-kicker {
  color: var(--primary-green);
}

.hover-primary {
  transition: color 0.3s ease;
}

.hover-primary:hover {
  color: var(--primary-blue) !important;
}

/* Footer */
.footer-link-hover {
  transition: all 0.3s ease;
}

.footer-link-hover:hover {
  color: #fff !important;
  transform: translateX(5px);
  display: inline-block;
}

.footer-social-icon {
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  background: var(--primary-blue) !important;
  color: #fff !important;
  transform: translateY(-3px);
}

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-accent);
}

.copyright {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #495057;
  font-size: 0.9rem;
  color: #adb5bd;
}

/* Floating Actions - Bottom Right Corner */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  z-index: 1000;
}

.floating-btn {
  display: flex;
  align-items: center;
  height: 60px;
  border-radius: 30px;
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  max-width: 60px;
  background: #fff;
}

.floating-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: #fff;
}

.floating-call .floating-icon-wrapper {
  background: var(--primary-blue);
}

.floating-whatsapp .floating-icon-wrapper {
  background: #25d366;
}

.floating-text {
  font-weight: 600;
  font-size: 1rem;
  padding: 0 20px 0 10px;
  white-space: nowrap;
  opacity: 0;
  color: #333;
  transition: opacity 0.3s ease;
}

.floating-btn:hover {
  max-width: 250px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.floating-btn:hover .floating-text {
  opacity: 1;
}

/* Pulse Animation for WhatsApp */
@keyframes iconPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.pulse-animation {
  animation: iconPulse 2s infinite;
}

/* Form Validation */
.form-alert {
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
}

.form-alert.success {
  background: #d1e7dd;
  color: #0f5132;
}

.form-alert.error {
  background: #f8d7da;
  color: #842029;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 3rem 0;
  }

  .benefits-box,
  .contact-info-card {
    padding: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem;
  }
}

/* Custom Contact Form */
input[type="radio"].form-check-input {
  display: none;
}

input[type="radio"].form-check-input+label {
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  color: #64748b;
  border-color: #e2e8f0 !important;
}

input[type="radio"].form-check-input:checked+label {
  background-color: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue) !important;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.2);
}

.custom-contact-input:focus {
  border-color: var(--primary-blue) !important;
  box-shadow: 0 1px 0 0 var(--primary-blue) !important;
}

.form-floating>.custom-contact-input:focus~label,
.form-floating>.custom-contact-input:not(:placeholder-shown)~label {
  color: var(--primary-blue) !important;
  transform: scale(0.85) translateY(-1rem) translateX(-0.15rem);
}