/* ============================================
   SAKSHAM RENEWABLES - Main Stylesheet
   Brand Colors: #17314E | #3DB45C | #FF7817
   Font: Poppins
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy: #17314E;
  --navy-dark: #0e1f33;
  --navy-light: #1e4068;
  --green: #3DB45C;
  --green-dark: #2d903f;
  --green-light: #4fcb6b;
  --orange: #FF7817;
  --orange-dark: #e06510;
  --orange-light: #ff9a4d;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-gray: #eef1f6;
  --gray: #8a94a6;
  --dark-gray: #4a5568;
  --text-dark: #1a1a2e;
  --text-body: #4a5568;
  --shadow-sm: 0 2px 8px rgba(23, 49, 78, 0.06);
  --shadow-md: 0 4px 20px rgba(23, 49, 78, 0.10);
  --shadow-lg: 0 8px 40px rgba(23, 49, 78, 0.14);
  --shadow-xl: 0 16px 64px rgba(23, 49, 78, 0.18);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
}
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 50px;
}

.highlight-green {
  color: var(--green);
}

.highlight-orange {
  color: var(--orange);
}

.highlight-navy {
  color: var(--navy);
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255, 120, 23, 0.35);
  text-decoration: none;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 120, 23, 0.45);
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
}

.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-secondary-custom:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(61, 180, 92, 0.35);
  text-decoration: none;
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(61, 180, 92, 0.45);
  color: var(--white);
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--navy);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.saksham-header {
  /* position: fixed; */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  /* background: rgba(255,255,255,0.95); */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(23, 49, 78, 0.06);
  transition: var(--transition);
}

.saksham-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.saksham-header .navbar {
  padding: 12px 0;
}

.saksham-header .navbar-brand img {
  height: 52px;
  width: auto;
  transition: var(--transition);
}

.saksham-header .nav-link {
  color: var(--navy) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 18px !important;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
}

.saksham-header .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: var(--transition);
}

.saksham-header .nav-link:hover::after,
.saksham-header .nav-link.active::after {
  width: 24px;
}

.saksham-header .nav-link:hover {
  color: var(--orange) !important;
}

.saksham-header .nav-link.active {
  color: var(--orange) !important;
  font-weight: 600;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 120, 23, 0.3);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 120, 23, 0.4);
  color: var(--white) !important;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 16px;
}

.header-phone i {
  color: var(--green);
}

/* Mobile Toggler */
.saksham-header .navbar-toggler {
  border: 2px solid var(--navy);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.saksham-header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2317314E' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}






/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
  margin-top: 0;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 31, 51, 0.92) 0%, rgba(23, 49, 78, 0.75) 50%, rgba(14, 31, 51, 0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 60px 0;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(61, 180, 92, 0.15);
  border: 1px solid rgba(61, 180, 92, 0.3);
  border-radius: 50px;
  color: var(--green-light);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}

.hero-badge i {
  font-size: 0.75rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.8;
  animation: fadeInUp 1s ease;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 1.2s ease;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1.4s ease;
}

.hero-stat-item h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.hero-stat-item h3 span {
  color: var(--orange);
}

.hero-stat-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.hero-image-wrapper {
  position: relative;
  z-index: 3;
  display: inline-block;
  max-width: 100%;
  animation: fadeInRight 1s ease;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-card img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.hero-float-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatAnimation 3s ease-in-out infinite;
  z-index: 4;
}

.hero-float-card .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-float-card h4 {
  font-size: 1.15rem;
  margin: 0;
  font-weight: 700;
}

.hero-float-card p {
  font-size: 0.78rem;
  color: var(--gray);
  margin: 0;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  padding: 12px 0;
  color: var(--white);
  overflow: hidden;
}

.announcement-bar .marquee-content {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.announcement-bar .marquee-content i {
  color: var(--orange-light);
}

.announcement-bar .marquee-content span {
  font-size: 0.9rem;
  font-weight: 500;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--off-white);
}

.about-image-wrapper {
  position: relative;
}

.about-main-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-main-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-experience-badge h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  line-height: 1;
}

.about-experience-badge span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.about-label i {
  font-size: 0.8rem;
}

.about-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-feature-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.about-feature-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(61, 180, 92, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}

