/* ==========================================================================
   BORN BLACK FINANCIAL - OFFICIAL STYLESHEET
   Brand Colors: Deep Black (#0a0a0f) & Crimson Red (#e6192e)
   A Subsidiary of Born Black Industries Private Limited | 10+ Years Experience
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/line-awesome/1.3.0/line-awesome/css/line-awesome.min.css');

:root {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;

  /* Brand Palette */
  --color-black-900: #07070b;
  --color-black-800: #0e0e14;
  --color-black-700: #14141d;
  --color-black-600: #1e1e2a;
  --color-black-500: #2a2a3a;
  
  --color-red-500: #e6192e;
  --color-red-600: #c8102e;
  --color-red-400: #ff334b;
  --color-red-glow: rgba(230, 25, 46, 0.28);
  --color-red-subtle: rgba(230, 25, 46, 0.08);

  --color-white: #ffffff;
  --color-light-50: #f8fafc;
  --color-light-100: #f1f5f9;
  --color-light-200: #e2e8f0;
  --color-light-300: #cbd5e1;

  --color-text-dark: #0f172a;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --color-text-white: #ffffff;

  --color-accent-gold: #f59e0b;
  --color-accent-green: #10b981;
  --color-accent-blue: #0284c7;

  /* Elevation Shadows */
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 14px 35px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 22px 50px rgba(0, 0, 0, 0.18);
  --shadow-red: 0 10px 25px rgba(230, 25, 46, 0.35);
  --shadow-dark: 0 18px 40px rgba(0, 0, 0, 0.45);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  --container-max: 1240px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: #ffffff;
  color: var(--color-text-dark);
  line-height: 1.6;
  min-width: 1240px;
  width: 100%;
  overflow-x: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-black-900);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

img, svg {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section--alt {
  background-color: var(--color-light-50);
}

.section--dark {
  background-color: var(--color-black-800);
  color: var(--color-text-white);
}

.section--dark h2, .section--dark h3, .section--dark h4 {
  color: var(--color-white);
}

.section--dark p {
  color: var(--color-light-300);
}

/* Section Header Utility */
.section__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.section__header--left {
  text-align: left;
  margin-left: 0;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-red-subtle);
  color: var(--color-red-500);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(230, 25, 46, 0.18);
  margin-bottom: 14px;
}

.section__label i {
  font-size: 1rem;
}

.section__title {
  font-size: 2.35rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.section__title span, .highlight-red {
  color: var(--color-red-500);
  position: relative;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}

.btn i {
  font-size: 1.15rem;
  transition: transform var(--transition-fast);
}

.btn:hover i {
  transform: translateX(3px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-red-500) 0%, var(--color-red-600) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(230, 25, 46, 0.35);
  border: 1px solid var(--color-red-400);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-red-400) 0%, var(--color-red-500) 100%);
  box-shadow: 0 8px 24px rgba(230, 25, 46, 0.45);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn--dark {
  background: var(--color-black-800);
  color: var(--color-white);
  border: 1px solid var(--color-black-600);
}

.btn--dark:hover {
  background: var(--color-black-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--color-white);
}

.btn--outline {
  background: transparent;
  color: var(--color-black-900);
  border: 2px solid var(--color-black-800);
}

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

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn--whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  border: 1px solid #25d366;
}

.btn--whatsapp:hover {
  background: linear-gradient(135deg, #2ae26d 0%, #15a090 100%);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn--sm {
  padding: 9px 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn--lg {
  padding: 16px 34px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn--block {
  width: 100%;
}

/* ==========================================================================
   NAVIGATION & HEADER (Clean Start, No Top Announcement Bar)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: all var(--transition-normal);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 4px 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 220px;
  height: 60px;
}

.site-header__logo img, .site-header__logo svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Main Nav Desktop */
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.main-nav__item {
  position: relative;
  white-space: nowrap;
}

.main-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-black-700);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.main-nav__link:hover, .main-nav__link.is-active {
  color: var(--color-red-500);
  background: rgba(230, 25, 46, 0.05);
}

.main-nav__link i.dropdown-chevron {
  font-size: 0.75rem;
  transition: transform var(--transition-fast);
}

.main-nav__item:hover .main-nav__link i.dropdown-chevron {
  transform: rotate(180deg);
}

/* Mega Dropdown Menu */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -120px;
  width: 580px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition-normal);
  z-index: 100;
}

