/* PS Car Scrapping Premium Design Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-orange: #FF6B1A;
  --primary-orange-hover: #E0560F;
  --accent-cyan: #00C8FF;
  --accent-cyan-hover: #00B2E2;
  --dark-bg: #0D0F14;
  --card-bg: rgba(22, 27, 37, 0.7);
  --card-border: rgba(255, 255, 255, 0.08);
  --text-primary: #F0F2F7;
  --text-muted: #8A94A6;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  overflow-x: hidden;
}

/* Global Dark Mode Text Legibility Overrides */
.text-muted {
  color: var(--text-muted) !important;
}
.form-label {
  color: rgba(240, 242, 247, 0.85) !important;
  font-weight: 500;
}

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-orange);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-orange-hover);
}

/* Typography & Links */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}
a {
  color: var(--primary-orange);
  text-decoration: none;
  transition: var(--transition-smooth);
}
a:hover {
  color: var(--accent-cyan);
}

/* Gradient text utility */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navbar Premium Styling */
.navbar-custom {
  background-color: rgba(13, 15, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  padding: 15px 0;
  transition: var(--transition-smooth);
}
.navbar-custom.scrolled {
  padding: 10px 0;
  background-color: rgba(13, 15, 20, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.navbar-custom .navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
}
.navbar-custom .navbar-brand span {
  color: var(--primary-orange);
}
.navbar-custom .nav-link {
  color: var(--text-primary);
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: var(--transition-smooth);
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--primary-orange);
}
.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-orange);
  transition: var(--transition-smooth);
}
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  width: 100%;
}
.navbar-custom .navbar-toggler {
  border-color: var(--card-border);
}
.navbar-custom .navbar-toggler:focus {
  box-shadow: none;
}

/* Premium Buttons */
.btn-premium-primary {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #ff5200 100%);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(255, 107, 26, 0.3);
}
.btn-premium-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 26, 0.5);
  color: #fff;
}
.btn-premium-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-muted);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  transition: var(--transition-smooth);
}
.btn-premium-secondary:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
  transform: translateY(-2px);
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  height: 100%;
}
.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 26, 0.3);
  box-shadow: 0 12px 40px rgba(255, 107, 26, 0.15);
}

/* Image Hover & Premium Visuals */
.img-premium {
  border-radius: 16px;
  border: 1px solid var(--card-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
  object-fit: cover;
}
.img-premium:hover {
  transform: scale(1.02);
  border-color: var(--primary-orange);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 150px 0 100px 0;
  background-image: linear-gradient(180deg, rgba(13, 15, 20, 0.4) 0%, rgba(13, 15, 20, 0.95) 100%), url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(0, 200, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(255, 107, 26, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Inner Page Hero Header */
.page-hero {
  padding: 140px 0 80px 0;
  background: linear-gradient(180deg, rgba(22, 27, 37, 0.9) 0%, rgba(13, 15, 20, 1) 100%);
  border-bottom: 1px solid var(--card-border);
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-orange) 50%, transparent 100%);
}

/* Stats / Counters */
.counter-box {
  text-align: center;
  padding: 20px;
}
.counter-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-orange);
  margin-bottom: 5px;
  display: block;
}
.counter-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Timelines (How It Works) */
.timeline-steps {
  position: relative;
}
.timeline-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: var(--card-border);
  z-index: 1;
}
@media (max-width: 991px) {
  .timeline-steps::before {
    display: none;
  }
}
.timeline-step-item {
  position: relative;
  z-index: 2;
  text-align: center;
}
.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--dark-bg);
  border: 3px solid var(--primary-orange);
  color: var(--text-primary);
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 20px rgba(255, 107, 26, 0.2);
  transition: var(--transition-smooth);
}
.timeline-step-item:hover .step-number {
  transform: scale(1.1);
  background: var(--primary-orange);
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 107, 26, 0.4);
}

/* Vertical timeline (About Page) */
.vertical-timeline {
  position: relative;
  padding-left: 30px;
}
.vertical-timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--card-border);
}
.timeline-v-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-v-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-orange);
  border: 2px solid var(--dark-bg);
  box-shadow: 0 0 8px var(--primary-orange);
}