.about-feature-item span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--green), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-icon.green {
  background: rgba(61, 180, 92, 0.1);
  color: var(--green);
}

.service-icon.orange {
  background: rgba(255, 120, 23, 0.1);
  color: var(--orange);
}

.service-icon.navy {
  background: rgba(23, 49, 78, 0.1);
  color: var(--navy);
}

.service-card:hover .service-icon.green {
  background: var(--green);
  color: var(--white);
}

.service-card:hover .service-icon.orange {
  background: var(--orange);
  color: var(--white);
}

.service-card:hover .service-icon.navy {
  background: var(--navy);
  color: var(--white);
}

.service-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 16px;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-card .learn-more:hover {
  gap: 10px;
}

.service-card .learn-more i {
  font-size: 0.8rem;
  transition: var(--transition);
}

/* ============================================
   BENEFITS / SUBSIDY SECTION
   ============================================ */
.benefits-section {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(61, 180, 92, 0.05);
}

.benefits-section .section-title {
  color: var(--white);
}

.benefits-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.subsidy-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.subsidy-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: rgba(61, 180, 92, 0.3);
}

.subsidy-card .amount {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.subsidy-card .label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.subsidy-card .detail {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.subsidy-table-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 40px;
  backdrop-filter: blur(10px);
}

.subsidy-table-wrapper h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.subsidy-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.subsidy-table th {
  background: rgba(61, 180, 92, 0.15);
  color: var(--green-light);
  padding: 14px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

.subsidy-table th:first-child {
  border-radius: var(--radius-sm) 0 0 0;
  text-align: left;
}

.subsidy-table th:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}

.subsidy-table td {
  padding: 14px 20px;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.95rem;
}

.subsidy-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.subsidy-table tr:last-child td {
  border-bottom: none;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
  background: var(--white);
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  transition: var(--transition);
  height: 100%;
  border: 1px solid transparent;
}

.why-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61, 180, 92, 0.15);
  transform: translateY(-6px);
}

.why-card .icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition);
}

.why-card:nth-child(odd) .icon-wrapper {
  background: rgba(61, 180, 92, 0.1);
  color: var(--green);
}

.why-card:nth-child(even) .icon-wrapper {
  background: rgba(255, 120, 23, 0.1);
  color: var(--orange);
}

.why-card:hover .icon-wrapper {
  transform: scale(1.1);
}

.why-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0;
}

/* ============================================
   STATS / ACHIEVEMENTS SECTION
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 80%;
  right: 10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 120, 23, 0.08);
  filter: blur(80px);
}

.stat-item {
  text-align: center;
  padding: 24px;
}

.stat-item .stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.stat-item .stat-number span {
  color: var(--orange);
}

.stat-item .stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  margin: auto 0;
}

/* ============================================
   HOW IT WORKS / PROCESS SECTION
   ============================================ */
.process-section {
  background: var(--off-white);
}

.process-step {
  text-align: center;
  padding: 24px;
  position: relative;
}

.process-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 54px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  opacity: 0.3;
}

.process-step:last-child::after {
  display: none;
}

.process-step .icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  color: var(--green);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.process-step:hover .icon {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.process-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-body);
  margin: 0;
}

/* ============================================
   PROJECTS / GALLERY SECTION
   ============================================ */
.projects-section {
  background: var(--white);
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  height: 300px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 31, 51, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
}

.project-card:hover .project-card-overlay {
  background: linear-gradient(to top, rgba(14, 31, 51, 0.95) 0%, rgba(14, 31, 51, 0.3) 100%);
}

.project-card-overlay h5 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.project-card-overlay span {
  color: var(--green-light);
  font-size: 0.85rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  background: var(--off-white);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card .quote-icon {
  font-size: 2rem;
  color: var(--orange);
  opacity: 0.3;
  margin-bottom: 16px;
}

.testimonial-card .stars {
  color: var(--orange);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-author h6 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  background: var(--white);
}

.faq-accordion .accordion-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-accordion .accordion-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  padding: 20px 24px;
  background: var(--white);
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--off-white);
  color: var(--navy);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2317314E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(61, 180, 92, 0.06);
  filter: blur(80px);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 120, 23, 0.06);
  filter: blur(80px);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.saksham-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  /* margin-top: 60px; */
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #25d366;
  color: #fff !important;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  color: #fff !important;
}