.main-nav__item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--color-light-200);
}

.nav-dropdown__title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.nav-dropdown__badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-red-500);
  background: var(--color-red-subtle);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.nav-dropdown__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.nav-dropdown__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-dropdown__link:hover {
  background: var(--color-light-50);
  transform: translateX(4px);
}

.nav-dropdown__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--color-red-subtle);
  color: var(--color-red-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.nav-dropdown__link:hover .nav-dropdown__icon {
  background: var(--color-red-500);
  color: var(--color-white);
  box-shadow: 0 4px 10px var(--color-red-glow);
}

.nav-dropdown__text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-black-800);
  margin-bottom: 2px;
}

.nav-dropdown__text p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.2;
}

.nav-dropdown__footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--color-light-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-dropdown__footer a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-red-500);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown__footer a:hover {
  text-decoration: underline;
}

/* Header Quick Actions (Single-line Compact Fit) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: var(--radius-md);
  background: rgba(245, 246, 248, 0.9);
  border: 1px solid var(--color-light-200);
  transition: all var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.header-phone:hover {
  background: var(--color-white);
  border-color: var(--color-red-500);
  box-shadow: var(--shadow-sm);
}

.header-phone__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-red-500);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.header-phone__details {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  line-height: 1.1;
}

.header-phone__label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 1;
  white-space: nowrap;
}

.header-phone__number {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--color-black-900);
  line-height: 1.1;
  white-space: nowrap;
}

.header-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25d366;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transition: all var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}

.header-whatsapp-btn:hover {
  background: #1eb956;
  transform: translateY(-1px);
  color: #ffffff;
}

.header-whatsapp-btn i {
  font-size: 1.1rem;
}

.header-whatsapp-btn span,
.btn {
  white-space: nowrap;
}

/* Mobile Toggle Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--color-black-900);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: #ffffff;
  box-shadow: var(--shadow-xl);
  z-index: 1050;
  padding: 80px 24px 30px;
  overflow-y: auto;
  transition: right var(--transition-smooth);
}

.mobile-drawer.is-open {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-drawer-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-black-800);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-light-200);
}

.mobile-nav__link.is-active {
  color: var(--color-red-500);
}

.mobile-submenu {
  display: none;
  padding-left: 14px;
  background: var(--color-light-50);
  border-radius: var(--radius-md);
  margin-top: 6px;
  margin-bottom: 10px;
}

.mobile-submenu.is-open {
  display: block;
}

.mobile-submenu a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 10px 0;
}

.mobile-submenu a:hover {
  color: var(--color-red-500);
}

.mobile-drawer__actions {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   SITE HEADER & LOGO (20% Transparent Bar & +10% Enlarged Logo)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  transition: all var(--transition-normal);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 16px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__logo img {
  height: 72px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast);
  image-rendering: -webkit-optimize-contrast;
}

.site-header__logo:hover img {
  transform: scale(1.03);
}

/* ==========================================================================
   HERO SECTION & FULL-SIZE SLIDER (Full Width & Cinematic)
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #07070b 0%, #111118 60%, #1a1a26 100%);
  color: var(--color-white);
  padding: 100px 0 80px;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
}

.hero__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s ease-out;
  transform: scale(1.04);
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero__slide--1 {
  background: radial-gradient(circle at 80% 30%, rgba(230, 25, 46, 0.32) 0%, rgba(14, 14, 20, 0.95) 75%), linear-gradient(135deg, #07070b 0%, #111118 100%);
}

.hero__slide--2 {
  background: radial-gradient(circle at 20% 70%, rgba(16, 185, 129, 0.3) 0%, rgba(14, 14, 20, 0.95) 75%), linear-gradient(135deg, #07070b 0%, #111118 100%);
}

.hero__slide--3 {
  background: radial-gradient(circle at 75% 75%, rgba(245, 158, 11, 0.3) 0%, rgba(14, 14, 20, 0.95) 75%), linear-gradient(135deg, #07070b 0%, #111118 100%);
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(7, 7, 11, 0.75) 0%, rgba(10, 10, 15, 0.92) 80%);
  z-index: 2;
}

.hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero__full-wrapper {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__slide-content {
  display: none;
  animation: heroContentFadeIn 0.8s ease forwards;
  width: 100%;
}

.hero__slide-content.is-active {
  display: block;
}

@keyframes heroContentFadeIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Slider Navigation Arrows & Dots */
.hero__slider-controls {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 45px;
}