/* Accordion customization (FAQ) */
.accordion-custom .accordion-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  margin-bottom: 12px;
  border-radius: 12px !important;
  overflow: hidden;
}
.accordion-custom .accordion-button {
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  padding: 20px;
  border: none;
  box-shadow: none;
}
.accordion-custom .accordion-button:not(.collapsed) {
  color: var(--primary-orange);
}
.accordion-custom .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F0F2F7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-custom .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6B1A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-custom .accordion-body {
  padding: 0 20px 20px 20px;
  color: var(--text-muted);
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.1) 0%, rgba(0, 200, 255, 0.05) 100%);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Custom Icons */
.icon-box-orange {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(255, 107, 26, 0.1);
  border: 1px solid rgba(255, 107, 26, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.icon-box-cyan {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(0, 200, 255, 0.1);
  border: 1px solid rgba(0, 200, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* Tables */
.table-premium {
  color: var(--text-primary);
  border-collapse: separate;
  border-spacing: 0 8px;
}
.table-premium th {
  background-color: var(--dark-bg);
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 15px;
}
.table-premium tr {
  background: var(--card-bg);
}
.table-premium td {
  padding: 18px 15px;
  border: none;
  vertical-align: middle;
}
.table-premium tr td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.table-premium tr td:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* Form Styling */
.form-custom .form-control,
.form-custom .form-select {
  background-color: rgba(13, 15, 20, 0.6);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  border-radius: 8px;
  padding: 12px 18px;
  transition: var(--transition-smooth);
}
.form-custom .form-control:focus,
.form-custom .form-select:focus {
  background-color: rgba(13, 15, 20, 0.8);
  border-color: var(--primary-orange);
  box-shadow: 0 0 10px rgba(255, 107, 26, 0.2);
  color: var(--text-primary);
}
.form-custom label {
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 8px;
}

/* Testimonial Cards */
.testimonial-card {
  padding: 30px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.05);
  font-family: serif;
  line-height: 1;
}

/* Footer Styling */
.footer-custom {
  background-color: #06070a;
  border-top: 1px solid var(--card-border);
  padding: 80px 0 30px 0;
}
.footer-custom h5 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 25px;
}
.footer-custom .footer-links {
  list-style: none;
  padding: 0;
}
.footer-custom .footer-links li {
  margin-bottom: 12px;
}
.footer-custom .footer-links a {
  color: var(--text-muted);
  transition: var(--transition-smooth);
}
.footer-custom .footer-links a:hover {
  color: var(--primary-orange);
  padding-left: 5px;
}
.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: var(--transition-smooth);
}
.social-icon-btn:hover {
  background: var(--primary-orange);
  color: #fff;
  border-color: var(--primary-orange);
  transform: translateY(-2px);
}

/* Sticky WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Upgraded Premium Header Actions */
.btn-nav-call {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 107, 26, 0.4);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition-smooth);
}
.btn-nav-call:hover {
  background: var(--primary-orange);
  color: #fff;
  border-color: var(--primary-orange);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 26, 0.2);
}
.btn-nav-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition-smooth);
}
.btn-nav-whatsapp:hover {
  background: #20ba5a;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

/* Custom Hamburger Icon */
.custom-hamburger {
  background: transparent;
  border: none;
  width: 30px;
  height: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100;
  padding: 0;
}
.custom-hamburger .hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}
.custom-hamburger.active .hamburger-bar:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
  background-color: var(--primary-orange);
}
.custom-hamburger.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.custom-hamburger.active .hamburger-bar:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
  background-color: var(--primary-orange);
}

/* Fullscreen Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(13, 15, 20, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu-overlay .overlay-close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 2rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.mobile-menu-overlay .overlay-close-btn:hover {
  color: var(--primary-orange);
}
.mobile-menu-overlay .overlay-content {
  width: 100%;
  max-width: 450px;
  padding: 40px 20px;
}
.mobile-menu-overlay .mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu-overlay .mobile-nav-links li {
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu-overlay.active .mobile-nav-links li {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger navigation link animation delays */
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(7) { transition-delay: 0.4s; }

.mobile-menu-overlay .mobile-nav-links a {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}
.mobile-menu-overlay .mobile-nav-links a:hover,
.mobile-menu-overlay .mobile-nav-links a.active {
  color: var(--primary-orange);
  padding-left: 10px;
}
.mobile-menu-overlay .mobile-action-buttons {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease 0.45s, transform 0.4s ease 0.45s;
}
.mobile-menu-overlay.active .mobile-action-buttons {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-overlay .mobile-action-buttons .btn {
  font-size: 1.1rem;
}


/* ═══════════════════════════════════════════════════
   PREMIUM HERO BANNER — New Components
═══════════════════════════════════════════════════ */

/* ── Background Glow Halos ──────────────────────── */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: hero-glow-pulse 5s ease-in-out infinite alternate;
}
.hero-glow--cyan {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.18) 0%, transparent 70%);
  top: -160px;
  right: -80px;
  animation-delay: 0s;
}
.hero-glow--orange {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.15) 0%, transparent 70%);
  bottom: -120px;
  left: -60px;
  animation-delay: 2.5s;
}
@keyframes hero-glow-pulse {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.12); }
}

/* ── Animated Grid Overlay ──────────────────────── */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* ── Trust Pill Badge ───────────────────────────── */
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #4ade80;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  width: fit-content;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.8);
  animation: badge-blink 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes badge-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ── Hero Heading ───────────────────────────────── */
.hero-heading {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
.hero-title-gradient {
  display: block;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero Subheading ────────────────────────────── */
.hero-subheading {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 520px;
}
.hero-subheading strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ── Hero CTA Buttons ───────────────────────────── */
.hero-btn-primary {
  font-size: 1.05rem;
  padding: 14px 32px !important;
  border-radius: 10px !important;
  box-shadow: 0 6px 25px rgba(255, 107, 26, 0.4) !important;
}
.hero-btn-primary:hover {
  box-shadow: 0 10px 35px rgba(255, 107, 26, 0.6) !important;
  transform: translateY(-3px) !important;
}
.hero-btn-secondary {
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: var(--transition-smooth);
  text-decoration: none;
}
.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-orange);
  color: var(--primary-orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 26, 0.15);
}

/* ── Trust Items Row ────────────────────────────── */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--card-border);
  flex-shrink: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.trust-icon--green  { background: rgba(74, 222, 128, 0.12); color: #4ade80; border: 1px solid rgba(74, 222, 128, 0.2); }
.trust-icon--orange { background: rgba(255, 107, 26, 0.12);  color: var(--primary-orange); border: 1px solid rgba(255, 107, 26, 0.2); }
.trust-icon--cyan   { background: rgba(0, 200, 255, 0.12);   color: var(--accent-cyan); border: 1px solid rgba(0, 200, 255, 0.2); }

/* ── Hero Image Frame ───────────────────────────── */
.hero-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}
.hero-vehicle-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 26, 0.2);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(255, 107, 26, 0.1);
  display: block;
  transition: var(--transition-smooth);
}
.hero-vehicle-img:hover {
  box-shadow:
    0 0 0 1px rgba(255, 107, 26, 0.15),
    0 25px 70px rgba(0, 0, 0, 0.7),
    0 0 100px rgba(255, 107, 26, 0.18);
  transform: translateY(-4px);
}

