/* ═══════════════════════════════════════════════════════════════
   DIVYANSHI CAB — NEXT-LEVEL PREMIUM FOOTER & FLOATING ACTIONS
   Startup-Grade Mobility Platform UI (Uber / MakeMyTrip / Savaari)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --dc-ftr-bg: #f8fafc;
  --dc-ftr-card-bg: #ffffff;
  --dc-ftr-cta-bg: linear-gradient(135deg, #fffbeb 0%, #fef3c7 60%, #fff7ed 100%);
  --dc-ftr-border: #e2e8f0;
  --dc-ftr-border-subtle: #f1f5f9;
  --dc-ftr-text-head: #0f172a;
  --dc-ftr-text-body: #334155;
  --dc-ftr-text-muted: #64748b;
  --dc-ftr-bottom-bg: #e2e8f0;
  
  --dc-brand-amber: #f59e0b;
  --dc-brand-amber-hover: #d97706;
  --dc-brand-amber-light: #fef3c7;
  --dc-brand-amber-dark: #92400e;
  
  --dc-wa-green: #25d366;
  --dc-wa-green-dark: #128c7e;
  
  --dc-font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --dc-shadow-subtle: 0 2px 8px rgba(15, 23, 42, 0.04);
  --dc-shadow-btn: 0 4px 14px rgba(245, 158, 11, 0.35);
  --dc-shadow-float: 0 12px 30px -4px rgba(15, 23, 42, 0.2), 0 4px 10px rgba(15, 23, 42, 0.08);
  --dc-shadow-wa: 0 10px 26px rgba(37, 211, 102, 0.4);
}

/* Base Footer Wrapper */
.dc-footer {
  background: var(--dc-ftr-bg);
  color: var(--dc-ftr-text-body);
  font-family: var(--dc-font-main);
  border-top: 1.5px solid var(--dc-ftr-border);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* ═══════════════════════════════════════════════════════════════
   1. TOP CONVERSION CTA BANNER (24x7 Highway Dispatch Card)
   ═══════════════════════════════════════════════════════════════ */
.dc-footer-cta {
  background: var(--dc-ftr-bg, #f8fafc);
  padding: 44px 0 24px;
  position: relative;
  border-bottom: none;
}

.dc-ftr-cta-card {
  background: radial-gradient(ellipse at 92% 18%, rgba(245, 158, 11, 0.16) 0%, transparent 52%),
              radial-gradient(ellipse at 8% 85%, rgba(16, 185, 129, 0.10) 0%, transparent 48%),
              linear-gradient(135deg, #0b1329 0%, #0f172a 55%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 38px 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 48px -12px rgba(11, 19, 41, 0.45), 0 0 0 1px rgba(245, 158, 11, 0.16);
}

.dc-ftr-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.85), rgba(16, 185, 129, 0.85), transparent);
}

.dc-ftr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.32);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #34d399;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.18);
}

.dc-pulse-dot-green {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
  animation: dcPulseGreen 2s infinite;
}

@keyframes dcPulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.dc-ftr-cta-heading {
  font-size: clamp(1.35rem, 2.7vw, 1.85rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
  line-height: 1.28;
}

.dc-ftr-cta-sub {
  font-size: 0.92rem;
  color: #94a3b8;
  margin: 0 0 16px 0;
  line-height: 1.55;
  max-width: 580px;
}

.dc-ftr-features-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  .dc-ftr-features-mini {
    justify-content: flex-start;
  }
}

.dc-ftr-feat-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px 13px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #e2e8f0;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}

.dc-ftr-feat-pill:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(245, 158, 11, 0.35);
  color: #ffffff;
}

.dc-ftr-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.dc-btn-ftr-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #ffffff !important;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}

.dc-btn-ftr-phone:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #f59e0b;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.dc-btn-ftr-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-radius: 12px;
  border: none;
  color: #0f172a !important;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dc-btn-ftr-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.55);
  color: #0f172a !important;
}

/* ═══════════════════════════════════════════════════════════════
   2. MAIN FOOTER (4-Column Layout & Balanced Typography)
   ═══════════════════════════════════════════════════════════════ */
.dc-footer-main {
  padding: 56px 0 40px;
}

.dc-footer-col {
  display: flex;
  flex-direction: column;
}

/* Column 1: Brand Logo & Description */
.dc-footer-logo {
  height: 40px;
  max-height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.2s ease;
}

.dc-footer-logo:hover {
  transform: scale(1.02);
}

.dc-footer-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--dc-ftr-text-muted);
  margin-bottom: 16px;
  word-break: break-word;
}

.dc-footer-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 18px;
  width: fit-content;
  max-width: 100%;
}

.dc-footer-social-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dc-social-label {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--dc-ftr-text-head);
}

.dc-footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.dc-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #ffffff;
  border: 1.5px solid var(--dc-ftr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dc-ftr-text-head) !important;
  font-size: 14px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: var(--dc-shadow-subtle);
}