.hero__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero__nav-btn:hover {
  background: var(--color-red-500);
  border-color: var(--color-red-500);
  box-shadow: 0 6px 18px var(--color-red-glow);
  transform: scale(1.1);
}

.hero__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__dot {
  width: 14px;
  height: 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero__dot.is-active {
  width: 36px;
  background: var(--color-red-500);
  box-shadow: 0 0 12px var(--color-red-glow);
}

.hero__badge-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 25, 46, 0.18);
  border: 1px solid rgba(230, 25, 46, 0.45);
  color: #ff6b7e;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: var(--radius-full);
}

.hero__rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

.hero__rating-pill i {
  color: var(--color-accent-gold);
}

.hero__title {
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero__title span {
  background: linear-gradient(135deg, #ffffff 0%, #ff4d61 65%, #e6192e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: 1.22rem;
  color: var(--color-light-300);
  line-height: 1.75;
  margin: 0 auto 36px;
  max-width: 780px;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.hero__stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 820px;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

.hero-stat h3 span {
  color: var(--color-red-400);
}

.hero-stat p {
  font-size: 0.95rem;
  color: var(--color-light-300);
  font-weight: 600;
}

/* ==========================================================================
   HERO FLOATING CIRCULAR AMBIENT BUBBLES (50% Transparency & Zone Bouncing)
   ========================================================================== */
.hero-floating-zone {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  height: 440px;
  z-index: 4;
  pointer-events: none;
}

.hero-floating-zone--left {
  left: clamp(20px, 3vw, 55px);
}

.hero-floating-zone--right {
  right: clamp(20px, 3vw, 55px);
}

.hero-bubble {
  position: absolute;
  pointer-events: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45), inset 0 2px 4px rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: #ffffff;
  opacity: 0.78; /* 25% Transparency (78% visibility) */
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.hero-bubble:hover {
  opacity: 1;
  transform: scale(1.22) !important;
  border-color: rgba(230, 25, 46, 0.85);
  box-shadow: 0 0 28px rgba(230, 25, 46, 0.5), 0 12px 30px rgba(0, 0, 0, 0.6);
  background: rgba(26, 26, 38, 0.95);
  z-index: 10;
}

/* Tooltip on Bubble Hover */
.hero-bubble[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(10, 10, 15, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-bubble:hover[data-tooltip]::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Bubble Inner Logos & Icons */
.hero-bubble__img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-bubble--red {
  background: radial-gradient(circle at 35% 35%, rgba(230, 25, 46, 0.35) 0%, rgba(18, 18, 26, 0.7) 100%);
  color: #ff6b7e;
  border-color: rgba(230, 25, 46, 0.4);
}

.hero-bubble--gold {
  background: radial-gradient(circle at 35% 35%, rgba(245, 158, 11, 0.35) 0%, rgba(18, 18, 26, 0.7) 100%);
  color: #fbbf24;
  border-color: rgba(245, 158, 11, 0.4);
}

.hero-bubble--green {
  background: radial-gradient(circle at 35% 35%, rgba(16, 185, 129, 0.35) 0%, rgba(18, 18, 26, 0.7) 100%);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.4);
}

.hero-bubble--blue {
  background: radial-gradient(circle at 35% 35%, rgba(59, 130, 246, 0.35) 0%, rgba(18, 18, 26, 0.7) 100%);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.4);
}

.hero-bubble--purple {
  background: radial-gradient(circle at 35% 35%, rgba(139, 92, 246, 0.35) 0%, rgba(18, 18, 26, 0.7) 100%);
  color: #a78bfa;
  border-color: rgba(139, 92, 246, 0.4);
}

.hero-bubble--amber {
  background: radial-gradient(circle at 35% 35%, rgba(217, 119, 6, 0.35) 0%, rgba(18, 18, 26, 0.7) 100%);
  color: #f59e0b;
  border-color: rgba(217, 119, 6, 0.4);
}

.hero-bubble--trust {
  background: radial-gradient(circle at 35% 35%, rgba(14, 165, 233, 0.4) 0%, rgba(18, 18, 26, 0.7) 100%);
  color: #38bdf8;
  border-color: rgba(14, 165, 233, 0.45);
}

/* Left Zone Individual Bubble Positions & Collision Bounce Animations */
.hero-bubble--l1 {
  top: 20px;
  left: 20px;
  animation: bubbleBounceA 6.8s ease-in-out infinite;
}

.hero-bubble--l2 {
  top: 120px;
  left: 60px;
  width: 54px;
  height: 54px;
  font-size: 1.3rem;
  animation: bubbleBounceB 7.6s ease-in-out infinite 0.5s;
}

.hero-bubble--l3 {
  top: 225px;
  left: 15px;
  animation: bubbleBounceC 7.2s ease-in-out infinite 1.2s;
}

.hero-bubble--l4 {
  top: 330px;
  left: 55px;
  width: 58px;
  height: 58px;
  animation: bubbleBounceD 8.1s ease-in-out infinite 0.8s;
}

/* Right Zone Individual Bubble Positions & Collision Bounce Animations */
.hero-bubble--r1 {
  top: 25px;
  right: 25px;
  animation: bubbleBounceB 7.0s ease-in-out infinite 0.3s;
}

.hero-bubble--r2 {
  top: 125px;
  right: 65px;
  width: 56px;
  height: 56px;
  font-size: 1.35rem;
  animation: bubbleBounceA 7.8s ease-in-out infinite 1.1s;
}

.hero-bubble--r3 {
  top: 230px;
  right: 15px;
  animation: bubbleBounceD 6.9s ease-in-out infinite 0.7s;
}

.hero-bubble--r4 {
  top: 335px;
  right: 55px;
  width: 60px;
  height: 60px;
  animation: bubbleBounceC 7.5s ease-in-out infinite 1.4s;
}

/* Continuous Organic Bubble Collision & Drifting Keyframes */
@keyframes bubbleBounceA {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(14px, -18px) scale(1.04);
  }
  50% {
    transform: translate(-10px, 16px) scale(0.96);
  }
  75% {
    transform: translate(-16px, -12px) scale(1.02);
  }
}

@keyframes bubbleBounceB {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-16px, 16px) scale(0.97);
  }
  50% {
    transform: translate(14px, -20px) scale(1.05);
  }
  75% {
    transform: translate(8px, 12px) scale(0.98);
  }
}