/* Corner accent brackets */
.frame-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  pointer-events: none;
}
.frame-corner--tl {
  top: -8px;
  left: -8px;
  border-top: 3px solid var(--primary-orange);
  border-left: 3px solid var(--primary-orange);
  border-radius: 4px 0 0 0;
}
.frame-corner--br {
  bottom: -8px;
  right: -8px;
  border-bottom: 3px solid var(--accent-cyan);
  border-right: 3px solid var(--accent-cyan);
  border-radius: 0 0 4px 0;
}

/* ── Floating Stat Chips ────────────────────────── */
.hero-float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  background: rgba(13, 15, 20, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  z-index: 10;
  font-size: 0.8rem;
}
.hero-float-chip--tl {
  top: 24px;
  left: -20px;
  animation: hero-chip-float 4s ease-in-out infinite;
}
.hero-float-chip--br {
  bottom: 24px;
  right: -20px;
  animation: hero-chip-float 4s ease-in-out infinite 2s;
}
.chip-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}
.chip-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.2;
}
@keyframes hero-chip-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* ── Responsive Overrides ───────────────────────── */
@media (max-width: 991.98px) {
  .hero-vehicle-img { height: 320px; }
  .hero-float-chip--tl { top: 14px; left: 10px; }
  .hero-float-chip--br { bottom: 14px; right: 10px; }
}
@media (max-width: 767.98px) {
  .hero-heading { font-size: 2rem; }
  .hero-subheading { font-size: 1rem; }
  .hero-trust-row { gap: 12px; }
  .trust-divider { display: none; }
  .hero-vehicle-img { height: 240px; }
  .hero-float-chip { padding: 8px 12px; }
  .hero-glow--cyan  { width: 300px; height: 300px; }
  .hero-glow--orange { width: 250px; height: 250px; }
}

/* ═══════════════════════════════════════════════════
   6 PREMIUM FEATURE CARDS — Styling
═══════════════════════════════════════════════════ */

/* ── Section Headings ───────────────────────────── */
.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-orange);
  display: block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* ── Feature Card Base ──────────────────────────── */
.feature-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-8px);
}

/* Watermark Number */
.feature-card-num {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.02);
  transition: all 0.4s ease;
  pointer-events: none;
  user-select: none;
}

/* Icon Box Wrapper */
.feature-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

/* Typography & Content */
.feature-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.feature-card-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 0;
  flex-grow: 1;
}

/* Interactive Hover Arrow */
.feature-card-arrow {
  position: absolute;
  bottom: 24px;
  right: 30px;
  font-size: 1.25rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.feature-card:hover .feature-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Card Color Specifics ──────────────────────── */

/* 1. Green (Government Authorized) */
.fci--green {
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.2);
  color: #4ade80;
}
.feature-card--green:hover {
  border-color: rgba(74, 222, 128, 0.45);
  box-shadow: 0 15px 40px rgba(74, 222, 128, 0.1);
}
.feature-card--green:hover .feature-card-num {
  color: rgba(74, 222, 128, 0.05);
}
.feature-card--green:hover .feature-card-icon {
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
  transform: scale(1.05);
}
.feature-card--green .feature-card-arrow {
  color: #4ade80;
}

/* 2. Cyan (Instant Payment) */
.fci--cyan {
  background: rgba(0, 200, 255, 0.08);
  border: 1px solid rgba(0, 200, 255, 0.2);
  color: var(--accent-cyan);
}
.feature-card--cyan:hover {
  border-color: rgba(0, 200, 255, 0.45);
  box-shadow: 0 15px 40px rgba(0, 200, 255, 0.1);
}
.feature-card--cyan:hover .feature-card-num {
  color: rgba(0, 200, 255, 0.05);
}
.feature-card--cyan:hover .feature-card-icon {
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.3);
  transform: scale(1.05);
}
.feature-card--cyan .feature-card-arrow {
  color: var(--accent-cyan);
}

/* 3. Orange (Free Pickup) */
.fci--orange {
  background: rgba(255, 107, 26, 0.08);
  border: 1px solid rgba(255, 107, 26, 0.2);
  color: var(--primary-orange);
}
.feature-card--orange:hover {
  border-color: rgba(255, 107, 26, 0.45);
  box-shadow: 0 15px 40px rgba(255, 107, 26, 0.1);
}
.feature-card--orange:hover .feature-card-num {
  color: rgba(255, 107, 26, 0.05);
}
.feature-card--orange:hover .feature-card-icon {
  box-shadow: 0 0 20px rgba(255, 107, 26, 0.3);
  transform: scale(1.05);
}
.feature-card--orange .feature-card-arrow {
  color: var(--primary-orange);
}

/* 4. Purple (RC Cancellation) */
.fci--purple {
  background: rgba(167, 139, 250, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.2);
  color: #a78bfa;
}
.feature-card--purple:hover {
  border-color: rgba(167, 139, 250, 0.45);
  box-shadow: 0 15px 40px rgba(167, 139, 250, 0.1);
}
.feature-card--purple:hover .feature-card-num {
  color: rgba(167, 139, 250, 0.05);
}
.feature-card--purple:hover .feature-card-icon {
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.3);
  transform: scale(1.05);
}
.feature-card--purple .feature-card-arrow {
  color: #a78bfa;
}

/* 5. Teal (Eco Friendly Recycling) */
.fci--teal {
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.2);
  color: #2dd4bf;
}
.feature-card--teal:hover {
  border-color: rgba(45, 212, 191, 0.45);
  box-shadow: 0 15px 40px rgba(45, 212, 191, 0.1);
}
.feature-card--teal:hover .feature-card-num {
  color: rgba(45, 212, 191, 0.05);
}
.feature-card--teal:hover .feature-card-icon {
  box-shadow: 0 0 20px rgba(45, 212, 191, 0.3);
  transform: scale(1.05);
}
.feature-card--teal .feature-card-arrow {
  color: #2dd4bf;
}