.whatsapp-float i {
  font-size: 1.3rem;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 90px;
  right: 30px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: none;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatAnimation {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animations for children */
.animate-stagger>* {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-stagger.animated>*:nth-child(1) {
  transition-delay: 0.1s;
  opacity: 1;
  transform: translateY(0);
}

.animate-stagger.animated>*:nth-child(2) {
  transition-delay: 0.2s;
  opacity: 1;
  transform: translateY(0);
}

.animate-stagger.animated>*:nth-child(3) {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}

.animate-stagger.animated>*:nth-child(4) {
  transition-delay: 0.4s;
  opacity: 1;
  transform: translateY(0);
}

.animate-stagger.animated>*:nth-child(5) {
  transition-delay: 0.5s;
  opacity: 1;
  transform: translateY(0);
}

.animate-stagger.animated>*:nth-child(6) {
  transition-delay: 0.6s;
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SAVINGS CALCULATOR SECTION
   ============================================ */
.calculator-section {
  background: var(--white);
}

.calculator-card {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
}

.calculator-card .form-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.calculator-card .form-control,
.calculator-card .form-select {
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
}

.calculator-card .form-control:focus,
.calculator-card .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61, 180, 92, 0.15);
}

.calculator-result {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  margin-top: 24px;
}

.calculator-result h4 {
  color: var(--green-light);
  font-size: 1rem;
  margin-bottom: 8px;
}

.calculator-result .savings-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
}

.calculator-result .savings-amount span {
  color: var(--orange);
}

/* ============================================
   CERTIFICATIONS / TRUST BADGES
   ============================================ */
.trust-section {
  background: var(--off-white);
  padding: 60px 0;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  transition: var(--transition);
}

.trust-badge:hover {
  transform: translateY(-4px);
}

.trust-badge .badge-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.trust-badge:nth-child(1) .badge-icon {
  color: var(--green);
}

.trust-badge:nth-child(2) .badge-icon {
  color: var(--orange);
}

.trust-badge:nth-child(3) .badge-icon {
  color: var(--navy);
}

.trust-badge:nth-child(4) .badge-icon {
  color: var(--green);
}

.trust-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

/* ============================================
   PAGE HERO / BREADCRUMB (About & Contact Pages)
   ============================================ */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-dark);
  padding-top: 80px;
}
.page-hero.page-hero-sm {
  min-height: 40vh;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,31,51,0.90) 0%, rgba(23,49,78,0.80) 50%, rgba(14,31,51,0.90) 100%);
  z-index: 2;
}
.page-hero-content {
  position: relative;
  z-index: 3;
  padding: 60px 0;
}
.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.page-breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}
.page-breadcrumb a:hover { color: var(--orange); }
.page-breadcrumb i { color: rgba(255,255,255,0.3); font-size: 0.65rem; }
.page-breadcrumb span { color: var(--orange); font-weight: 600; }
.page-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   ABOUT: OUR STORY SECTION
   ============================================ */
.about-story-section {
  background: var(--off-white);
}
.story-image-wrapper {
  position: relative;
}
.story-main-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.story-experience-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  z-index: 2;
}
.story-experience-badge h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  line-height: 1;
}
.story-experience-badge span {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.3;
}
.story-accent-card {
  position: absolute;
  top: 30px;
  right: -30px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatAnimation 3s ease-in-out infinite;
  z-index: 2;
}
.story-accent-card i {
  font-size: 1.5rem;
  color: var(--orange);
}
.story-accent-card h5 {
  font-size: 0.95rem;
  margin: 0;
  font-weight: 700;
}
.story-accent-card p {
  font-size: 0.75rem;
  color: var(--gray);
  margin: 0;
}
.story-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.story-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.story-text {
  font-size: 1.02rem;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.8;
}
.story-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.story-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.highlight-icon {
  font-size: 1.1rem;
}
.highlight-icon.green { color: var(--green); }
.highlight-icon.orange { color: var(--orange); }
.story-highlight-item span {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
}

/* ============================================
   ABOUT: MISSION VISION VALUES
   ============================================ */
