/* ============================================
   KAASHI SAFETY NETS — MODERN COMPONENTS
   Next-Generation UI with Glassmorphism, Bento Layouts & Full Inner Page Support
   ============================================ */

/* ══════════════════════════════════════════════
   1. TOP ANNOUNCEMENT BAR
   ══════════════════════════════════════════════ */
.top-bar {
  background: var(--brand-navy-900);
  color: var(--color-white);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  font-size: var(--fs-small);
  position: relative;
  z-index: var(--z-header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.top-bar-left a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: var(--fw-medium);
  font-size: 13px;
}

.top-bar-left a:hover { color: var(--brand-amber-400); }

.top-bar-left a i {
  color: var(--brand-amber-500);
  font-size: 13px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.top-bar-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--brand-emerald-400);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: var(--fw-semibold);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.live-pulse {
  width: 7px;
  height: 7px;
  background: var(--brand-emerald-400);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(52, 211, 153, 0.7);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

/* ══════════════════════════════════════════════
   2. MODERN FLOATING NAVBAR
   ══════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: var(--z-header);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  transition: all var(--dur-med) var(--ease-out);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  height: 80px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-brand img {
  height: 82px;
  max-height: 86px;
  width: auto;
  object-fit: contain;
  transition: transform var(--dur-fast) ease, height var(--dur-med) ease;
}

.navbar.scrolled .navbar-brand img {
  height: 70px;
}

.navbar-brand:hover img {
  transform: scale(1.04);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(13, 27, 51, 0.03);
  padding: 6px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(13, 27, 51, 0.05);
}

.nav-menu a {
  padding: 9px 18px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
  border-radius: var(--radius-full);
  transition: all var(--dur-fast) var(--ease-out);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: 0 2px 10px rgba(19, 36, 69, 0.25);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: var(--fw-bold);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 122, 0, 0.2);
  transition: all var(--dur-fast) ease;
}

.nav-phone-btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Hamburger & Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: calc(var(--z-header) + 10);
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 16, 30, 0.7);
  backdrop-filter: var(--glass-blur);
  z-index: var(--z-modal-backdrop);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 88vw);
  height: 100vh;
  height: 100dvh;
  background: var(--color-white);
  z-index: var(--z-modal);
  padding: 85px 24px 30px;
  transition: right 0.35s var(--ease-out);
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0,0,0,0.25);
}
.mobile-menu.active { right: 0; }

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: var(--fw-semibold);
  color: var(--color-text-main);
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--color-accent);
  padding-left: 6px;
}

.mobile-menu-contact {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* ══════════════════════════════════════════════
   3. NEXT-GEN SPLIT HERO SHOWCASE
   ══════════════════════════════════════════════ */
.hero-nextgen {
  position: relative;
  background: var(--brand-navy-900);
  color: var(--color-white);
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 8vw, 6.5rem);
  overflow: hidden;
}

.hero-ambient-glow {
  position: absolute;
  top: -20%;
  left: 25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.15) 0%, rgba(16, 185, 129, 0.08) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-10);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: var(--brand-amber-300);
  margin-bottom: var(--space-5);
  backdrop-filter: var(--glass-blur);
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: var(--fw-extrabold);
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.hero-subtitle {
  font-size: var(--fs-body-lg);
  color: rgba(255, 255, 255, 0.82);
  line-height: var(--lh-relaxed);
  max-width: 580px;
  margin-bottom: var(--space-8);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: var(--fw-medium);
}

.hero-trust-item i {
  color: var(--brand-emerald-400);
  font-size: 15px;
}

.hero-showcase-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass-dark-card);
  border: 1px solid var(--glass-border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: var(--glass-blur-lg);
}

.hero-visual-wrapper {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.hero-visual-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-visual-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-visual-slide.active {
  opacity: 1;
}

.hero-visual-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 16, 30, 0.85) 100%);
}

.hero-slide-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: var(--color-white);
  z-index: 2;
}

.hero-slide-caption h4 {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 4px;
}

.hero-slide-caption p {
  font-size: 13px;
  color: var(--brand-amber-300);
  margin: 0;
}

.floating-badge {
  position: absolute;
  z-index: 5;
  padding: 10px 16px;
  background: rgba(13, 27, 51, 0.9);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatBounce 4s ease-in-out infinite alternate;
}