/* 6. Yellow (24x7 Support) */
.fci--yellow {
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.2);
  color: #facc15;
}
.feature-card--yellow:hover {
  border-color: rgba(250, 204, 21, 0.45);
  box-shadow: 0 15px 40px rgba(250, 204, 21, 0.1);
}
.feature-card--yellow:hover .feature-card-num {
  color: rgba(250, 204, 21, 0.05);
}
.feature-card--yellow:hover .feature-card-icon {
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.3);
  transform: scale(1.05);
}
.feature-card--yellow .feature-card-arrow {
  color: #facc15;
}

/* ═══════════════════════════════════════════════════
   6 PREMIUM SERVICE CARDS — Styling
═══════════════════════════════════════════════════ */

/* ── Base Service Card ──────────────────────────── */
.svc-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px 28px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.svc-card:hover {
  transform: translateY(-8px);
}
.svc-card:hover::before {
  opacity: 1;
}

/* ── Service Card Icon ──────────────────────────── */
.svc-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

/* ── Typography ─────────────────────────────────── */
.svc-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.svc-card-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 24px;
}

/* ── Read More Button ───────────────────────────── */
.svc-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 10px;
  border: 1px solid currentColor;
  width: fit-content;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  letter-spacing: 0.02em;
  align-self: flex-start;
}
.svc-read-more i {
  transition: transform 0.3s ease;
}
.svc-read-more:hover i {
  transform: translateX(4px);
}

/* ── Orange Variant ─────────────────────────────── */
.sci--orange {
  background: rgba(255, 107, 26, 0.1);
  border: 1px solid rgba(255, 107, 26, 0.25);
  color: var(--primary-orange);
}
.svc-card--orange::before {
  background: linear-gradient(90deg, var(--primary-orange), #ff9a4a);
}
.svc-card--orange:hover {
  border-color: rgba(255, 107, 26, 0.45);
  box-shadow: 0 16px 48px rgba(255, 107, 26, 0.12);
}
.svc-card--orange:hover .svc-card-icon {
  box-shadow: 0 0 24px rgba(255, 107, 26, 0.35);
  transform: scale(1.06);
}
.svc-card--orange .svc-read-more {
  color: var(--primary-orange);
  border-color: rgba(255, 107, 26, 0.35);
  background: rgba(255, 107, 26, 0.06);
}
.svc-card--orange .svc-read-more:hover {
  background: var(--primary-orange);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 107, 26, 0.35);
}

/* ── Cyan Variant ───────────────────────────────── */
.sci--cyan {
  background: rgba(0, 200, 255, 0.1);
  border: 1px solid rgba(0, 200, 255, 0.25);
  color: var(--accent-cyan);
}
.svc-card--cyan::before {
  background: linear-gradient(90deg, var(--accent-cyan), #6ee7ff);
}
.svc-card--cyan:hover {
  border-color: rgba(0, 200, 255, 0.45);
  box-shadow: 0 16px 48px rgba(0, 200, 255, 0.12);
}
.svc-card--cyan:hover .svc-card-icon {
  box-shadow: 0 0 24px rgba(0, 200, 255, 0.35);
  transform: scale(1.06);
}
.svc-card--cyan .svc-read-more {
  color: var(--accent-cyan);
  border-color: rgba(0, 200, 255, 0.35);
  background: rgba(0, 200, 255, 0.06);
}
.svc-card--cyan .svc-read-more:hover {
  background: var(--accent-cyan);
  color: #000;
  box-shadow: 0 6px 20px rgba(0, 200, 255, 0.35);
}

/* ── Purple Variant ─────────────────────────────── */
.sci--purple {
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.25);
  color: #a78bfa;
}
.svc-card--purple::before {
  background: linear-gradient(90deg, #a78bfa, #c4b5fd);
}
.svc-card--purple:hover {
  border-color: rgba(167, 139, 250, 0.45);
  box-shadow: 0 16px 48px rgba(167, 139, 250, 0.12);
}
.svc-card--purple:hover .svc-card-icon {
  box-shadow: 0 0 24px rgba(167, 139, 250, 0.35);
  transform: scale(1.06);
}
.svc-card--purple .svc-read-more {
  color: #a78bfa;
  border-color: rgba(167, 139, 250, 0.35);
  background: rgba(167, 139, 250, 0.06);
}
.svc-card--purple .svc-read-more:hover {
  background: #a78bfa;
  color: #fff;
  box-shadow: 0 6px 20px rgba(167, 139, 250, 0.35);
}

/* ── Teal Variant ───────────────────────────────── */
.sci--teal {
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.25);
  color: #2dd4bf;
}
.svc-card--teal::before {
  background: linear-gradient(90deg, #2dd4bf, #99f6e4);
}
.svc-card--teal:hover {
  border-color: rgba(45, 212, 191, 0.45);
  box-shadow: 0 16px 48px rgba(45, 212, 191, 0.12);
}
.svc-card--teal:hover .svc-card-icon {
  box-shadow: 0 0 24px rgba(45, 212, 191, 0.35);
  transform: scale(1.06);
}
.svc-card--teal .svc-read-more {
  color: #2dd4bf;
  border-color: rgba(45, 212, 191, 0.35);
  background: rgba(45, 212, 191, 0.06);
}
.svc-card--teal .svc-read-more:hover {
  background: #2dd4bf;
  color: #000;
  box-shadow: 0 6px 20px rgba(45, 212, 191, 0.35);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 767.98px) {
  .svc-card {
    padding: 28px 20px 22px;
  }
  .svc-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
  .svc-card-title {
    font-size: 1.1rem;
  }
}

/* ═══════════════════════════════════════════════════
   5-STEP PREMIUM TIMELINE — Styling
═══════════════════════════════════════════════════ */

/* ── Timeline Wrapper (Horizontal Desktop) ─────── */
.timeline-wrapper {
  position: relative;
  padding: 20px 0 20px;
  overflow: visible;
}

/* ── Connector Track ────────────────────────────── */
.timeline-track {
  position: relative;
  height: 6px;
  margin: 0 5%;
  display: flex;
  align-items: center;
}
.tl-line-bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 100px;
}
.tl-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--primary-orange) 0%, var(--accent-cyan) 100%);
  border-radius: 100px;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.timeline-wrapper.aos-animate .tl-line-fill,