.mvv-section {
  background: var(--white);
}
.mvv-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.mvv-card.mission:hover { border-bottom: 3px solid var(--orange); }
.mvv-card.vision:hover { border-bottom: 3px solid var(--green); }
.mvv-card.values:hover { border-bottom: 3px solid var(--navy); }
.mvv-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.mvv-card.mission .mvv-icon {
  background: rgba(255,120,23,0.1);
  color: var(--orange);
}
.mvv-card.vision .mvv-icon {
  background: rgba(61,180,92,0.1);
  color: var(--green);
}
.mvv-card.values .mvv-icon {
  background: rgba(23,49,78,0.1);
  color: var(--navy);
}
.mvv-card:hover .mvv-icon {
  transform: scale(1.1);
}
.mvv-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.mvv-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}
.mvv-decoration {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.05;
}
.mvv-card.mission .mvv-decoration { background: var(--orange); }
.mvv-card.vision .mvv-decoration { background: var(--green); }
.mvv-card.values .mvv-decoration { background: var(--navy); }

/* ============================================
   ABOUT: STATS COUNTER
   ============================================ */
.about-stats-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  padding: 80px 0;
}
.about-stats-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
}
.about-stat-item {
  text-align: center;
  flex: 0 0 auto;
  min-width: 150px;
}
.about-stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green-light);
  margin: 0 auto 16px;
  transition: var(--transition);
}
.about-stat-item:hover .about-stat-icon {
  background: rgba(61,180,92,0.25);
  transform: scale(1.1);
}
.about-stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.about-stat-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* ============================================
   ABOUT: TEAM SECTION
   ============================================ */
.team-section {
  background: var(--off-white);
}
.team-features {
  margin-top: 28px;
}
.team-feature-item {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.team-feature-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(61,180,92,0.2);
}
.team-feature-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  min-width: 48px;
  line-height: 1;
  padding-top: 4px;
}
.team-feature-item h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.team-feature-item p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}
.team-image-wrapper {
  position: relative;
}
.team-main-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.team-main-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.team-trust-card {
  position: absolute;
  bottom: -15px;
  left: 20px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.trust-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 6px;
}
.trust-stars i {
  color: #f59e0b;
  font-size: 1rem;
}
.team-trust-card p {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

/* ============================================
   ABOUT: WHY SAKSHAM
   ============================================ */
.why-saksham-section {
  background: var(--white);
}
.why-saksham-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  height: 100%;
  border: 1px solid transparent;
  transition: var(--transition);
}
.why-saksham-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
  border-color: rgba(61,180,92,0.15);
}
.ws-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(61,180,92,0.1), rgba(61,180,92,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 18px;
  transition: var(--transition);
}
.why-saksham-card:hover .ws-icon {
  background: var(--green);
  color: var(--white);
}
.why-saksham-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-saksham-card p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   ABOUT: OFFICE SECTION
   ============================================ */
.office-section {
  background: var(--white);
}
.office-image-wrapper {
  position: relative;
}
.office-main-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.office-main-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.office-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.office-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
}
.office-feature i {
  color: var(--green);
  font-size: 0.85rem;
}

/* ============================================
   PAGE CTA SECTION
   ============================================ */
.page-cta-section {
  padding: 80px 0;
  background: var(--off-white);
}
.page-cta-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border-radius: var(--radius-xl);
  padding: 50px;
  position: relative;
  overflow: hidden;
}
.page-cta-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(61,180,92,0.1);
}
.page-cta-card h2 {
  font-size: 2rem;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-cta-card p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin: 0;
}
.page-cta-card .btn-secondary-custom {
  border-color: rgba(255,255,255,0.3);
}

/* ============================================
   CONTACT: INFO CARDS
   ============================================ */
.contact-cards-section {
  padding: 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}
.contact-cards-row {
  margin-bottom: 0;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  height: 100%;
}
.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 18px;
  transition: var(--transition);
}
.contact-card-icon.green {
  background: rgba(61,180,92,0.1);
  color: var(--green);
}
.contact-card-icon.orange {
  background: rgba(255,120,23,0.1);
  color: var(--orange);
}
.contact-card-icon.navy {
  background: rgba(23,49,78,0.1);
  color: var(--navy);
}
.contact-info-card:hover .contact-card-icon.green { background: var(--green); color: var(--white); }
.contact-info-card:hover .contact-card-icon.orange { background: var(--orange); color: var(--white); }
.contact-info-card:hover .contact-card-icon.navy { background: var(--navy); color: var(--white); }
.contact-info-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-info-card p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 12px;
}
.contact-card-link {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}
.contact-card-link:hover {
  color: var(--orange-dark);
}

