/* ==========================================================================
   KJ INVESTMENT FINANCIAL SERVICES - THRIFTY THEME STYLES
   ========================================================================== */

:root {
  /* Color Palette - Vibrant Orange & Deep Financial Navy */
  --primary: #ff6a00;
  --primary-hover: #e55e00;
  --primary-light: #fff3ec;
  --primary-tint: #ff9a52;
  --primary-dark: #cc5400;

  --secondary: #0d8a58;
  --secondary-light: #e6f7ef;

  --dark-bg: #1c1d29;
  --dark-surface: #252636;
  --dark-border: #323447;
  --dark-text: #ffffff;
  --dark-muted: rgba(255, 255, 255, 0.72);
  --dark-faint: rgba(255, 255, 255, 0.4);

  --light-bg: #f5f6fa;
  --light-surface: #ffffff;
  --light-card-hover: #eceef5;
  --light-border: #e3e6f0;
  --light-muted: #626577;
  --light-text: #1c1d29;

  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-600: #6c757d;
  --gray-800: #343a40;

  /* Typography */
  --font-heading: 'Exo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(28, 29, 41, 0.06);
  --shadow-md: 0 8px 24px rgba(28, 29, 41, 0.08);
  --shadow-lg: 0 16px 40px rgba(28, 29, 41, 0.12);
  --shadow-xl: 0 24px 60px rgba(28, 29, 41, 0.16);

  /* Transitions */
  --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-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--light-text);
  background-color: #ffffff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--light-text);
  line-height: 1.25;
}

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

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-fluid {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

/* Utility Elements */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.tagline-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.tagline {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
}

.tagline.light {
  color: #ffffff;
}

.tagline-line {
  width: 32px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

.tagline-line.light {
  background-color: #ffffff;
}

.heading-line {
  width: 50px;
  height: 3px;
  background-color: var(--primary);
  margin: 16px auto 32px auto;
  border-radius: 2px;
}

.heading-line.light {
  background-color: rgba(255, 255, 255, 0.4);
}

.heading-line.left {
  margin-left: 0;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  text-decoration: none;
  line-height: 1;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.35);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.45);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-white {
  background-color: #ffffff;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background-color: #f8f9fa;
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--light-text);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  font-size: 0.95rem;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 16px 0;
}

.site-header.scrolled {
  background-color: rgba(28, 29, 41, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 12px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: all var(--transition-normal);
}

.site-header.scrolled .header-container {
  background-color: transparent;
  box-shadow: none;
  padding: 6px 12px;
}

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

.site-logo img {
  height: 44px;
  max-width: 190px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: all var(--transition-fast);
}

.site-logo .logo-dark-img {
  display: block;
}

.site-logo .logo-white-img {
  display: none;
}

.site-header.scrolled .site-logo .logo-dark-img {
  display: none;
}

.site-header.scrolled .site-logo .logo-white-img {
  display: block;
}

.footer-logo img {
  height: 46px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}

.mobile-menu-logo img {
  height: 38px;
  max-width: 170px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--light-text);
  padding: 6px 2px;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.2px;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.site-header.scrolled .nav-link {
  color: #ffffff;
}

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

.site-header.scrolled .nav-link:hover {
  color: var(--primary);
}

.nav-link svg {
  transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 12px 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  z-index: 100;
  border: 1px solid var(--light-border);
}

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

.dropdown-item {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--light-text);
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  padding-left: 24px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-trigger-btn {
  background: transparent;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  transition: all var(--transition-fast);
}

.search-trigger-btn:hover {
  background-color: var(--light-bg);
  color: var(--primary);
}

.site-header.scrolled .search-trigger-btn {
  color: #ffffff;
}

.site-header.scrolled .search-trigger-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--dark-bg);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.site-header.scrolled .mobile-toggle span {
  background-color: #ffffff;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 170px;
  padding-bottom: 220px;
  background: linear-gradient(rgba(28, 29, 41, 0.85), rgba(28, 29, 41, 0.92)), 
              url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
  color: #ffffff;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 960px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title strong {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.22rem;
  color: var(--dark-muted);
  max-width: 760px;
  margin: 0 auto 36px auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ==========================================================================
   SECTOR & PILLAR CARDS (OVERLAPPING HERO)
   ========================================================================== */

.sector-section {
  position: relative;
  margin-top: -120px;
  z-index: 10;
  margin-bottom: 80px;
}

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

.sector-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-border);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.sector-icon-wrap {
  width: 84px;
  height: 84px;
  border-radius: var(--radius-full);
  background-color: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  transition: all var(--transition-fast);
}