.floating-badge-top {
  top: 18px;
  left: 18px;
}

.floating-badge-bottom {
  bottom: -20px;
  right: 20px;
  animation-delay: -2s;
  background: var(--grad-accent);
  color: var(--color-white);
  border: none;
}

.floating-badge i {
  font-size: 20px;
  color: var(--brand-amber-400);
}

.floating-badge-bottom i {
  color: var(--color-white);
}

.floating-badge-text strong {
  display: block;
  font-size: 13px;
  color: var(--color-white);
}

.floating-badge-text span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}

@keyframes floatBounce {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

/* ══════════════════════════════════════════════
   4. LIVE STATS COUNTER STRIP
   ══════════════════════════════════════════════ */
.stats-strip {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 10;
  margin-top: -30px;
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  text-align: center;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--color-border);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 6px;
}

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

.stat-label {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  font-weight: var(--fw-semibold);
}

/* ══════════════════════════════════════════════
   5. INTERACTIVE COST CALCULATOR WIDGET
   ══════════════════════════════════════════════ */
.calculator-section {
  background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg-alt) 100%);
  padding: var(--section-padding) 0;
}

.calc-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-10);
  align-items: center;
}

.calc-header h3 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-2);
}

.calc-header p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.calc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

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

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

.calc-label {
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.calc-select, .calc-input {
  width: 100%;
  padding: 13px 16px;
  background: var(--color-bg-light);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--fs-body);
  color: var(--color-text-main);
  font-weight: var(--fw-semibold);
  transition: all var(--dur-fast) ease;
}

.calc-select:focus, .calc-input:focus {
  border-color: var(--color-accent);
  background: var(--color-white);
  box-shadow: 0 0 0 4px var(--color-accent-soft);
}

.calc-result-card {
  background: var(--grad-primary);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow-navy);
}

.calc-result-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.calc-result-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-amber-300);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-3);
}

.calc-price-display {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.calc-price-subtext {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-6);
}

.calc-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin-bottom: var(--space-6);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.calc-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.calc-feature-item i {
  color: var(--brand-emerald-400);
}

/* ══════════════════════════════════════════════
   6. MODERN BENTO GRID
   ══════════════════════════════════════════════ */
.bento-section {
  padding: var(--section-padding) 0;
  background: var(--color-white);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(240px, auto);
  gap: var(--space-6);
}

.bento-card {
  position: relative;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  overflow: hidden;
  transition: all var(--dur-med) var(--ease-spring);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 122, 0, 0.3);
}

.bento-large {
  grid-column: span 2;
  background: var(--grad-primary);
  color: var(--color-white);
  border: none;
}

.bento-large h3, .bento-large p {
  color: var(--color-white);
}

.bento-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.bento-large .bento-icon-box {
  background: rgba(255, 255, 255, 0.15);
  color: var(--brand-amber-400);
}

.bento-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-2);
}

.bento-card p {
  font-size: var(--fs-small);
  line-height: var(--lh-normal);
  color: var(--color-text-muted);
}

.bento-badge-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: var(--space-4);
}

/* ══════════════════════════════════════════════
   7. CATEGORIZED FILTERABLE SERVICES & INNER CARDS
   ══════════════════════════════════════════════ */
.services-nextgen-section, .services-section, .exclusive-section {
  padding: var(--section-padding) 0;
  background: var(--color-bg-light);
}

.service-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.service-tab-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: all var(--dur-fast) ease;
}

.service-tab-btn:hover,
.service-tab-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.services-grid-modern, .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* Modern Card Layout (Supports both .service-item-card & .service-card) */
.service-item-card, .service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-med) var(--ease-spring);
  display: flex;
  flex-direction: column;
}

.service-item-card:hover, .service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 122, 0, 0.3);
}

.service-img-box, .service-card-image {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.service-img-box img, .service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.service-item-card:hover .service-img-box img,
.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13, 27, 51, 0.85);
  color: var(--brand-amber-300);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-content-box, .service-card-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-content-box h3, .service-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
  color: var(--color-primary);
}