/* ============================================
   CONTACT: FORM SECTION
   ============================================ */
.contact-form-section {
  background: var(--off-white);
}
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
}
.form-header {
  margin-bottom: 32px;
}
.form-header p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin: 0;
}
.form-floating-custom {
  margin-bottom: 0;
}
.form-floating-custom label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 8px;
  display: block;
}
.form-floating-custom label i {
  color: var(--green);
  margin-right: 4px;
  font-size: 0.8rem;
}
.form-floating-custom .form-control,
.form-floating-custom .form-select {
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--off-white);
}
.form-floating-custom .form-control:focus,
.form-floating-custom .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61,180,92,0.12);
  background: var(--white);
}
.form-floating-custom textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.form-note {
  font-size: 0.82rem;
  color: var(--gray);
  text-align: center;
}
.form-note i {
  color: var(--green);
  margin-right: 4px;
}

/* Success Message */
.form-success-message {
  background: linear-gradient(135deg, rgba(61,180,92,0.08), rgba(61,180,92,0.03));
  border: 2px solid rgba(61,180,92,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-bottom: 32px;
}
.form-success-message .success-icon {
  font-size: 3rem;
  color: var(--green);
  margin-bottom: 12px;
}
.form-success-message h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.form-success-message p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin: 0;
}

/* ============================================
   CONTACT: SIDEBAR
   ============================================ */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
}
.sidebar-card-dark {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border: none;
}
.sidebar-card-dark h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.sidebar-card-dark h4 i {
  color: var(--green-light);
  margin-right: 8px;
}
.sidebar-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.sidebar-card-header i {
  font-size: 1.3rem;
  color: var(--orange);
}
.sidebar-card-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}
.sidebar-hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.92rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span { color: var(--text-body); }
.hours-row strong { color: var(--navy); }

/* Quick Connect Buttons */
.quick-connect-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quick-connect-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}
.quick-connect-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.quick-connect-btn i {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quick-connect-btn.call i {
  background: rgba(61,180,92,0.1);
  color: var(--green);
}
.quick-connect-btn.whatsapp i {
  background: rgba(37,211,102,0.1);
  color: #25d366;
}
.quick-connect-btn.email i {
  background: rgba(255,120,23,0.1);
  color: var(--orange);
}
.quick-connect-btn span {
  font-size: 0.8rem;
  color: var(--gray);
  display: block;
}
.quick-connect-btn strong {
  font-size: 0.92rem;
  color: var(--navy);
  display: block;
}

/* Sidebar Checklist */
.sidebar-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-checklist li:last-child { border-bottom: none; }
.sidebar-checklist li i {
  color: var(--green-light);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ============================================
   CONTACT: MAP SECTION
   ============================================ */
.map-section {
  position: relative;
}
.map-wrapper {
  position: relative;
}
.map-wrapper iframe {
  display: block;
  width: 100%;
  filter: saturate(0.8);
  transition: var(--transition);
}
.map-wrapper:hover iframe {
  filter: saturate(1);
}
.map-overlay-card {
  position: absolute;
  top: 30px;
  left: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  max-width: 280px;
}
.map-overlay-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.map-overlay-card h4 i {
  color: var(--orange);
  margin-right: 6px;
}
.map-overlay-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 14px;
  line-height: 1.6;
}
.map-overlay-card .btn-green.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ============================================
   SERVICES PAGE: DETAIL ROWS
   ============================================ */
.services-page-section { background: var(--off-white); }
.more-services-section { background: var(--off-white); }
.service-detail-row {
  padding: 48px 0;
  border-bottom: 1px solid var(--light-gray);
}
.service-detail-row:last-child { border-bottom: none; }
.service-detail-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-detail-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.service-image-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-image-badge.orange { background: var(--orange); }
.service-image-badge.navy { background: var(--navy); }
.service-detail-content { padding: 12px 0; }
.service-detail-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.service-detail-icon.green { background: rgba(61,180,92,0.1); color: var(--green); }
.service-detail-icon.orange { background: rgba(255,120,23,0.1); color: var(--orange); }
.service-detail-icon.navy { background: rgba(23,49,78,0.1); color: var(--navy); }
.service-detail-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.service-detail-content > p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.service-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}
.service-features-list li i {
  color: var(--green);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ============================================
   SUBSIDY PAGE: HIGHLIGHT CARDS
   ============================================ */
.subsidy-highlight-section {
  padding: 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}
.subsidy-highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  height: 100%;
}
.subsidy-highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.subsidy-hl-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(61,180,92,0.1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}
.subsidy-hl-icon.orange { background: rgba(255,120,23,0.1); color: var(--orange); }
.subsidy-hl-icon.navy { background: rgba(23,49,78,0.1); color: var(--navy); }
.subsidy-highlight-card h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.subsidy-highlight-card p {
  font-size: 0.92rem;
  color: var(--gray);
  margin-bottom: 12px;
}
.subsidy-hl-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(61,180,92,0.1);
  color: var(--green);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}