.dc-social-btn:hover {
  background: var(--dc-brand-amber);
  border-color: var(--dc-brand-amber);
  color: #0f172a !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Column Headings */
.dc-footer-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dc-ftr-text-head);
  margin-bottom: 18px;
  letter-spacing: 0.2px;
  position: relative;
  padding-bottom: 8px;
}

.dc-footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 26px;
  height: 2.5px;
  background: var(--dc-brand-amber);
  border-radius: 2px;
}

/* Column Specific Padding & Alignment */
@media (min-width: 992px) {
  .dc-ftr-links-col {
    padding-left: 14px;
  }
  .dc-ftr-contact-col {
    padding-left: 10px;
  }
}

/* Link Lists */
.dc-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dc-footer-links li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dc-ftr-text-muted) !important;
  text-decoration: none !important;
  transition: all 0.2s ease;
  word-break: break-word;
}

.dc-footer-links li a:hover {
  color: var(--dc-brand-amber-dark) !important;
  background: rgba(245, 158, 11, 0.08);
  transform: translateX(4px);
}

.dc-footer-links li a i {
  font-size: 10px;
  color: var(--dc-brand-amber);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.dc-footer-links li a:hover i {
  transform: translateX(2px);
}

/* Column 4: Contact Information */
.dc-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dc-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.dc-contact-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 9px;
  background: #ffffff;
  border: 1.5px solid var(--dc-ftr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dc-brand-amber);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
  box-shadow: var(--dc-shadow-subtle);
}

.dc-contact-body {
  font-size: 0.88rem;
  line-height: 1.5;
  min-width: 0;
  word-break: break-word;
}

.dc-contact-body strong {
  display: block;
  color: var(--dc-ftr-text-head);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: 2px;
}

.dc-contact-body a {
  color: var(--dc-ftr-text-body) !important;
  text-decoration: none !important;
  font-weight: 700;
  transition: color 0.15s ease;
}

.dc-contact-highlight {
  color: var(--dc-brand-amber-dark) !important;
  font-size: 0.96rem;
  font-weight: 800;
}

.dc-contact-body a:hover {
  color: var(--dc-brand-amber-hover) !important;
}

.dc-contact-body p {
  margin: 0;
  color: var(--dc-ftr-text-muted);
  font-size: 0.84rem;
}

/* ═══════════════════════════════════════════════════════════════
   3. BOTTOM COPYRIGHT & LEGAL BAR
   ═══════════════════════════════════════════════════════════════ */
.dc-footer-bottom {
  background: var(--dc-ftr-bottom-bg);
  border-top: 1.5px solid var(--dc-ftr-border);
  padding: 18px 0;
  font-size: 0.84rem;
  color: var(--dc-ftr-text-muted);
}

.dc-copy-text {
  font-weight: 600;
}

.dc-copy-text strong {
  color: var(--dc-ftr-text-head);
}

.dc-ftr-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dc-ftr-bottom-links a {
  color: var(--dc-ftr-text-muted) !important;
  text-decoration: none !important;
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.15s ease;
}

.dc-ftr-bottom-links a:hover {
  color: var(--dc-brand-amber-dark) !important;
}

.dc-sep {
  color: #94a3b8;
  font-size: 0.8rem;
}

.dc-ftr-credit {
  font-size: 0.82rem;
}

.dc-ftr-credit a {
  color: var(--dc-brand-amber-dark) !important;
  font-weight: 700;
  text-decoration: none !important;
}

.dc-ftr-credit a:hover {
  text-decoration: underline !important;
}

/* ═══════════════════════════════════════════════════════════════
   4. DESKTOP FLOATING CALL & WHATSAPP PILLS (Next-Level UI)
   ═══════════════════════════════════════════════════════════════ */
.dc-floating-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 1035;
}

/* WhatsApp Floating Capsule */
.dc-float-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff !important;
  height: 48px;
  min-width: 48px;
  padding: 0 16px 0 12px;
  border-radius: 50px;
  box-shadow: var(--dc-shadow-wa), 0 4px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none !important;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  position: relative;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dc-float-wa .dc-float-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.dc-float-wa .dc-float-text {
  white-space: nowrap;
}

.dc-float-wa:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
  color: #ffffff !important;
}

/* Soft Breath Animation */
.dc-float-wa::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  border: 2px solid #25d366;
  opacity: 0.7;
  animation: dcWaPulse 2.4s infinite;
  pointer-events: none;
}

@keyframes dcWaPulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.12, 1.25); opacity: 0; }
  100% { transform: scale(1.2, 1.35); opacity: 0; }
}

/* Call Floating Capsule */
.dc-float-call {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0f172a;
  color: #ffffff !important;
  height: 46px;
  min-width: 46px;
  padding: 0 16px 0 12px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--dc-shadow-float);
  text-decoration: none !important;
  font-size: 0.86rem;
  font-weight: 800;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dc-float-call .dc-float-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--dc-brand-amber);
}

.dc-float-call .dc-float-text {
  white-space: nowrap;
}