.timeline-section .tl-line-fill {
  transform: scaleX(1);
}

/* ── Nodes Row ──────────────────────────────────── */
.tl-nodes {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tl-node {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  cursor: default;
}
.tl-node-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 2;
  line-height: 1;
}

/* Pulsing ring */
.tl-node-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: node-pulse 2.5s ease-in-out infinite;
}
@keyframes node-pulse {
  0%   { transform: scale(0.85); opacity: 0.7; }
  70%  { transform: scale(1.2);  opacity: 0; }
  100% { transform: scale(0.85); opacity: 0; }
}

/* Node color variants */
.tl-node--orange {
  background: radial-gradient(135deg, var(--primary-orange) 0%, #d95a10 100%);
  box-shadow: 0 0 20px rgba(255, 107, 26, 0.5);
  color: var(--primary-orange);
}
.tl-node--orange .tl-node-ring { border-color: var(--primary-orange); }

.tl-node--cyan {
  background: radial-gradient(135deg, var(--accent-cyan) 0%, #008fb3 100%);
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.5);
  color: var(--accent-cyan);
}
.tl-node--cyan .tl-node-ring { border-color: var(--accent-cyan); }

/* ── Cards Row (Top & Bottom) ───────────────────── */
.timeline-cards-top,
.timeline-cards-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0 5%;
}
.timeline-cards-top  { margin-bottom: 20px; align-items: flex-end; }
.timeline-cards-bottom { margin-top: 20px; align-items: flex-start; }

.timeline-card-slot {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* ── Step Card ──────────────────────────────────── */
.tl-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 22px 20px;
  text-align: center;
  width: 100%;
  max-width: 200px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}
.tl-card:hover {
  transform: translateY(-6px);
}

/* Top cards — connector arrow at bottom pointing down */
.tl-card--top::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--card-border);
}

/* Bottom cards — connector arrow at top pointing up */
.tl-card--bottom::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--card-border);
}

/* Card color hover */
.tl-card--orange:hover {
  border-color: rgba(255, 107, 26, 0.45);
  box-shadow: 0 10px 32px rgba(255, 107, 26, 0.15);
}
.tl-card--cyan:hover {
  border-color: rgba(0, 200, 255, 0.45);
  box-shadow: 0 10px 32px rgba(0, 200, 255, 0.15);
}

/* ── Timeline Card Icon ─────────────────────────── */
.tl-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 14px;
  transition: all 0.35s ease;
}
.tci--orange {
  background: rgba(255, 107, 26, 0.12);
  border: 1px solid rgba(255, 107, 26, 0.25);
  color: var(--primary-orange);
}
.tci--cyan {
  background: rgba(0, 200, 255, 0.12);
  border: 1px solid rgba(0, 200, 255, 0.25);
  color: var(--accent-cyan);
}
.tl-card:hover .tl-card-icon {
  transform: scale(1.1);
}

/* ── Card Text ──────────────────────────────────── */
.tl-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.tl-card-desc {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ── Mobile Vertical Timeline ───────────────────── */
.tl-mobile {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 24px;
}
.tl-mobile::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 26px;
  bottom: 26px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-orange) 0%, var(--accent-cyan) 100%);
}
.tl-mobile-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
  position: relative;
}
.tl-mobile-item:last-child { margin-bottom: 0; }

.tl-mobile-node {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.tl-mobile-content {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 20px;
  flex: 1;
  backdrop-filter: blur(8px);
}
.tl-mobile-content .tl-card-icon {
  margin: 0 0 12px;
}

/* ═══════════════════════════════════════════════════
   PREMIUM BENEFITS SECTION — Styling
═══════════════════════════════════════════════════ */

/* ── Grid Layout ────────────────────────────────── */
.benefits-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px 20px;
}

/* ── Single Benefit Item ────────────────────────── */
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 calc(16.666% - 20px);
  min-width: 130px;
  cursor: default;
}

/* ── Circle Container ───────────────────────────── */
.benefit-circle {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.benefit-item:hover .benefit-circle {
  transform: translateY(-8px) scale(1.05);
}

/* ── Spinning Outer Ring ────────────────────────── */
.benefit-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed transparent;
  animation: ring-spin 8s linear infinite;
}
@keyframes ring-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Reverse spin on hover */
.benefit-item:hover .benefit-ring {
  animation-direction: reverse;
  animation-duration: 3s;
}

/* ── Icon Inner Wrap ────────────────────────────── */
.benefit-icon-wrap {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}
.benefit-item:hover .benefit-icon-wrap {
  animation: icon-bounce 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
@keyframes icon-bounce {
  0%,100% { transform: translateY(0); }
  20%      { transform: translateY(-8px); }
  40%      { transform: translateY(-4px); }
  60%      { transform: translateY(-6px); }
  80%      { transform: translateY(-2px); }
}

/* ── Typography ─────────────────────────────────── */
.benefit-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.benefit-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0;
}

/* ══ Color Variants ═════════════════════════════════

   Gold — Best Scrap Value
   Orange — Doorstep Pickup
   Cyan — Same Day Payment
   Green — Legal Process
   Teal — Eco Friendly
   Blue — Government Authorized

════════════════════════════════════════════════════ */