.subsidy-hl-tag.orange { background: rgba(255,120,23,0.1); color: var(--orange); }
.subsidy-hl-tag.navy { background: rgba(23,49,78,0.1); color: var(--navy); }

/* Subsidy Breakdown Cards */
.subsidy-detail-section { background: var(--off-white); }
.subsidy-breakdown-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  margin-bottom: 32px;
}
.subsidy-breakdown-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.subsidy-breakdown-header i {
  font-size: 1.4rem;
  color: var(--orange);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,120,23,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.subsidy-breakdown-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}
.subsidy-amount-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  height: 100%;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  position: relative;
}
.subsidy-amount-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.subsidy-amount-card.featured {
  border-color: var(--green);
  background: rgba(61,180,92,0.03);
}
.subsidy-featured-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}
.subsidy-amt {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.subsidy-per {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 8px;
}
.subsidy-detail {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 16px;
}
.subsidy-example {
  font-size: 0.82rem;
  padding: 10px 14px;
  background: rgba(23,49,78,0.04);
  border-radius: var(--radius-sm);
  color: var(--navy);
}
.subsidy-info-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  border: 1px solid var(--light-gray);
}
.subsidy-info-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.subsidy-info-card p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}
.special-bonus {
  background: linear-gradient(135deg, rgba(255,120,23,0.1), rgba(255,120,23,0.05));
  border: 1px solid rgba(255,120,23,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  text-align: center;
}
.special-bonus span {
  font-weight: 700;
  color: var(--orange);
  font-size: 1rem;
}

/* Subsidy Page Table */
.subsidy-table-section {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
}
.subsidy-page-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.subsidy-page-table th {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
}
.subsidy-page-table th:first-child { text-align: left; }
.subsidy-page-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--light-gray);
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-body);
}
.subsidy-page-table td:first-child { text-align: left; }
.subsidy-page-table tr:last-child td { border-bottom: none; }
.subsidy-page-table tr.highlight-row td {
  background: rgba(61,180,92,0.06);
  font-weight: 600;
  color: var(--green-dark);
}

/* Subsidy Process Steps */
.subsidy-process-section { background: var(--white); }
.subsidy-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  height: 100%;
  transition: var(--transition);
  border: 1px solid transparent;
}
.subsidy-step:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(61,180,92,0.15);
}
.subsidy-step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.subsidy-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.subsidy-step p {
  font-size: 0.92rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

/* Subsidy FAQ Accordion */
.subsidy-faq-section { background: var(--off-white); }
.subsidy-faq-section .accordion-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.subsidy-faq-section .accordion-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 18px 24px;
  color: var(--navy);
  background: var(--white);
}
.subsidy-faq-section .accordion-button:not(.collapsed) {
  background: rgba(61,180,92,0.05);
  color: var(--green-dark);
  box-shadow: none;
}
.subsidy-faq-section .accordion-button::after {
  flex-shrink: 0;
}
.subsidy-faq-section .accordion-body {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  padding: 0 24px 20px;
}

/* ============================================
   WHY SOLAR PAGE: BENEFIT VISUALS
   ============================================ */