.sector-card:hover .sector-icon-wrap {
  background-color: var(--primary);
  color: #ffffff;
  transform: scale(1.08);
}

.sector-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--light-text);
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-title-line {
  width: 36px;
  height: 2px;
  background-color: var(--primary);
  margin: 0 auto 16px auto;
  border-radius: 2px;
}

.sector-card p {
  color: var(--light-muted);
  font-size: 0.96rem;
  margin-bottom: 28px;
  flex-grow: 1;
}

/* ==========================================================================
   STATISTICS & COUNTERS
   ========================================================================== */

.stats-section {
  padding: 80px 0 100px 0;
  background-color: #ffffff;
  text-align: center;
}

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

.stat-card {
  background-color: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 40px 20px;
  transition: all var(--transition-fast);
  border: 1px solid var(--light-border);
}

.stat-card:hover {
  background-color: #ffffff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-tint);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--light-text);
}

/* ==========================================================================
   SIP & WEALTH CALCULATOR (INTERACTIVE FINANCIAL TOOL)
   ========================================================================== */

.calculator-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f7f8fc 0%, #eceff7 100%);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

/* Calculator Tab Bar */
.calc-tabs-wrapper {
  display: inline-flex;
  background: #ffffff;
  padding: 6px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--light-border);
  margin-top: 32px;
  margin-bottom: 10px;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.calc-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--light-text);
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.calc-tab-btn svg {
  transition: transform var(--transition-fast);
}

.calc-tab-btn:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.calc-tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.35);
}

.calc-tab-btn.active svg {
  stroke: #ffffff;
}

/* Panels */
.calc-panel {
  display: none;
  animation: fadeInCalc 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.calc-panel.active {
  display: block;
}

@keyframes fadeInCalc {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.slider-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--light-muted);
  margin-top: 6px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.calc-inputs-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-border);
}

.calc-results-card {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #151620 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.slider-group {
  margin-bottom: 30px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.slider-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--light-text);
}

.slider-badge {
  background-color: var(--primary-light);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.range-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #dee2e6;
  outline: none;
  -webkit-appearance: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(255, 106, 0, 0.4);
  transition: transform var(--transition-fast);
}

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

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

.calc-breakdown-row.total {
  border-bottom: none;
  margin-top: 10px;
}

.calc-value-highlight {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #9edd05;
  line-height: 1;
}

/* ==========================================================================
   SERVICES & SOLUTIONS GRID
   ========================================================================== */

.services-section {
  padding: 100px 0;
  background-color: #ffffff;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-border);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background-color: var(--primary);
  color: #ffffff;
  transform: rotate(6deg) scale(1.05);
}

.service-tagline {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 6px;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 12px;
}

.service-desc {
  color: var(--light-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.service-link:hover {
  gap: 10px;
}

/* ==========================================================================
   3-STEP PROCESS SECTION
   ========================================================================== */

.process-section {
  padding: 90px 0;
  background-color: var(--light-bg);
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  position: relative;
}

.process-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
}

.process-step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
}

.process-card h3 {
  font-size: 1.4rem;
  margin-top: 10px;
  margin-bottom: 12px;
}

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

/* ==========================================================================
   TESTIMONIALS SLIDER SECTION
   ========================================================================== */

.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark-bg) 0%, #151620 100%);
  color: #ffffff;
  text-align: center;
}