@keyframes bubbleBounceC {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  30% {
    transform: translate(16px, 18px) scale(1.03);
  }
  60% {
    transform: translate(-12px, -16px) scale(0.97);
  }
  85% {
    transform: translate(10px, -8px) scale(1.01);
  }
}

@keyframes bubbleBounceD {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  30% {
    transform: translate(-15px, -18px) scale(1.04);
  }
  65% {
    transform: translate(18px, 14px) scale(0.96);
  }
  85% {
    transform: translate(-8px, 10px) scale(1.02);
  }
}

@media (max-width: 1200px) {
  .hero-floating-zone {
    display: none;
  }
}

/* Hero Interactive Card / Quick Estimator */
.hero__card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-dark);
  position: relative;
}

.hero__card-header {
  margin-bottom: 24px;
  text-align: center;
}

.hero__card-header h3 {
  font-size: 1.35rem;
  color: var(--color-white);
  margin-bottom: 6px;
}

.hero__card-header p {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.hero-form-group {
  margin-bottom: 18px;
}

.hero-form-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-light-200);
  margin-bottom: 8px;
}

.hero-form-label span.val {
  color: var(--color-red-400);
  font-weight: 800;
}

.hero-range {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.hero-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-red-500);
  cursor: pointer;
  box-shadow: 0 0 10px var(--color-red-glow);
  border: 2px solid #ffffff;
}