.solar-benefits-section { background: var(--white); }
.benefit-detail-row {
  padding: 60px 0;
  border-bottom: 1px solid var(--light-gray);
}
.benefit-detail-row:last-child { border-bottom: none; }
.benefit-visual {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.benefit-big-number {
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}
.benefit-big-number.green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.benefit-big-number.navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.benefit-visual p {
  font-size: 0.95rem;
  color: var(--gray);
  margin: 0;
}
.benefit-content { padding: 12px 0; }
.benefit-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.benefit-icon-badge.green { background: rgba(61,180,92,0.1); color: var(--green); }
.benefit-icon-badge.orange { background: rgba(255,120,23,0.1); color: var(--orange); }
.benefit-icon-badge.navy { background: rgba(23,49,78,0.1); color: var(--navy); }
.benefit-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.benefit-content > p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
}
.benefit-stats-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.benefit-mini-stat {
  flex: 1;
  min-width: 140px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}
.benefit-mini-stat strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.benefit-mini-stat span {
  font-size: 0.78rem;
  color: var(--gray);
}
.more-reasons-section { background: var(--off-white); }

/* Comparison Table */
.comparison-section { background: var(--white); }
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.comparison-table th {
  background: var(--navy);
  color: var(--white);
  padding: 18px 24px;
  font-weight: 600;
  font-size: 1rem;
}
.comparison-table th:first-child { text-align: left; }
.comparison-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.95rem;
  color: var(--text-body);
}
.comparison-table td:first-child {
  font-weight: 600;
  color: var(--navy);
}
.comparison-table td.solar-col {
  color: var(--green-dark);
  font-weight: 500;
  background: rgba(61,180,92,0.03);
}
.comparison-table td.solar-col i {
  color: var(--green);
  margin-right: 6px;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: rgba(23,49,78,0.02); }