/* Gold */
.benefit-circle--gold {
  background: radial-gradient(circle at 40% 35%, rgba(250, 189, 47, 0.18) 0%, rgba(250, 189, 47, 0.04) 70%);
  border: 1px solid rgba(250, 189, 47, 0.25);
  box-shadow: 0 0 30px rgba(250, 189, 47, 0.12), inset 0 0 20px rgba(250, 189, 47, 0.06);
}
.benefit-circle--gold .benefit-icon-wrap { color: #fabd2f; }
.benefit-ring--gold { border-color: rgba(250, 189, 47, 0.45); }
.benefit-item:hover .benefit-circle--gold {
  box-shadow: 0 0 50px rgba(250, 189, 47, 0.28), inset 0 0 28px rgba(250, 189, 47, 0.1);
  border-color: rgba(250, 189, 47, 0.55);
}

/* Orange */
.benefit-circle--orange {
  background: radial-gradient(circle at 40% 35%, rgba(255, 107, 26, 0.18) 0%, rgba(255, 107, 26, 0.04) 70%);
  border: 1px solid rgba(255, 107, 26, 0.25);
  box-shadow: 0 0 30px rgba(255, 107, 26, 0.12), inset 0 0 20px rgba(255, 107, 26, 0.06);
}
.benefit-circle--orange .benefit-icon-wrap { color: var(--primary-orange); }
.benefit-ring--orange { border-color: rgba(255, 107, 26, 0.45); }
.benefit-item:hover .benefit-circle--orange {
  box-shadow: 0 0 50px rgba(255, 107, 26, 0.28), inset 0 0 28px rgba(255, 107, 26, 0.1);
  border-color: rgba(255, 107, 26, 0.55);
}

/* Cyan */
.benefit-circle--cyan {
  background: radial-gradient(circle at 40% 35%, rgba(0, 200, 255, 0.18) 0%, rgba(0, 200, 255, 0.04) 70%);
  border: 1px solid rgba(0, 200, 255, 0.25);
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.12), inset 0 0 20px rgba(0, 200, 255, 0.06);
}
.benefit-circle--cyan .benefit-icon-wrap { color: var(--accent-cyan); }
.benefit-ring--cyan { border-color: rgba(0, 200, 255, 0.45); }
.benefit-item:hover .benefit-circle--cyan {
  box-shadow: 0 0 50px rgba(0, 200, 255, 0.28), inset 0 0 28px rgba(0, 200, 255, 0.1);
  border-color: rgba(0, 200, 255, 0.55);
}

/* Green */
.benefit-circle--green {
  background: radial-gradient(circle at 40% 35%, rgba(34, 197, 94, 0.18) 0%, rgba(34, 197, 94, 0.04) 70%);
  border: 1px solid rgba(34, 197, 94, 0.25);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.12), inset 0 0 20px rgba(34, 197, 94, 0.06);
}
.benefit-circle--green .benefit-icon-wrap { color: #22c55e; }
.benefit-ring--green { border-color: rgba(34, 197, 94, 0.45); }
.benefit-item:hover .benefit-circle--green {
  box-shadow: 0 0 50px rgba(34, 197, 94, 0.28), inset 0 0 28px rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.55);
}