.testimonial-carousel-container {
  max-width: 860px;
  margin: 40px auto 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-slide {
  min-width: 100%;
  padding: 20px 40px;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.testimonial-slide.active {
  opacity: 1;
}

.testimonial-stars {
  color: #f4d445;
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-author-box {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  border: 3px solid var(--primary);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-meta {
  text-align: left;
}

.author-role {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
}

.author-divider-line {
  width: 60px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 auto 28px auto;
}

.testimonial-quote {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--dark-muted);
  font-style: italic;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background-color: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  background-color: #ffffff;
  color: var(--dark-bg);
  transform: scale(1.1);
}

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

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background-color: var(--primary);
  width: 28px;
  border-radius: 6px;
}

/* ==========================================================================
   CALL TO ACTION (CTA)
   ========================================================================== */

.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #151620 100%);
  color: #ffffff;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-left h2 {
  font-size: 2.8rem;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-left p {
  color: var(--dark-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.cta-card {
  background-color: var(--light-bg);
  color: var(--light-text);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--light-border);
}

.cta-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--light-text);
}

.cta-card p {
  color: var(--light-muted);
  font-size: 1rem;
  margin-bottom: 28px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background-color: #ffffff;
  padding-top: 80px;
  border-top: 1px solid var(--light-border);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-about p {
  color: var(--light-muted);
  font-size: 0.95rem;
  margin-top: 18px;
  line-height: 1.7;
}

.footer-col h5 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--light-text);
  position: relative;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-link {
  color: var(--light-muted);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.footer-nav-link:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: var(--light-border);
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal-links a {
  color: var(--light-muted);
  font-size: 0.9rem;
}

.footer-legal-links a:hover {
  color: var(--primary);
}

.footer-social-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.powered-by {
  font-size: 0.9rem;
  color: var(--light-muted);
  font-weight: 600;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

/* ==========================================================================
   MODAL & SEARCH OVERLAY
   ========================================================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 29, 41, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 44px;
  max-width: 580px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: all var(--transition-normal);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--light-bg);
  border-radius: var(--radius-full);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background-color: var(--primary);
  color: #ffffff;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--light-text);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

/* Search Dropdown / Modal */
.search-modal-card {
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 32px;
  max-width: 640px;
  width: 100%;
  box-shadow: var(--shadow-xl);
}

.search-input-wrapper {
  position: relative;
  margin-bottom: 24px;
}

.search-input-wrapper input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  font-size: 1.1rem;
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  outline: none;
}

.search-input-wrapper .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
}

.search-results-list {
  max-height: 300px;
  overflow-y: auto;
  text-align: left;
}

.search-result-item {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-result-item:hover {
  background-color: var(--primary-light);
}

.search-result-title {
  font-weight: 700;
  color: var(--light-text);
}

.search-result-category {
  font-size: 0.8rem;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
}

/* Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--dark-bg);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--primary);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-normal);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   MOBILE MENU DRAWER
   ========================================================================== */

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 2100;
  box-shadow: var(--shadow-xl);
  padding: 32px 24px;
  transition: right var(--transition-normal);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--light-text);
  display: block;
}

.mobile-nav-link:hover {
  color: var(--primary);
}

.mobile-submenu {
  padding-left: 16px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-submenu a {
  font-size: 0.95rem;
  color: var(--light-muted);
}

/* Grid & Layout Utilities */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (DESKTOP, LAPTOP, TABLET, MOBILE)
   ========================================================================== */

/* Laptop & Small Desktop (<= 1199px) */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 3.1rem;
  }
  
  .nav-menu {
    gap: 16px;
  }
  
  .nav-link {
    font-size: 0.9rem;
  }
  
  .about-grid, .contact-grid {
    gap: 40px;
  }
}