.hero-result-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  margin: 22px 0;
}

.hero-result-box .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.hero-result-box .amount {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--color-white);
  font-family: var(--font-heading);
}

.hero-result-box .amount span {
  color: var(--color-red-400);
}

/* ==========================================================================
   BANKING PARTNER MARQUEE & GRID
   ========================================================================== */
.marquee-section {
  background: #ffffff;
  padding: 40px 0 50px;
  border-bottom: 1px solid var(--color-light-200);
  overflow: hidden;
}

.marquee-header {
  text-align: center;
  margin-bottom: 26px;
}

.marquee-header p {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.marquee-header span {
  color: var(--color-red-500);
}

.marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 30px;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.marquee-track {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  min-width: 100%;
  animation: marqueeScroll 32s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 30px)); }
}

.bank-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  min-width: 185px;
  height: 66px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-fast);
}

.bank-chip:hover {
  background: #ffffff;
  border-color: var(--color-red-500);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.bank-chip img, .bank-chip svg {
  max-height: 42px;
  width: auto;
  max-width: 155px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  display: block;
}

/* Banking Partner Grid (Full view on Services/Home) */
.bank-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 35px;
}

/* ==========================================================================
   SERVICES GRID SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--color-light-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-red-500) 0%, #ff6b7d 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(230, 25, 46, 0.25);
}

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

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-card__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--color-red-subtle);
  color: var(--color-red-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  transition: all var(--transition-fast);
}

.service-card:hover .service-card__icon {
  background: var(--color-red-500);
  color: var(--color-white);
  box-shadow: 0 8px 20px var(--color-red-glow);
}

.service-card__badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--color-light-100);
  color: var(--color-text-muted);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.service-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--color-black-800);
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--color-light-100);
}

.service-card__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.service-card__feature i {
  color: var(--color-red-500);
  font-size: 1rem;
}

.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--color-light-200);
}

.service-card__rate {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.service-card__rate strong {
  color: var(--color-red-500);
  font-size: 1rem;
  display: block;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-black-900);
}

.service-card__link i {
  transition: transform var(--transition-fast);
}

.service-card:hover .service-card__link {
  color: var(--color-red-500);
}

.service-card:hover .service-card__link i {
  transform: translateX(4px);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-visual__card {
  background: var(--color-black-800);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: var(--color-white);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-black-600);
}

.why-visual__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--color-red-500);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 4px 12px var(--color-red-glow);
}

.why-progress-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.why-progress-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-progress-item__head {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-white);
}

.why-progress-item__bar {
  width: 100%;
  height: 8px;
  background: var(--color-black-600);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.why-progress-item__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-red-500) 0%, #ff4d61 100%);
  border-radius: var(--radius-full);
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0 36px;
}

.why-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-black-800);
}

.why-check-item i {
  color: var(--color-red-500);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.why-feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.why-feature-box {
  background: var(--color-light-100);
  border: 1px solid var(--color-light-200);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
}

.why-feature-box i {
  font-size: 1.8rem;
  color: var(--color-red-500);
  margin-bottom: 8px;
}

.why-feature-box strong {
  display: block;
  font-size: 1rem;
  color: var(--color-black-900);
}

.why-feature-box span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   ANIMATED STATISTICS BAND
   ========================================================================== */
.stats-band {
  background: linear-gradient(135deg, #07070b 0%, #12121a 100%);
  color: var(--color-white);
  padding: 70px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  text-align: center;
  padding: 20px;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-card__icon {
  font-size: 2.4rem;
  color: var(--color-red-400);
  margin-bottom: 12px;
}

.stat-card__number {
  font-size: 2.8rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-light-300);
}

/* ==========================================================================
   INTERACTIVE EMI CALCULATOR SUITE
   ========================================================================== */
.calc-wrapper {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-light-200);
  box-shadow: var(--shadow-xl);
  padding: 40px;
}

.calc-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 35px;
  border-bottom: 1px solid var(--color-light-200);
  padding-bottom: 15px;
  overflow-x: auto;
}