.dc-float-call:hover {
  transform: translateY(-3px) scale(1.04);
  background: var(--dc-brand-amber);
  border-color: var(--dc-brand-amber);
  color: #0f172a !important;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.45);
}

.dc-float-call:hover .dc-float-icon {
  background: rgba(15, 23, 42, 0.15);
  color: #0f172a;
}

/* ═══════════════════════════════════════════════════════════════
   5. MOBILE COMPACT ERGONOMIC BOTTOM DOCK (< 768px Viewports)
   ═══════════════════════════════════════════════════════════════ */
.dc-mobile-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 1040;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1.5px solid var(--dc-ftr-border);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.1);
  padding: 8px 12px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
}

.dc-mobile-dock-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 440px;
  box-sizing: border-box;
  margin: 0 auto;
}

.dc-dock-btn-call,
.dc-dock-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  min-width: 0;
  padding: 0 12px;
  border-radius: 10px;
  text-decoration: none !important;
  font-size: 0.90rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-sizing: border-box;
  transition: transform 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
}

.dc-dock-btn-call:active,
.dc-dock-btn-wa:active {
  transform: scale(0.96);
}

/* Call Button */
.dc-dock-btn-call {
  background: #0f172a;
  color: #ffffff !important;
  border: 1px solid #334155;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.2);
}

.dc-dock-btn-call .dc-dock-icon {
  font-size: 0.92rem;
  color: var(--dc-brand-amber);
}

/* WhatsApp Button */
.dc-dock-btn-wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff !important;
  border: 1px solid #16a34a;
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.35);
}

.dc-dock-btn-wa .dc-dock-icon {
  font-size: 1.15rem;
  color: #ffffff;
}

.dc-dock-text {
  font-weight: 800;
  color: #ffffff;
}

/* ═══════════════════════════════════════════════════════════════
   6. RESPONSIVE BREAKPOINTS (Mobile: 320px-576px | Tablet: 768px-991px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .dc-footer-main {
    padding: 44px 0 30px;
  }
}

@media (max-width: 768px) {
  .dc-floating-actions {
    display: none !important;
  }
  .dc-mobile-dock {
    display: block !important;
  }
  body {
    padding-bottom: 64px !important;
  }
  .dc-footer-cta {
    padding: 24px 0 16px;
  }
  .dc-ftr-cta-card {
    padding: 26px 20px 24px;
    border-radius: 16px;
  }
  .dc-ftr-cta-heading {
    font-size: 1.32rem;
  }
  .dc-ftr-cta-sub {
    font-size: 0.85rem;
    margin-bottom: 14px;
  }
}

@media (max-width: 576px) {
  .dc-footer-cta {
    padding: 16px 0 10px;
  }
  .dc-ftr-cta-card {
    padding: 20px 16px 22px;
    border-radius: 14px;
  }
  .dc-ftr-eyebrow {
    font-size: 0.66rem;
    padding: 3.5px 10px;
    margin-bottom: 8px;
  }
  .dc-ftr-cta-heading {
    font-size: 1.22rem;
    line-height: 1.3;
  }
  .dc-ftr-cta-sub {
    font-size: 0.82rem;
    line-height: 1.48;
    margin-bottom: 12px;
  }
  .dc-ftr-features-mini {
    gap: 6px;
    margin-bottom: 16px;
    justify-content: center;
  }
  .dc-ftr-feat-pill {
    font-size: 0.72rem;
    padding: 4px 10px;
  }

  .dc-footer-main {
    padding: 36px 0 24px;
  }

  .dc-footer-main .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .dc-footer-col {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 12px;
  }

  .dc-ftr-links-col,
  .dc-ftr-contact-col {
    padding-left: 8px;
  }

  .dc-ftr-cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 9px;
  }

  .dc-btn-ftr-phone,
  .dc-btn-ftr-primary {
    width: 100%;
    min-height: 46px;
    font-size: 0.88rem;
    border-radius: 10px;
    justify-content: center;
  }

  .dc-footer-logo {
    height: 36px;
    max-width: 160px;
  }

  .dc-footer-title {
    margin-top: 6px;
    margin-bottom: 14px;
  }

  .dc-footer-links {
    gap: 12px;
  }

  .dc-footer-links li a {
    padding: 3px 6px;
  }

  .dc-footer-bottom {
    padding: 16px 0;
  }

  .dc-ftr-bottom-links {
    justify-content: center;
    gap: 8px;
  }
}

@media (max-width: 360px) {
  .dc-footer-trust-pill {
    font-size: 0.72rem;
    padding: 4px 8px;
  }
  .dc-mobile-dock {
    padding: 6px 8px;
    padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px));
  }
  .dc-mobile-dock-inner {
    gap: 6px;
  }
  .dc-dock-btn-call,
  .dc-dock-btn-wa {
    height: 40px;
    padding: 0 8px;
    font-size: 0.82rem;
    gap: 6px;
  }
  .dc-dock-btn-call .dc-dock-icon {
    font-size: 0.82rem;
  }
  .dc-dock-btn-wa .dc-dock-icon {
    font-size: 1.0rem;
  }
}