.service-content-box p, .service-card-body p {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: var(--lh-normal);
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.service-card-body .hl {
  color: var(--color-accent-dark);
  font-weight: var(--fw-semibold);
  background: transparent;
}

.service-feature-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}

.feature-chip {
  font-size: 11px;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  background: var(--color-bg-alt);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.feature-chip i {
  color: var(--color-success);
  font-size: 10px;
}

.service-action-row, .service-card-buttons {
  display: flex;
  gap: 10px;
  margin-top: auto;
  justify-content: center;
}

.btn-card-quote, .btn-read-more {
  flex: 1;
  padding: 10px 18px;
  font-size: 13px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-weight: var(--fw-bold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--dur-fast) ease;
  border: none;
}

.btn-card-quote:hover, .btn-read-more:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-card-call, .btn-call-card {
  padding: 10px 16px;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: var(--fw-bold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--dur-fast) ease;
  border: none;
}

.btn-card-call:hover, .btn-call-card:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   8. COMPARISON MATRIX
   ══════════════════════════════════════════════ */
.comparison-section {
  padding: var(--section-padding) 0;
  background: var(--color-white);
}

.comparison-table-wrapper {
  max-width: 960px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
  background: var(--color-bg-alt);
  font-family: var(--font-display);
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}

.comparison-table th.highlight-col {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}

.comparison-table td.highlight-col {
  background: rgba(19, 36, 69, 0.03);
  text-align: center;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
}

.comparison-table td.other-col {
  text-align: center;
  color: var(--color-text-muted);
}

.icon-check {
  color: var(--color-success);
  font-size: 18px;
}

.icon-cross {
  color: #EF4444;
  font-size: 18px;
}

/* ══════════════════════════════════════════════
   9. 4-STEP PROCESS TIMELINE
   ══════════════════════════════════════════════ */
.process-section {
  padding: var(--section-padding) 0;
  background: var(--brand-navy-900);
  color: var(--color-white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}

.process-card {
  background: var(--glass-dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  position: relative;
  transition: all var(--dur-med) var(--ease-spring);
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-amber-500);
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: var(--fw-extrabold);
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.process-card h4 {
  color: var(--color-white);
  font-size: 1.15rem;
  margin-bottom: var(--space-2);
}

.process-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--fs-small);
  margin: 0;
}

/* ══════════════════════════════════════════════
   10. VIDEO SHOWCASE SECTION
   ══════════════════════════════════════════════ */
.video-section {
  padding: var(--section-padding) 0;
  background: var(--color-bg-light);
}

.video-frame {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 8px solid var(--color-white);
  position: relative;
}

/* ══════════════════════════════════════════════
   11. TESTIMONIALS CAROUSEL
   ══════════════════════════════════════════════ */
.testimonials-section {
  padding: var(--section-padding) 0;
  background: var(--color-white);
}

.testimonials-grid-modern, .testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.review-card-modern, .testimonial-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--dur-fast) ease;
  min-width: 0;
}

.review-card-modern:hover, .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 122, 0, 0.2);
}

.review-stars, .testimonial-card .stars {
  display: flex;
  gap: 4px;
  color: var(--brand-amber-500);
  font-size: 15px;
  margin-bottom: var(--space-4);
}

.review-text-quote, .testimonial-card .review-text {
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--color-text-main);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-card .quote-icon {
  display: none;
}

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

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: 16px;
}

.reviewer-info h5, .testimonial-author h5 {
  font-size: 15px;
  margin: 0;
  color: var(--color-primary);
}

.reviewer-info span, .testimonial-author p {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0;
}

/* ══════════════════════════════════════════════
   12. BANGALORE AREA EXPLORER
   ══════════════════════════════════════════════ */
.areas-section {
  padding: var(--section-padding) 0;
  background: var(--color-bg-light);
}

.areas-grid-modern, .locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-3);
}

.area-pill, .location-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-text-main);
  transition: all var(--dur-fast) ease;
}

.area-pill i, .location-card i {
  color: var(--color-accent);
  font-size: 13px;
}

.area-pill:hover, .location-card:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.area-pill:hover i, .location-card:hover i {
  color: var(--brand-amber-400);
}

/* ══════════════════════════════════════════════
   13. FAQ ACCORDION
   ══════════════════════════════════════════════ */
.faq-section {
  padding: var(--section-padding) 0;
  background: var(--color-white);
}