.calc-tab {
  background: var(--color-light-100);
  border: 1px solid var(--color-light-200);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-black-700);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.calc-tab:hover, .calc-tab.is-active {
  background: var(--color-red-500);
  color: var(--color-white);
  border-color: var(--color-red-500);
  box-shadow: 0 4px 12px var(--color-red-glow);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-group__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-group__label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-black-800);
}

.calc-input-box {
  display: flex;
  align-items: center;
  background: var(--color-light-100);
  border: 1.5px solid var(--color-light-200);
  border-radius: var(--radius-md);
  padding: 6px 14px;
  font-weight: 800;
  color: var(--color-red-500);
  font-size: 1rem;
}

.calc-input-box input {
  background: transparent;
  width: 100px;
  text-align: right;
  font-weight: 800;
  color: var(--color-red-500);
  font-size: 1rem;
}

.range-slider {
  width: 100%;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-light-200);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-red-500);
  cursor: pointer;
  box-shadow: 0 2px 8px var(--color-red-glow);
  border: 3px solid #ffffff;
  transition: transform var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-bounds {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* Calculator Visual Output Card */
.calc-output-card {
  background: var(--color-black-800);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--color-black-600);
}

.calc-emi-display {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-black-600);
}

.calc-emi-display .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-light-300);
  margin-bottom: 6px;
}

.calc-emi-display .value {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--color-red-400);
}

.calc-chart-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 24px 0;
}

.calc-donut {
  width: 140px;
  height: 140px;
  position: relative;
}

.calc-donut svg {
  transform: rotate(-90deg);
}

.calc-legends {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

.calc-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.calc-breakdown-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.calc-breakdown-row span:first-child {
  color: var(--color-light-300);
}

.calc-breakdown-row span:last-child {
  font-weight: 700;
}

/* ==========================================================================
   4-STEP WORKING PROCESS
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.process-card {
  background: #ffffff;
  border: 1px solid var(--color-light-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all var(--transition-fast);
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-red-500);
  box-shadow: var(--shadow-lg);
}

.process-step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-red-500);
  color: var(--color-white);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px var(--color-red-glow);
}

.process-icon {
  font-size: 2.5rem;
  color: var(--color-black-800);
  margin: 14px 0 16px;
}

.process-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

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

/* ==========================================================================
   CLIENT TESTIMONIALS (4.9★ Verified Reviews, No Google Logo)
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--color-light-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230, 25, 46, 0.2);
}

.testimonial-stars {
  color: var(--color-accent-gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--color-light-100);
}

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

.testimonial-author h4 {
  font-size: 0.95rem;
  color: var(--color-black-900);
  margin-bottom: 2px;
}

.testimonial-author p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--color-light-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.is-active {
  border-color: var(--color-red-500);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-black-800);
  cursor: pointer;
  text-align: left;
}

.faq-question i {
  font-size: 1.1rem;
  color: var(--color-red-500);
  transition: transform var(--transition-fast);
}

.faq-item.is-active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 24px;
}

.faq-item.is-active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   SCHEDULE CONSULTATION & CONTACT FORM
   ========================================================================== */
.contact-section-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: flex-start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-light-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.contact-card-box:hover {
  border-color: var(--color-red-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-red-subtle);
  color: var(--color-red-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-card-content h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.contact-card-content p, .contact-card-content a {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.contact-card-content a:hover {
  color: var(--color-red-500);
}

/* Contact Form Box */
.form-panel {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-light-200);
  padding: 38px;
  box-shadow: var(--shadow-xl);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group--full {
  grid-column: span 2;
}

.form-group {
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-black-800);
}

.form-control {
  width: 100%;
  padding: 13px 16px 13px 44px;
  background: var(--color-light-50);
  border: 1.5px solid var(--color-light-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  transition: all var(--transition-fast);
}

.form-control:focus {
  background: #ffffff;
  border-color: var(--color-red-500);
  box-shadow: 0 0 0 4px var(--color-red-subtle);
}

.form-icon {
  position: absolute;
  top: 38px;
  left: 15px;
  color: var(--color-text-muted);
  font-size: 1.15rem;
}

textarea.form-control {
  padding-left: 16px;
  resize: vertical;
  min-height: 110px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: 14px 0 20px;
  line-height: 1.5;
}

.form-consent input {
  margin-top: 3px;
}

/* ==========================================================================
   MULTI-STEP APPLY PORTAL STYLES
   ========================================================================== */
.wizard-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.wizard-progress::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 30px;
  right: 30px;
  height: 3px;
  background: var(--color-light-200);
  z-index: 1;
}

.wizard-progress-fill {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 0%;
  height: 3px;
  background: var(--color-red-500);
  z-index: 2;
  transition: width 0.4s ease;
}

.wizard-step {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.wizard-step-bubble {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--color-light-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.wizard-step.is-active .wizard-step-bubble {
  background: var(--color-red-500);
  border-color: var(--color-red-500);
  color: var(--color-white);
  box-shadow: 0 4px 12px var(--color-red-glow);
}

.wizard-step.is-completed .wizard-step-bubble {
  background: var(--color-accent-green);
  border-color: var(--color-accent-green);
  color: var(--color-white);
}

.wizard-step-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-align: center;
}

.wizard-step.is-active .wizard-step-title {
  color: var(--color-red-500);
}

/* ==========================================================================
   FOOTER (Cities We Serve, Prayagraj First, Subsidiary Note)
   ========================================================================== */
.site-footer {
  background: var(--color-black-900);
  color: var(--color-light-300);
  padding: 80px 0 0;
  border-top: 1px solid var(--color-black-700);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
  gap: 45px;
  margin-bottom: 60px;
}

.footer-brand__logo {
  display: inline-block;
  width: auto;
  max-width: 290px;
  margin-bottom: 20px;
}

.footer-brand__logo img {
  height: 60px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.footer-subsidiary-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--color-light-200);
  margin-bottom: 20px;
}

.footer-subsidiary-badge strong {
  color: var(--color-red-400);
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-black-700);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-red-500);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px var(--color-red-glow);
}

.footer-col h3 {
  font-size: 1.15rem;
  color: var(--color-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-red-500);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--color-light-300);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-red-400);
  padding-left: 5px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
}