/* Teal */
.benefit-circle--teal {
  background: radial-gradient(circle at 40% 35%, rgba(45, 212, 191, 0.18) 0%, rgba(45, 212, 191, 0.04) 70%);
  border: 1px solid rgba(45, 212, 191, 0.25);
  box-shadow: 0 0 30px rgba(45, 212, 191, 0.12), inset 0 0 20px rgba(45, 212, 191, 0.06);
}
.benefit-circle--teal .benefit-icon-wrap { color: #2dd4bf; }
.benefit-ring--teal { border-color: rgba(45, 212, 191, 0.45); }
.benefit-item:hover .benefit-circle--teal {
  box-shadow: 0 0 50px rgba(45, 212, 191, 0.28), inset 0 0 28px rgba(45, 212, 191, 0.1);
  border-color: rgba(45, 212, 191, 0.55);
}

/* Blue */
.benefit-circle--blue {
  background: radial-gradient(circle at 40% 35%, rgba(99, 179, 237, 0.18) 0%, rgba(99, 179, 237, 0.04) 70%);
  border: 1px solid rgba(99, 179, 237, 0.25);
  box-shadow: 0 0 30px rgba(99, 179, 237, 0.12), inset 0 0 20px rgba(99, 179, 237, 0.06);
}
.benefit-circle--blue .benefit-icon-wrap { color: #63b3ed; }
.benefit-ring--blue { border-color: rgba(99, 179, 237, 0.45); }
.benefit-item:hover .benefit-circle--blue {
  box-shadow: 0 0 50px rgba(99, 179, 237, 0.28), inset 0 0 28px rgba(99, 179, 237, 0.1);
  border-color: rgba(99, 179, 237, 0.55);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1199px) {
  .benefit-item {
    flex: 0 0 calc(33.333% - 20px);
  }
}
@media (max-width: 575px) {
  .benefit-item {
    flex: 0 0 calc(50% - 20px);
    min-width: 110px;
  }
  .benefit-circle {
    width: 84px;
    height: 84px;
  }
  .benefit-icon-wrap {
    font-size: 1.7rem;
  }
  .benefit-label {
    font-size: 0.82rem;
  }
}

/* ═══════════════════════════════════════════════════
   PREMIUM ABOUT PAGE SECTION — Styling
═══════════════════════════════════════════════════ */

/* ── Company Story ─────────────────────────────── */
.story-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.story-badge {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 calc(33.333% - 10px);
  min-width: 140px;
  backdrop-filter: blur(8px);
}
.story-badge i {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.story-badge strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 700;
}
.story-badge span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.story-badge--orange i { color: var(--primary-orange); }
.story-badge--cyan i { color: var(--accent-cyan); }
.story-badge--green i { color: #22c55e; }

/* Image Frame with Double Glow */
.story-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.story-image-frame img {
  border-radius: 18px;
  display: block;
  position: relative;
  z-index: 2;
}
.story-image-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(13, 15, 20, 0.85);
  border: 1px solid var(--primary-orange);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  z-index: 3;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.story-frame-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  z-index: 1;
}
.story-frame-glow--orange {
  top: -50px;
  left: -50px;
  background: var(--primary-orange);
}
.story-frame-glow--cyan {
  bottom: -50px;
  right: -50px;
  background: var(--accent-cyan);
}

/* ── Mission · Vision · Values Cards ────────────── */
.mvv-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
}
.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  opacity: 0.8;
}
.mvv-card--orange::before { background: var(--primary-orange); }
.mvv-card--cyan::before { background: var(--accent-cyan); }
.mvv-card--green::before { background: #22c55e; }

.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.mvv-card--orange:hover { border-color: rgba(255, 107, 26, 0.3); }
.mvv-card--cyan:hover { border-color: rgba(0, 200, 255, 0.3); }
.mvv-card--green:hover { border-color: rgba(34, 197, 94, 0.3); }

.mvv-card-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.mvv-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.mvv-icon--orange {
  background: rgba(255, 107, 26, 0.1);
  color: var(--primary-orange);
  border: 1px solid rgba(255, 107, 26, 0.2);
}
.mvv-icon--cyan {
  background: rgba(0, 200, 255, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 200, 255, 0.2);
}
.mvv-icon--green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.mvv-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0;
}
.mvv-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}
.mvv-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mvv-list li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Statistics Strip ───────────────────────────── */
.stats-strip {
  background: rgba(13, 15, 20, 0.6);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 40px 0;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(12px);
}
.stats-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-block {
  text-align: center;
  flex: 1 1 calc(25% - 20px);
  min-width: 160px;
}
.stat-number-wrap {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 5px;
  line-height: 1;
}
.stat-counter--orange {
  background: linear-gradient(135deg, var(--primary-orange), #ff9a4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-counter--cyan {
  background: linear-gradient(135deg, var(--accent-cyan), #6ee7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.stat-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.08);
}
@media (max-width: 991px) {
  .stat-divider { display: none; }
  .stat-block { flex: 1 1 calc(50% - 20px); }
}

/* ── Trust Section & Certification Panel ───────── */
.trust-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.trust-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.trust-icon--orange {
  background: rgba(255, 107, 26, 0.1);
  color: var(--primary-orange);
  border: 1px solid rgba(255, 107, 26, 0.2);
}
.trust-icon--cyan {
  background: rgba(0, 200, 255, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 200, 255, 0.2);
}
.trust-icon--green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.trust-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.trust-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Certifications Box on Right */
.cert-panel {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(10px);
}
.cert-panel-header {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.cert-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cert-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cert-icon--orange {
  background: rgba(255, 107, 26, 0.1);
  color: var(--primary-orange);
}
.cert-icon--cyan {
  background: rgba(0, 200, 255, 0.1);
  color: var(--accent-cyan);
}
.cert-icon--green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}
.cert-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 700;
}

@media (max-width: 991px) {
  .story-badge { flex: 1 1 calc(50% - 10px); }
}
@media (max-width: 575px) {
  .story-badge { flex: 1 1 100%; }
}

/* ═══════════════════════════════════════════════════
   PREMIUM TESTIMONIAL SLIDER — Styling
═══════════════════════════════════════════════════ */

/* ── Viewport Container ─────────────────────────── */
.testi-slider-viewport {
  position: relative;
  max-width: 800px;
  overflow: hidden;
  border-radius: 24px;
  padding: 10px;
}

/* ── Sliding Track ──────────────────────────────── */
.testi-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

/* ── Single Slide Item ──────────────────────────── */
.testi-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 15px;
}

/* ── Glassmorphism Card ─────────────────────────── */
.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
.testi-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

/* ── Card Header ────────────────────────────────── */
.testi-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

/* ── Avatars with Colored Rings ──────────────────── */
.testi-avatar-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 3px;
  background: transparent;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Border & Font Helper Variants */
.border-orange { border-color: var(--primary-orange); }
.border-cyan { border-color: var(--accent-cyan); }
.font-orange { color: var(--primary-orange); }
.font-cyan { color: var(--accent-cyan); }

/* ── Metadata ───────────────────────────────────── */
.testi-meta {
  display: flex;
  flex-direction: column;
}
.testi-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.testi-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.testi-city {
  color: var(--text-primary);
  font-weight: 600;
}

/* ── Stars Block ────────────────────────────────── */
.testi-rating {
  display: flex;
  gap: 4px;
  font-size: 1.1rem;
}