.faq-container-modern, .faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-card-modern, .faq-item {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: all var(--dur-fast) ease;
}

.faq-card-modern.active, .faq-item.active {
  border-color: var(--color-accent);
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

.faq-header-btn, .faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  cursor: pointer;
  background: none;
}

.faq-header-btn i, .faq-question .faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--color-text-muted);
  transition: transform var(--dur-med) ease;
}

.faq-card-modern.active .faq-header-btn i,
.faq-item.active .faq-question .faq-icon {
  transform: rotate(180deg);
  background: var(--color-accent);
  color: var(--color-white);
}

.faq-body-collapse, .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-card-modern.active .faq-body-collapse,
.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-body-inner, .faq-answer-content {
  padding: 0 24px 20px;
  font-size: var(--fs-body);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
}

/* ══════════════════════════════════════════════
   14. HIGH-IMPACT CTA BANNER / MARQUEE
   ══════════════════════════════════════════════ */
.cta-banner-nextgen, .cta-strip {
  background: var(--grad-banner);
  color: var(--color-white);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-nextgen h2, .cta-strip h2 {
  color: var(--color-white);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-3);
}

.cta-banner-nextgen p, .cta-strip h3 {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-body-lg);
  max-width: 600px;
  margin: 0 auto var(--space-8);
}

.cta-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.cta-marquee {
  overflow: hidden;
  padding: var(--space-3) 0;
}

.cta-marquee-track {
  display: flex;
  animation: marqueeScroll 20s linear infinite;
  white-space: nowrap;
}

.cta-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px 28px;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: var(--fw-bold);
  font-size: 15px;
  border-radius: var(--radius-full);
  margin: 0 8px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.35);
}

/* ══════════════════════════════════════════════
   15. TICKER / RECENT WORKS & GALLERY
   ══════════════════════════════════════════════ */
.ticker-section {
  padding: var(--section-padding) 0;
  overflow: hidden;
  background: var(--color-bg-light);
}

.ticker-track {
  display: flex;
  animation: tickerScroll 32s linear infinite;
  gap: var(--space-5);
}

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

.ticker-item {
  flex-shrink: 0;
  width: 270px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--dur-fast) ease;
}

.ticker-item:hover {
  transform: scale(1.04);
}

.ticker-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
  transition: all 0.4s var(--ease-out);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 51, 0.7), rgba(16, 185, 129, 0.5));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay i {
  font-size: 28px;
  color: var(--color-white);
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 16, 30, 0.95);
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
}

/* ══════════════════════════════════════════════
   16. INNER PAGE COMPONENTS (ABOUT, CONTACT, BANNER)
   ══════════════════════════════════════════════ */
.page-banner {
  position: relative;
  padding: calc(var(--header-height) + var(--space-8)) 0 var(--space-10);
  background: var(--grad-primary);
  text-align: center;
  color: var(--color-white);
}

.page-banner h1 {
  color: var(--color-white);
  font-size: var(--fs-h1);
  margin-bottom: var(--space-2);
}

.page-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-body-lg);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  font-size: var(--fs-small);
}

.breadcrumbs a { color: var(--brand-amber-300); }
.breadcrumbs .separator { color: rgba(255, 255, 255, 0.4); }
.breadcrumbs .current { color: var(--color-white); font-weight: var(--fw-bold); }

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}

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

.about-content h2 { color: var(--color-primary); margin-bottom: var(--space-4); }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-small);
}

.about-feature i { color: var(--color-success); font-size: 16px; }

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.feature-card {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-fast) ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 122, 0, 0.3);
}

.feature-card .feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  border-radius: var(--radius-md);
  background: var(--color-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 24px;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-8);
}

.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.form-group { margin-bottom: var(--space-4); }

.form-group label {
  display: block;
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-light);
  color: var(--color-text-main);
  font-size: var(--fs-body);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  background: var(--color-white);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.contact-info-card {
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  color: #fff;
}

.contact-info-list { display: flex; flex-direction: column; gap: var(--space-5); margin-bottom: var(--space-6); }

.contact-info-item { display: flex; gap: var(--space-3); }