/* Tablet Landscape & Portrait (<= 991px) */
@media (max-width: 991px) {
  .hero-section {
    padding-top: 150px;
    padding-bottom: 160px;
  }

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

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .sector-section {
    margin-top: -80px;
    margin-bottom: 60px;
  }

  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .sector-grid > :last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  .site-header {
    padding: 10px 0;
  }

  .header-container {
    padding: 8px 16px;
  }

  .nav-menu, .search-trigger-btn, .header-actions .btn-sm {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-section {
    padding-top: 130px;
    padding-bottom: 100px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    margin-bottom: 28px;
  }

  .sector-section {
    margin-top: -40px;
    margin-bottom: 50px;
  }

  .sector-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .sector-grid > :last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .sector-card {
    padding: 32px 24px;
  }

  .stat-card {
    padding: 28px 16px;
  }

  .stat-number {
    font-size: 2.6rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 28px 20px;
  }

  .calc-inputs-card, .calc-results-card {
    padding: 28px 20px;
  }

  .calc-value-highlight {
    font-size: 1.85rem;
  }

  .testimonial-slide {
    padding: 10px 12px;
  }

  .testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .testimonial-author-box {
    flex-direction: column;
    text-align: center;
  }

  .author-meta {
    text-align: center;
  }
}

/* Extra Small Phones (<= 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cta-card {
    padding: 28px 18px;
  }

  .modal-card {
    padding: 30px 18px;
  }
}

/* ==========================================================================
   VERTICAL RIGHT-SIDE FLOATING SOCIAL BUTTONS (STANDALONE & ATTRACTIVE)
   ========================================================================== */

.floating-social-bar {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  background: transparent !important;
  backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  pointer-events: none; /* Allows click-through outside buttons */
}

.social-bar-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50%;
  border: 2.5px solid #ffffff;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto; /* Buttons remain fully clickable */
  cursor: pointer;
}

.social-bar-item .social-bar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.social-bar-item .social-bar-icon svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.social-bar-item .social-bar-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

/* Individual Attractive Brand Colors & Glowing Shadows */
.social-bar-item.whatsapp {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.social-bar-item.whatsapp .social-bar-icon img {
  width: 32px;
  height: 32px;
}

.social-bar-item.call {
  background: linear-gradient(135deg, #ff7a00 0%, #e05300 100%);
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.45);
}

.social-bar-item.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.45);
}

.social-bar-item.linkedin {
  background: linear-gradient(135deg, #0a66c2 0%, #004182 100%);
  box-shadow: 0 6px 20px rgba(10, 102, 194, 0.45);
}

.social-bar-item.facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0c57b8 100%);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.45);
}

.social-bar-item.email {
  background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
  box-shadow: 0 6px 20px rgba(67, 97, 238, 0.45);
}

/* Hover Effects with Attraction & Pop */
.social-bar-item:hover {
  transform: scale(1.22) translateX(-8px);
}

.social-bar-item.whatsapp:hover {
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.65);
}

.social-bar-item.call:hover {
  box-shadow: 0 10px 28px rgba(255, 106, 0, 0.65);
}

.social-bar-item.instagram:hover {
  box-shadow: 0 10px 28px rgba(220, 39, 67, 0.65);
}

.social-bar-item.linkedin:hover {
  box-shadow: 0 10px 28px rgba(10, 102, 194, 0.65);
}

.social-bar-item.facebook:hover {
  box-shadow: 0 10px 28px rgba(24, 119, 242, 0.65);
}

.social-bar-item.email:hover {
  box-shadow: 0 10px 28px rgba(67, 97, 238, 0.65);
}

.social-bar-item:hover .social-bar-icon {
  transform: rotate(6deg);
}

/* Attractive Tooltip / Slide-out Label */
.social-bar-item .social-bar-label {
  position: absolute;
  right: 62px;
  background: rgba(28, 29, 41, 0.95);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(12px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.3px;
}

.social-bar-item .social-bar-label::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(28, 29, 41, 0.95);
}

.social-bar-item:hover .social-bar-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Subtle continuous pulse animation on WhatsApp for special attraction */
@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 6px 20px rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), 0 6px 20px rgba(37, 211, 102, 0.45);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 6px 20px rgba(37, 211, 102, 0.45);
  }
}

.social-bar-item.whatsapp {
  animation: whatsappPulse 2.8s infinite;
}