/* ── Quotes & Decorative Mark ───────────────────── */
.testi-quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-style: italic;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
.testi-quote-mark {
  position: absolute;
  bottom: 20px;
  right: 30px;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

/* ── Pagination Dots ────────────────────────────── */
.testi-dots-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s ease;
}
.testi-dot:hover {
  background: rgba(255, 255, 255, 0.4);
}
.testi-dot.active {
  background: var(--primary-orange);
  width: 28px;
  border-radius: 100px;
  box-shadow: 0 0 10px rgba(255, 107, 26, 0.5);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 767.98px) {
  .testi-card {
    padding: 30px 24px;
  }
  .testi-quote {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
@media (max-width: 575px) {
  .testi-card-header {
    gap: 15px;
  }
  .testi-rating {
    width: 100%;
    margin-top: 5px;
  }
  .testi-avatar-wrap {
    width: 52px;
    height: 52px;
  }
}

/* ═══════════════════════════════════════════════════
   PREMIUM FAQ ACCORDION — Styling
═══════════════════════════════════════════════════ */

/* ── Container Accordion ────────────────────────── */
.accordion-custom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Accordion Item Card ────────────────────────── */
.accordion-custom .accordion-item {
  background: var(--card-bg) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 16px !important;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.accordion-custom .accordion-item:hover {
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Accordion Item Active State */
.accordion-custom .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(255, 107, 26, 0.35) !important;
  box-shadow: 0 10px 36px rgba(255, 107, 26, 0.1);
}

/* ── Accordion Header Button ────────────────────── */
.accordion-custom .accordion-button {
  background: transparent !important;
  color: var(--text-primary) !important;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 22px 28px;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: all 0.3s ease;
}
.accordion-custom .accordion-button:not(.collapsed) {
  color: var(--primary-orange) !important;
}

/* Custom Morphing Expand Icon (+ / -) */
.accordion-custom .accordion-button::after {
  content: '';
  width: 14px;
  height: 14px;
  position: relative;
  background-image: none !important; /* Remove Bootstrap default chevron */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Horizontal line of the '+' sign */
.accordion-custom .accordion-button::before {
  content: '';
  position: absolute;
  right: 28px;
  width: 14px;
  height: 2px;
  background-color: var(--text-muted);
  transition: background-color 0.3s, transform 0.4s;
}

/* Vertical line of the '+' sign */
.accordion-custom .accordion-button::after {
  content: '';
  position: absolute;
  right: 34px;
  width: 2px;
  height: 14px;
  background-color: var(--text-muted);
  transition: background-color 0.3s, transform 0.4s;
}

/* Color transition on hover */
.accordion-custom .accordion-button:hover::before,
.accordion-custom .accordion-button:hover::after {
  background-color: var(--primary-orange);
}

/* Morph to '-' when expanded */
.accordion-custom .accordion-button:not(.collapsed)::before {
  background-color: var(--primary-orange);
  transform: rotate(180deg);
}
.accordion-custom .accordion-button:not(.collapsed)::after {
  background-color: var(--primary-orange);
  transform: rotate(90deg) scaleY(0); /* Shrink vertical line */
}

/* ── Accordion Collapse Inner Panel ────────────── */
.accordion-custom .accordion-collapse {
  border: none !important;
  transition: height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.accordion-custom .accordion-body {
  padding: 0 28px 24px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

/* Category Sidebar Navigation Highlight */
.faq-category-nav .nav-link {
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.faq-category-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
}
.faq-category-nav .nav-link.active {
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.15) 0%, rgba(0, 200, 255, 0.15) 100%) !important;
  border-color: rgba(255, 107, 26, 0.3) !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(255, 107, 26, 0.1);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 767.98px) {
  .accordion-custom .accordion-button {
    padding: 18px 20px;
    font-size: 0.95rem;
  }
  .accordion-custom .accordion-button::before {
    right: 20px;
  }
  .accordion-custom .accordion-button::after {
    right: 26px;
  }
  .accordion-custom .accordion-body {
    padding: 0 20px 20px;
    font-size: 0.88rem;
  }
}

/* ═══════════════════════════════════════════════════
   PREMIUM CONTACT SECTION — Styling
═══════════════════════════════════════════════════ */

/* ── Custom Form Inputs ─────────────────────────── */
.form-control-custom {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid var(--card-border) !important;
  color: var(--text-primary) !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
  transition: all 0.35s ease !important;
}
.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.25) !important;
}
.form-control-custom:focus {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: var(--primary-orange) !important;
  box-shadow: 0 0 15px rgba(255, 107, 26, 0.2) !important;
  outline: none !important;
}
select.form-control-custom {
  color: rgba(255, 255, 255, 0.8) !important;
}
select.form-control-custom option {
  background-color: #121620 !important;
  color: #fff !important;
}

/* ── Contact Icon Box ───────────────────────────── */
.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all 0.35s ease;
}
.ci--orange {
  background: rgba(255, 107, 26, 0.1);
  color: var(--primary-orange);
  border: 1px solid rgba(255, 107, 26, 0.2);
}
.ci--cyan {
  background: rgba(0, 200, 255, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 200, 255, 0.2);
}
.contact-info-list li:hover .contact-icon-box {
  transform: scale(1.1);
}

/* ── Contact WhatsApp CTA Button ────────────────── */
.contact-whatsapp-btn {
  background: #25d366 !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  border: none !important;
  border-radius: 12px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}
.contact-whatsapp-btn:hover {
  background: #20ba5a !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

/* ── Dark Styled Map Container ──────────────────── */
.map-container-premium {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}
.map-container-premium iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%); /* Dark map theme filter */
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.map-container-premium:hover iframe {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════
   PREMIUM FOOTER SECTION — Styling
═══════════════════════════════════════════════════ */

/* ── Footer Main Wrapper ────────────────────────── */
.footer-custom {
  background: linear-gradient(180deg, rgba(13, 15, 20, 0.98) 0%, #080a0d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.footer-custom h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  position: relative;
  letter-spacing: -0.01em;
}

/* ── Navigation Links ───────────────────────────── */
.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover {
  color: var(--primary-orange);
  transform: translateX(6px);
}

/* ── Social Media Badge Buttons ─────────────────── */
.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-right: 10px;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.social-icon-btn:hover {
  color: #fff;
  border-color: var(--primary-orange);
  background: var(--primary-orange);
  box-shadow: 0 0 15px rgba(255, 107, 26, 0.4);
  transform: translateY(-4px);
}

/* ── Bottom Copyright & Legal Links ─────────────── */
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  margin-top: 50px;
}
.footer-bottom-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.82rem;
  transition: all 0.3s ease;
}
.footer-bottom-links a:hover {
  color: var(--accent-cyan);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 767.98px) {
  .footer-custom {
    padding: 60px 0 20px;
  }
  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
    gap: 15px;
  }
}