.contact-info-item .info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-info-item .info-label {
  font-size: var(--fs-xs);
  color: var(--brand-amber-300);
  text-transform: uppercase;
  font-weight: var(--fw-bold);
}

.contact-info-item .info-value a { color: #fff; }

.contact-map { margin-top: var(--space-6); border-radius: var(--radius-md); overflow: hidden; }
.contact-map iframe { width: 100%; height: 180px; border: none; }

/* ══════════════════════════════════════════════
   17. MODERN FOOTER
   ══════════════════════════════════════════════ */
.footer-nextgen, .footer {
  background: var(--brand-navy-900);
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(3.5rem, 6vw, 5rem) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid-modern, .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-8);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-col img, .footer-owner-photo img {
  height: 90px;
  width: auto;
  max-width: 190px;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 4px;
}

.footer-brand-col p, .footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-small);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-5);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all var(--dur-fast) ease;
}

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

.footer-heading, .footer h4 {
  font-size: 1.15rem;
  color: var(--color-white);
  margin-bottom: var(--space-5);
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after, .footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
}

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

.footer-links-list a, .footer-links a {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--dur-fast) ease;
}

.footer-links-list a:hover, .footer-links a:hover {
  color: var(--brand-amber-400);
  transform: translateX(4px);
}

.footer-contact-info, .footer-address {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-row {
  display: flex;
  gap: 12px;
  font-size: var(--fs-small);
}

.footer-contact-row i {
  color: var(--color-accent);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-map-box, .footer-map {
  margin-top: var(--space-4);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map-box iframe, .footer-map iframe {
  width: 100%;
  height: 130px;
  border: none;
}

.footer-bottom-bar, .footer-bottom {
  padding: var(--space-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--brand-amber-400);
}

/* ══════════════════════════════════════════════
   18. FLOATING ACTIONS & MOBILE BAR
   ══════════════════════════════════════════════ */
.floating-actions-desktop, .floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: var(--z-float);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-action-btn, .float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all var(--dur-fast) var(--ease-spring);
  position: relative;
}

.float-action-btn.call-btn, .float-btn-call {
  background: var(--grad-accent);
}

.float-action-btn.whatsapp-btn, .float-btn-whatsapp {
  background: var(--grad-emerald);
}

.float-action-btn:hover, .float-btn:hover {
  transform: scale(1.12);
}

.float-tooltip { display: none; }

.mobile-bottom-bar, .mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-float);
  background: var(--color-white);
  padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  border-top: 1px solid var(--color-border);
}

.mobile-bottom-inner, .mobile-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-cta-inner a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-full);
  font-weight: var(--fw-bold);
  font-size: 14px;
}

.mobile-cta-inner .cta-call {
  background: var(--color-accent);
  color: #fff;
}

.mobile-cta-inner .cta-whatsapp {
  background: var(--color-success);
  color: #fff;
}

/* ══════════════════════════════════════════════
   19. WHATSAPP CHATBOT WIDGET
   ══════════════════════════════════════════════ */
.chatbot-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-float);
}

.chatbot-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grad-emerald);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: var(--shadow-glow-emerald);
  cursor: pointer;
  transition: all var(--dur-fast) ease;
  position: relative;
}

.chatbot-toggle:hover {
  transform: scale(1.08);
}

.chatbot-popup {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 340px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all var(--dur-med) var(--ease-spring);
}

.chatbot-popup.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chatbot-header {
  background: var(--grad-primary);
  color: var(--color-white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-header img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.chatbot-name {
  font-weight: var(--fw-bold);
  font-size: 14px;
}

.chatbot-status {
  font-size: 12px;
  color: var(--brand-emerald-400);
}

.chatbot-body {
  padding: 18px;
  background: var(--color-bg-light);
}

.chatbot-msg {
  background: var(--color-white);
  padding: 14px;
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-xs);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.chatbot-quick-links, .chatbot-quick-replies {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chatbot-quick-btn, .chatbot-quick-replies a {
  padding: 10px 14px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  text-align: center;
  transition: all var(--dur-fast) ease;
}

.chatbot-quick-btn:hover, .chatbot-quick-replies a:hover {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.chatbot-footer {
  padding: 14px 18px;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.chatbot-start-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--grad-emerald);
  color: white;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-full);
  width: 100%;
}