.comparison-table tr:hover td.solar-col { background: rgba(61,180,92,0.06); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-image-card img {
    max-height: 420px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .cta-content h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 20px;
  }

  .hero-content {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-stat-item {
    flex: 0 0 calc(33.33% - 16px);
  }

  .hero-image-wrapper {
    margin-top: 40px;
    display: block;
  }

  .hero-image-card img {
    max-height: 350px;
  }

  .hero-float-card {
    left: 16px;
    bottom: 16px;
    padding: 12px 18px;
  }

  .hero-float-card h4 {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-padding {
    padding: 80px 0;
  }

  .about-experience-badge {
    right: 10px;
    bottom: -10px;
    width: 100px;
    height: 100px;
  }

  .about-experience-badge h3 {
    font-size: 1.8rem;
  }

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

  .cta-content h2 {
    font-size: 2rem;
  }

  .stat-item .stat-number {
    font-size: 2.4rem;
  }

  .stat-divider {
    display: none;
  }

  .process-step::after {
    display: none;
  }

  .saksham-header .navbar-collapse {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 12px;
    box-shadow: var(--shadow-lg);
  }

  .header-phone,
  .header-cta {
    margin: 8px 0;
  }
}

@media (max-width: 767.98px) {

.quick-connect-btn strong {
  font-size: 0.72rem;
  color: var(--navy);
  display: block;
}

  .hero-section {
    padding-top: 80px;
    min-height: auto;
  }

  .hero-content {
    padding: 30px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
  }

  .hero-stat-item {
    flex: 0 0 calc(50% - 8px);
    text-align: center;
  }

  .hero-stat-item h3 {
    font-size: 1.6rem;
  }

  .hero-image-wrapper {
    margin-top: 32px;
  }

  .hero-image-card img {
    max-height: 280px;
  }

  .hero-float-card {
    left: 12px;
    bottom: 12px;
    padding: 10px 16px;
    gap: 8px;
  }

  .hero-float-card .icon-circle {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .hero-float-card h4 {
    font-size: 0.95rem;
  }

  .hero-float-card p {
    font-size: 0.7rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .about-main-image img {
    height: 300px;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .stat-item .stat-number {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 1.6rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .calculator-card {
    padding: 24px;
  }

  .subsidy-table-wrapper {
    padding: 20px;
    overflow-x: auto;
  }

  .saksham-footer {
    padding: 60px 0 0;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
  }

  .scroll-top-btn {
    bottom: 30px;
    right: 16px;
  }

  .whatsapp-float {
    bottom: 30px;
    right: 76px;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding-top: 72px;
  }

  .hero-content {
    padding: 24px 0;
  }

  .hero-title {
    font-size: 1.65rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;
    margin-bottom: 32px;
  }

  .hero-buttons a {
    text-align: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .hero-stats {
    gap: 12px;
    padding-top: 20px;
  }

  .hero-stat-item h3 {
    font-size: 1.4rem;
  }

  .hero-stat-item p {
    font-size: 0.75rem;
  }

  .hero-image-card img {
    max-height: 220px;
  }

  .hero-float-card {
    left: 8px;
    bottom: 8px;
    padding: 8px 12px;
    gap: 6px;
  }

  .hero-float-card .icon-circle {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .hero-float-card h4 {
    font-size: 0.85rem;
  }

  .hero-float-card p {
    font-size: 0.65rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* About & Contact responsive - small */
  .page-hero-title { font-size: 1.6rem; }
  .page-breadcrumb { font-size: 0.75rem; padding: 6px 14px; }
  .story-highlights { grid-template-columns: 1fr; }
  .story-accent-card { display: none; }
  .about-stats-grid { gap: 20px; }
  .about-stat-number { font-size: 1.8rem; }
  .about-stat-item { min-width: 120px; }
  .team-feature-item { flex-direction: column; text-align: center; }
  .team-feature-number { min-width: auto; }
  .contact-form-wrapper { padding: 20px; }
  .page-cta-card { padding: 28px; }
  .page-cta-card h2 { font-size: 1.4rem; }
  .map-overlay-card { position: relative; top: 0; left: 0; max-width: 100%; border-radius: 0; }
}

/* ===== About/Contact Page Responsive: Tablet ===== */
@media (max-width: 991.98px) {
  .page-hero { min-height: 40vh; }
  .page-hero.page-hero-sm { min-height: 32vh; }
  .page-hero-title { font-size: 2.4rem; }
  .story-main-image img { height: 380px; }
  .story-accent-card { right: 0; }
  .story-experience-badge { right: 10px; bottom: -10px; width: 100px; height: 100px; }
  .story-experience-badge h3 { font-size: 1.6rem; }
  .team-main-image img { height: 380px; }
  .team-trust-card { left: 10px; bottom: -10px; }
  .office-main-image img { height: 340px; }
  .contact-form-wrapper { padding: 32px; }
  .page-cta-card { padding: 36px; }
  .page-cta-card h2 { font-size: 1.7rem; }
  .service-detail-image img { height: 300px; }
  .subsidy-breakdown-card { padding: 28px; }
  .subsidy-amt { font-size: 2rem; }
  .benefit-big-number { font-size: 4rem; }
  .benefit-visual { padding: 40px 30px; }
  .comparison-table th, .comparison-table td { padding: 12px 16px; font-size: 0.88rem; }
}

@media (max-width: 767.98px) {
  .page-hero { min-height: 35vh; padding-top: 70px; }
  .page-hero.page-hero-sm { min-height: 28vh; }
  .page-hero-title { font-size: 2rem; }
  .page-hero-subtitle { font-size: 0.95rem; }
  .page-hero-content { padding: 40px 0; }
  .story-main-image img { height: 300px; }
  .story-title { font-size: 1.8rem; }
  .story-accent-card { display: none; }
  .mvv-card { padding: 30px 20px; }
  .about-stats-grid { gap: 24px; }
  .about-stat-number { font-size: 2rem; }
  .team-main-image img { height: 300px; }
  .office-main-image img { height: 280px; }
  .contact-form-wrapper { padding: 24px; }
  .contact-cards-section { margin-top: -30px; }
  .map-overlay-card { position: relative; top: 0; left: 0; max-width: 100%; border-radius: var(--radius-md); margin-bottom: 0; }
  .service-detail-image img { height: 250px; }
  .service-detail-content h3 { font-size: 1.3rem; }
  .subsidy-highlight-section { margin-top: -30px; }
  .subsidy-highlight-card h3 { font-size: 1.8rem; }
  .subsidy-breakdown-card { padding: 20px; }
  .subsidy-amt { font-size: 1.8rem; }
  .subsidy-table-section { padding: 20px; overflow-x: auto; }
  .benefit-big-number { font-size: 3.5rem; }
  .benefit-visual { padding: 36px 24px; }
  .benefit-detail-row { padding: 40px 0; }
  .benefit-stats-row { gap: 12px; }
  .benefit-mini-stat { min-width: 100%; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; font-size: 0.82rem; }
}