.footer-contact-item i {
  color: var(--color-red-400);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-whatsapp-action {
  margin-top: 14px;
}

/* Footer Cities We Serve Section */
.footer-cities {
  padding: 35px 0;
  border-top: 1px solid var(--color-black-700);
  border-bottom: 1px solid var(--color-black-700);
}

.footer-cities h3 {
  font-size: 1rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-cities__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-city-tag {
  background: var(--color-black-800);
  border: 1px solid var(--color-black-600);
  color: var(--color-light-300);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.footer-city-tag:hover, .footer-city-tag.is-primary {
  background: var(--color-red-500);
  color: var(--color-white);
  border-color: var(--color-red-500);
}

.footer-bottom {
  padding: 24px 0;
  background: var(--color-black-900);
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--color-text-light);
}

.footer-bottom a {
  color: var(--color-light-200);
}

.footer-bottom a:hover {
  color: var(--color-red-400);
}

/* ==========================================================================
   FLOATING ACTION WIDGETS
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  font-size: 1.5rem;
  transition: all var(--transition-fast);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1);
  color: var(--color-white);
}

.float-btn--whatsapp {
  background: #25d366;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.float-btn--phone {
  background: var(--color-black-800);
  border: 1px solid var(--color-black-600);
}

.float-btn--top {
  background: var(--color-red-500);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.float-btn--top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Simple Toast / Alert Notification */
.toast-msg {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-black-800);
  color: var(--color-white);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-red-500);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-msg.is-active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   DESKTOP SITE MODE ENFORCEMENT (Full Desktop View on Mobile & All Screens)
   ========================================================================== */
.site-header {
  min-width: 1240px;
}

.main-nav {
  display: flex !important;
}

.nav-toggle {
  display: none !important;
}

.mobile-drawer,
.mobile-drawer-overlay {
  display: none !important;
}

.hero-floating-zone {
  display: block !important;
}

.hero-floating-zone--left {
  left: 20px !important;
}

.hero-floating-zone--right {
  right: 20px !important;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
}

.why-grid,
.calc-grid,
.contact-section-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr !important;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
}