.social-bar-item.whatsapp:hover {
  animation: none;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .floating-social-bar {
    right: 10px;
    gap: 8px;
  }
  
  .social-bar-item {
    width: 40px;
    height: 40px;
    border-width: 2px;
  }
  
  .social-bar-item .social-bar-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .social-bar-item:hover {
    transform: scale(1.15) translateX(-4px);
  }
  
  .social-bar-item .social-bar-label {
    display: none; /* Hide hover labels on touch screens */
  }
}

/* ==========================================================================
   OFFICIAL BUSINESS CARD & CONSULTANT SHOWCASE
   ========================================================================== */

.consultant-profile-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f8f9fd 0%, #eef1f9 100%);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.consultant-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.consultant-info-box {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-border);
}

.consultant-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-light);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.consultant-name {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark-bg);
  margin-bottom: 4px;
}

.consultant-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
}

.consultant-motto {
  font-size: 1.08rem;
  font-style: italic;
  color: var(--light-muted);
  border-left: 3px solid var(--primary);
  padding-left: 16px;
  margin-bottom: 24px;
}

.card-showcase-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.card-showcase-item {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(28, 29, 41, 0.12);
  border: 1px solid var(--light-border);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  cursor: pointer;
}

.card-showcase-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 40px rgba(255, 106, 0, 0.22);
  border-color: var(--primary);
}

.card-showcase-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  background-color: #f3f3f5;
  transition: transform 0.4s ease;
}

.card-showcase-item:hover img {
  transform: scale(1.04);
}

.card-showcase-caption {
  padding: 14px 18px;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--light-border);
}

.card-label-tag {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--light-text);
}

.card-label-badge {
  background: var(--light-bg);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

@media (max-width: 900px) {
  .consultant-grid {
    grid-template-columns: 1fr;
  }
  .card-showcase-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .card-showcase-container {
    grid-template-columns: 1fr;
  }
  .card-showcase-item img {
    height: 240px;
  }
}

/* ==========================================================================
   MOBILE & RESPONSIVE MICRO-ANIMATIONS & SCROLL REVEALS
   ========================================================================== */

/* 1. Hardware Accelerated Scroll Reveal Engine */
.reveal-element {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-element.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* 2. Tactile Touch / Tap Micro-Feedback on Mobile */
.touch-active {
  transform: scale(0.96) translate3d(0, 0, 0) !important;
  transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn:active,
.solution-card:active,
.step-card:active,
.stat-item:active {
  transform: scale(0.97) translate3d(0, 0, 0);
}

/* 3. Floating Quick-Action Bar Mobile Pulse & Tap Burst */
@keyframes waPulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.65), 0 4px 16px rgba(37, 211, 102, 0.35);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 6px 22px rgba(37, 211, 102, 0.45);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 16px rgba(37, 211, 102, 0.35);
  }
}

.social-bar-item.whatsapp {
  animation: waPulseGlow 2.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes popBurst {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); }
  100% { transform: scale(1); }
}

.pop-burst {
  animation: popBurst 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important;
}

/* 4. Mobile Menu Drawer Stagger Cascade */
.mobile-menu-drawer.open .mobile-nav-list li {
  animation: mobileNavCascade 0.36s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes mobileNavCascade {
  from {
    opacity: 0;
    transform: translate3d(24px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* 5. SIP Slider Touch Thumb Expansion */
.calc-slider::-webkit-slider-thumb {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.calc-slider:active::-webkit-slider-thumb {
  transform: scale(1.28);
  box-shadow: 0 0 0 8px rgba(255, 106, 0, 0.22);
}

.calc-slider::-moz-range-thumb {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.calc-slider:active::-moz-range-thumb {
  transform: scale(1.28);
  box-shadow: 0 0 0 8px rgba(255, 106, 0, 0.22);
}

/* 6. Subtle Floating Hero Card Hover & Touch */
@keyframes subtleFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -6px, 0); }
}

.floating-badge {
  animation: subtleFloat 3.6s ease-in-out infinite;
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal-element {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .floating-badge,
  .social-bar-item.whatsapp {
    animation: none;
  }
}




