@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  /* Premium Color Palette */
  --primary: #10b981;        /* Emerald / Eco Green */
  --primary-rgb: 16, 185, 129;
  --primary-hover: #059669;  
  --secondary: #f59e0b;      /* Amber / Warm CTA accent */
  --secondary-hover: #d97706;
  --dark: #0f172a;           /* Dark Slate 900 */
  --dark-rgb: 15, 23, 42;
  --dark-light: #1e293b;     /* Slate 800 */
  --text: #475569;           /* Slate 600 */
  --text-light: #94a3b8;     /* Slate 400 */
  --bg-light: #f8fafc;       /* Slate 50 */
  --white: #ffffff;
  
  /* Fonts */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  /* Transition / Shadows */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-out;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  
  /* Container Width */
  --max-width: 1240px;
}

/* Reset and Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Utilities */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

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

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

/* HEADER STYLING */
#scrapcar-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  background-color: var(--white);
}

/* Top Utility Strip */
.top-strip {
  background-color: var(--dark);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-strip-links {
  display: flex;
  gap: 1.5rem;
}

.top-strip-links a {
  color: var(--text-light);
  font-weight: 500;
}

.top-strip-links a:hover {
  color: var(--primary);
}

.top-strip-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-strip-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.top-strip-phone i {
  color: var(--primary);
}

.top-strip-phone small {
  color: var(--primary);
  font-size: 0.9rem;
}

.dealer-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-light);
  font-weight: 500;
}

.dealer-login-btn:hover {
  color: var(--primary);
}

/* Main Navigation Header */
.main-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.25rem 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

/* Sticky Header Behavior */
.sticky-wrapper {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}

.sticky-wrapper.scrolled .main-header {
  padding: 0.75rem 0;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  border-bottom-color: rgba(15, 23, 42, 0.02);
}

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

/* Logo Alignment */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

.sticky-wrapper.scrolled .logo img {
  height: 40px;
}

/* Desktop Navigation Menu */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-menu a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  position: relative;
  padding: 0.5rem 0;
}

/* Premium underline slide effect */
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--primary);
  transition: var(--transition-fast);
  border-radius: 4px;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a:hover::after,
.nav-menu li.active a::after {
  width: 100%;
}

.nav-menu li.active a {
  color: var(--primary);
}

/* Call Now Header Button with Pulse Effect */
.call-now-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  animation: subtleGlow 3s infinite alternate;
}

.call-now-cta i {
  font-size: 1rem;
}

@keyframes subtleGlow {
  0% {
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  }
  100% {
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.6);
  }
}

/* Mobile Toggle Hamburger Button */
.hamburger-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
}

.hamburger-box {
  width: 26px;
  height: 18px;
  display: block;
  position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 26px;
  height: 2.5px;
  background-color: var(--dark);
  position: absolute;
  border-radius: 4px;
  transition: var(--transition);
}

.hamburger-inner {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-inner::before {
  content: '';
  top: -8px;
}

.hamburger-inner::after {
  content: '';
  bottom: -8px;
}

/* Hamburger active transformation */
.hamburger-toggle.active .hamburger-inner {
  background-color: transparent;
}

.hamburger-toggle.active .hamburger-inner::before {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--dark);
}

.hamburger-toggle.active .hamburger-inner::after {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--dark);
}

/* Mobile Navigation Side Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 6rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transform: translateX(100%);
  transition: var(--transition);
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.03);
}

.mobile-menu a:hover,
.mobile-menu li.active a {
  color: var(--primary);
  padding-left: 0.5rem;
}

/* Mobile Menu Backdrop Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* SECTION STYLING BASE */
.section-padding {
  padding: 6rem 0;
}
.bg-light {
  background-color: var(--bg-light);
}
.bg-white {
  background-color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.section-title span {
  color: var(--primary);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 500;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: calc(85vh - 40px);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%), 
              url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80"><rect fill="%2310b981" fill-opacity="0.02" width="40" height="40" x="0" y="0"/><rect fill="%2310b981" fill-opacity="0.01" width="40" height="40" x="40" y="40"/></svg>');
  background-size: cover, 40px 40px;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-content h1 span {
  color: var(--primary);
  background: linear-gradient(to right, #10b981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
}

.hero-bullets li i {
  color: var(--primary);
  font-size: 1.1rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 0.9rem 2.25rem;
  font-size: 1rem;
}

.hero-buttons .btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.hero-buttons .btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* Hero Badge */
.hero-badge-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 24px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  text-align: center;
}

.hero-badge-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(16, 185, 129, 0.1);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  margin: 0 auto 1.5rem auto;
}

.hero-badge h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-badge p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-container {
  position: relative;
}

.about-img-container img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about-img-container::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary);
  border-radius: 20px;
  z-index: 1;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.about-content p {
  color: var(--text);
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-feature-item i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 0.15rem;
}

.about-feature-item h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.about-feature-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.4;
}

/* WHY CHOOSE US SECTION */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-card {
  background-color: var(--white);
  padding: 2.5rem 1.75rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 23, 42, 0.03);
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.2);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem auto;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background-color: var(--primary);
  color: var(--white);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* SERVICES SECTION */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 23, 42, 0.03);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-img {
  height: 180px;
  background-color: var(--dark-light);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.service-img i {
  font-size: 4rem;
  opacity: 0.1;
  position: absolute;
}

.service-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(16, 185, 129, 0.15), rgba(15, 23, 42, 0.8));
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.service-img-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.service-body {
  padding: 1.5rem;
}

.service-body p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
}

.service-link:hover {
  gap: 0.6rem;
}

/* PROCESS SECTION */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2.5px dashed rgba(16, 185, 129, 0.25);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--white);
  border: 4px solid #e2e8f0;
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.process-step:hover .step-number {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* BRANDS WE ACCEPT SECTION */
.brands-section {
  overflow: hidden;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1190px;
  margin: 0 auto;
}

.brand-item {
  min-height: 166px;
  background-color: var(--white);
  padding: 1.85rem 1.25rem 1.65rem;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--dark);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: var(--transition);
  text-align: center;
}

.brand-logo {
  width: 100%;
  max-width: 150px;
  height: 78px;
  padding: 0.45rem;
  border-radius: 10px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.brand-item:hover {
  border-color: rgba(16, 185, 129, 0.28);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-5px);
}

.brand-item:hover .brand-logo img {
  transform: scale(1.15);
}

.brand-more {
  color: var(--dark);
  background: #f6fff9;
  border: 2px dashed var(--primary);
}

.brand-more i {
  color: var(--primary);
  font-size: 2.15rem;
  line-height: 1;
}

.brand-more small {
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.45;
  max-width: 150px;
}

/* CUSTOMER REVIEWS SECTION */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background-color: var(--white);
  padding: 2.25rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 23, 42, 0.03);
  position: relative;
}

.review-stars {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.review-card p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.08);
  color: var(--primary);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  border: 2px solid rgba(16, 185, 129, 0.15);
  font-size: 1.1rem;
}

.reviewer-info h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}

.reviewer-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* FAQ SECTION */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.02);
  transition: var(--transition);
}

.faq-item.active {
  background-color: var(--white);
  border-color: rgba(16, 185, 129, 0.15);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.75rem;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  color: var(--primary);
  font-size: 1.1rem;
  transition: var(--transition);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
  padding: 0 1.75rem 1.5rem 1.75rem;
  color: var(--text);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

/* CONTACT & GET QUOTE FORM */
.contact-section .container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.contact-info-header h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(16, 185, 129, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: 0.9rem;
  color: var(--text);
}

/* Contact Card Form */
.contact-card {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 23, 42, 0.03);
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.form-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark-light);
}

.form-control {
  font-family: var(--font-main);
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  border: 1.5px solid #cbd5e1;
  font-size: 0.95rem;
  color: var(--dark);
  background-color: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

select.form-control {
  cursor: pointer;
}

.form-submit-btn {
  width: 100%;
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

/* Form success message popup */
.form-success-message {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem auto;
}

.form-success-message h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-success-message p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* BREADCRUMB PAGE BANNER */
.page-banner {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.95) 100%),
              url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="30" cy="30" r="1.5" fill="%2310b981" fill-opacity="0.04"/></svg>');
  background-size: cover, 30px 30px;
  padding: 4.5rem 0;
  color: var(--white);
  text-align: center;
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--white);
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs i {
  font-size: 0.75rem;
}

/* STATS COUNTER GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.stat-item {
  background-color: var(--white);
  padding: 2.25rem 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1.5px solid rgba(15, 23, 42, 0.02);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.15);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* MISSION & VISION CARDS */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.mission-card {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 23, 42, 0.03);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary);
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--secondary);
}

.mission-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: rgba(16, 185, 129, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.vision-card .mission-card-icon {
  background-color: rgba(245, 158, 11, 0.08);
  color: var(--secondary);
}

.mission-card h3 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}

.mission-card p {
  color: var(--text);
  line-height: 1.6;
}

/* ECO PROCESS DETAILED SECTION */
.process-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.process-detail-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-detail-item {
  display: flex;
  gap: 1.25rem;
  position: relative;
}

.process-detail-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 48px;
  left: 24px;
  width: 2px;
  height: calc(100% - 28px);
  background-color: #cbd5e1;
}

.process-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-light);
  border: 2.5px solid #cbd5e1;
  color: var(--dark-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  z-index: 2;
  transition: var(--transition);
}

.process-detail-item:hover .process-detail-icon {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.25);
}

.process-detail-content h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.process-detail-content p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

/* FOOTER COMPONENT */
#scrapcar-footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 5rem 0 2rem 0;
  border-top: 4px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-column h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 4px;
}

.footer-about p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--primary);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 0.35rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 0.2rem;
}

.footer-contact-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.footer-contact-item a {
  color: var(--white);
  font-weight: 600;
}

.footer-contact-item a:hover {
  color: var(--primary);
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* SERVICES PAGE SPECIFIC STYLES */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (min-width: 1025px) {
  .services-page-grid > *:nth-child(7) {
    grid-column: 2; /* Center the 7th card in the 3-column grid */
  }
}

.service-page-card {
  background-color: var(--white);
  padding: 3rem 2.25rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(15, 23, 42, 0.03);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.service-page-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.2);
}

.service-page-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background-color: rgba(16, 185, 129, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.75rem;
  transition: var(--transition);
}

.service-page-card:hover .service-page-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3);
}

.service-page-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-page-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

/* SERVICES CTA BANNER */
.services-cta-banner {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.95) 100%),
              url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80"><rect fill="%2310b981" fill-opacity="0.015" width="40" height="40" x="0" y="0"/></svg>');
  background-size: cover, 40px 40px;
  padding: 5.5rem 0;
  text-align: center;
  color: var(--white);
}

.services-cta-content {
  max-width: 650px;
  margin: 0 auto;
}

.services-cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 850;
  margin-bottom: 1rem;
}

.services-cta-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.services-cta-content .btn-primary {
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}


/* SELL YOUR CAR PORTAL STYLES */
.sell-car-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.sell-guide-card {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 23, 42, 0.03);
}

.sell-guide-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.doc-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.doc-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.doc-list-item i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.doc-list-item h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.doc-list-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 0;
}

/* Custom File Upload Dropzone */
.upload-dropzone {
  border: 2px dashed #cbd5e1;
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.upload-dropzone input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}

.upload-dropzone.dragover,
.upload-dropzone:hover {
  border-color: var(--primary);
  background-color: rgba(16, 185, 129, 0.04);
}

.upload-dropzone-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(15, 23, 42, 0.03);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.upload-dropzone:hover .upload-dropzone-icon {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--primary);
  transform: translateY(-2px);
}

.upload-dropzone p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.upload-dropzone p strong {
  color: var(--dark);
}

.file-list-preview {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.5rem;
  display: none;
}


/* VERTICAL TIMELINE STYLES */
.timeline-v {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-v::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #e2e8f0;
  transform: translateX(-50%);
  border-radius: 4px;
}

.timeline-v-item {
  position: relative;
  width: 50%;
  margin-bottom: 4rem;
  display: flex;
}

.timeline-v-item:nth-child(odd) {
  left: 0;
  justify-content: flex-end;
  padding-right: 3rem;
}

.timeline-v-item:nth-child(even) {
  left: 50%;
  justify-content: flex-start;
  padding-left: 3rem;
}

/* Timeline Cards */
.timeline-v-card {
  background-color: var(--white);
  padding: 2.25rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 23, 42, 0.03);
  width: 100%;
  max-width: 400px;
  transition: var(--transition);
  position: relative;
}

.timeline-v-item:nth-child(odd) .timeline-v-card {
  text-align: right;
}

.timeline-v-item:nth-child(even) .timeline-v-card {
  text-align: left;
}

.timeline-v-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.2);
}

/* Icons */
.timeline-v-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background-color: rgba(16, 185, 129, 0.08);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.timeline-v-card:hover .timeline-v-icon {
  background-color: var(--primary);
  color: var(--white);
}

.timeline-v-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.timeline-v-card p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

/* Marker Circle Badge */
.timeline-v-marker {
  position: absolute;
  top: 15px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--white);
  border: 4px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
  z-index: 10;
  transition: var(--transition);
}

.timeline-v-item:nth-child(odd) .timeline-v-marker {
  right: -22px;
}

.timeline-v-item:nth-child(even) .timeline-v-marker {
  left: -22px;
}

.timeline-v-item:hover .timeline-v-marker {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.25);
}


/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .top-strip {
    display: none;
  }
  .desktop-nav {
    display: none;
  }
  .hamburger-toggle {
    display: block;
  }
  
  /* Home Page Layout Tweaks */
  .section-padding {
    padding: 4.5rem 0;
  }
  .hero-grid,
  .about-grid,
  .contact-section .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-badge-wrap {
    order: -1;
  }
  
  .about-img-container {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .process-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .process-timeline::before {
    display: none;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 760px;
  }
  
  /* About Us Layout Tweaks */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .mission-vision-grid,
  .process-detail-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  /* Services Page Layout Tweaks */
  .services-page-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  /* Sell Your Car Page Layout Tweaks */
  .sell-car-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  /* Process Page Timeline Tweaks */
  .timeline-v::before {
    left: 20px;
  }
  .timeline-v-item {
    width: 100%;
    left: 0 !important;
    padding-left: 3.5rem !important;
    padding-right: 0 !important;
    justify-content: flex-start !important;
    margin-bottom: 2.5rem;
  }
  .timeline-v-item .timeline-v-card {
    max-width: 100%;
    text-align: left !important;
  }
  .timeline-v-marker {
    left: -2px !important;
    right: auto !important;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 3rem 0;
  }
  
  .services-grid,
  .why-grid,
  .process-timeline,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .brands-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .brand-item {
    min-height: 142px;
    padding: 1.4rem 0.85rem;
    font-size: 0.82rem;
  }

  .brand-logo {
    max-width: 128px;
    height: 66px;
    padding: 0.35rem;
  }

  .brand-more i {
    font-size: 1.8rem;
  }

  .brand-more small {
    font-size: 0.68rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .contact-card {
    padding: 2rem 1.5rem;
  }
  
  /* About Us Layout Tweaks */
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Services Page Layout Tweaks */
  .services-page-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   GALLERY PAGE STYLES
   ========================================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background-color: var(--white);
  color: var(--text-light);
  border: 2px solid #e2e8f0;
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.filter-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background-color: var(--dark);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  display: block;
  cursor: pointer;
  outline: none;
}

.gallery-item:focus-visible {
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.28), var(--shadow-md);
}

.gallery-item.hidden {
  display: none;
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}

.gallery-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-image-wrapper img,
.gallery-image-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-image-wrapper video {
  display: block;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.85));
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  box-sizing: border-box;
}

.gallery-overlay-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background-color: rgba(16, 185, 129, 0.9);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transform: translateY(-20px) scale(0.8);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.gallery-overlay-info {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.gallery-overlay-category {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.35rem;
  display: block;
}

.gallery-overlay-title {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

/* Hover States */
.gallery-item:hover .gallery-image-wrapper img,
.gallery-item:hover .gallery-image-wrapper video {
  transform: scale(1.08);
}

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

.gallery-item:hover .gallery-overlay-icon {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.gallery-item:hover .gallery-overlay-info {
  transform: translateY(0);
  opacity: 1;
}

.gallery-video-item .gallery-overlay {
  opacity: 1;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.9));
}

.gallery-video-item .gallery-overlay-icon {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 6rem;
  background: rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox-stage {
  position: relative;
  width: min(100%, 1120px);
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox-image,
.gallery-lightbox-video {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  background: #000;
}

.gallery-lightbox-video {
  width: min(100%, 960px);
}

.gallery-lightbox-image.is-hidden,
.gallery-lightbox-video.is-hidden {
  display: none;
}

.gallery-lightbox-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.78);
  color: var(--white);
}

.gallery-lightbox-caption span {
  display: block;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.gallery-lightbox-caption h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.3;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: absolute;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:focus-visible {
  outline: 3px solid rgba(16, 185, 129, 0.55);
  outline-offset: 3px;
}

.gallery-lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
}

.gallery-lightbox-prev {
  left: 1.5rem;
}

.gallery-lightbox-next {
  right: 1.5rem;
}

/* Media Queries for Gallery */
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .gallery-filters {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  
  .filter-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
  }
  
  .gallery-overlay {
    padding: 1.5rem;
  }
  
  .gallery-overlay-title {
    font-size: 1.15rem;
  }

  .gallery-lightbox {
    padding: 4.5rem 1rem 5.5rem;
  }

  .gallery-lightbox-nav {
    bottom: 1.5rem;
    top: auto;
  }

  .gallery-lightbox-prev {
    left: calc(50% - 4rem);
  }

  .gallery-lightbox-next {
    right: calc(50% - 4rem);
  }

  .gallery-lightbox-close {
    top: 1rem;
    right: 1rem;
  }

  .gallery-lightbox-caption {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .gallery-lightbox-caption h3 {
    font-size: 1rem;
  }
}

/* ==========================================================================
   BLOG PAGE STYLES
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.blog-card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.blog-card-image {
  position: relative;
  height: 250px;
  width: 100%;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.45rem 1rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.25);
  z-index: 2;
}

.blog-card-content {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  color: #64748b; /* slate-grey */
  font-weight: 500;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 1rem;
}

.blog-card-title a {
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition);
}

.blog-card-excerpt {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  align-self: flex-start;
}

/* Blog Hover Animations */
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  border-color: rgba(16, 185, 129, 0.1);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card:hover .blog-card-title a {
  color: var(--primary);
}

.blog-card:hover .blog-card-link {
  gap: 0.6rem;
}

/* Media Queries for Blog */
@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .blog-card-image {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .blog-card-content {
    padding: 1.75rem 1.5rem;
  }
  
  .blog-card-title {
    font-size: 1.25rem;
  }
  
  .blog-card-image {
    height: 220px;
  }
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #25d366;
  color: var(--white);
  border: none;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
  margin-top: 1rem;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  color: var(--white);
}

.map-section {
  padding-top: 0;
}

.map-container {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 23, 42, 0.05);
  line-height: 0;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

@media (max-width: 640px) {
  .map-container iframe {
    height: 300px;
  }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Delay modifiers */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* ==========================================================================
   FLOATING UTILITY ACTION BUTTONS
   ========================================================================== */
.whatsapp-floating {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: var(--white) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: floatPulse 2s infinite;
}

.whatsapp-floating:hover {
  background-color: #20ba5a;
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.call-floating {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background-color: var(--primary);
  color: var(--white) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: floatPulsePrimary 2s infinite 0.5s;
}

.call-floating:hover {
  background-color: #0d9488;
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.back-to-top {
  position: fixed;
  bottom: 155px;
  right: 25px;
  width: 56px;
  height: 56px;
  background-color: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
  z-index: 998;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top.show {
  opacity: 0.85;
  visibility: visible;
  transform: scale(1);
}

.back-to-top.show:hover {
  opacity: 1;
  background-color: var(--primary);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
  transform: translateY(-3px);
}

@keyframes floatPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes floatPulsePrimary {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* ==========================================================================
   TESTIMONIALS SLIDER / CAROUSEL
   ========================================================================== */
.testimonial-slider-container {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}

.testimonial-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.testimonial-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slider-dot:hover {
  background-color: var(--primary);
  transform: scale(1.15);
}

.slider-dot.active {
  background-color: var(--primary);
  width: 32px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.35);
}

@media (max-width: 640px) {
  .whatsapp-floating {
    bottom: 80px;
    right: 15px;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  
  .call-floating {
    bottom: 20px;
    right: 15px;
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
  }
  
  .back-to-top {
    bottom: 140px;
    right: 15px;
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }
}

/* Custom media queries to fix laptop layout alignment & prevent wrapping */
@media (min-width: 1025px) and (max-width: 1320px) {
  .desktop-nav {
    gap: 1.25rem;
  }
  .nav-menu {
    gap: 1rem;
  }
  .nav-menu a {
    font-size: 0.85rem;
  }
  .top-strip-links {
    gap: 1rem;
  }
  .top-strip-contact {
    gap: 1rem;
  }
}

/* ==========================================================================
   DIRECT LEGAL SCRAPPING (CAR SCRAP DELHI) SECTION
   ========================================================================== */
.direct-scrap-card {
  background: linear-gradient(135deg, #f0fdf4 0%, #e6fbf0 100%);
  border: 1.5px solid rgba(16, 185, 129, 0.2);
  border-radius: 20px;
  padding: 3.5rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.05);
  position: relative;
}

.direct-scrap-header {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.direct-scrap-title-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.badge-recommended {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background-color: #d1fae5;
  color: #065f46;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.direct-scrap-subtitle {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  line-height: 1.2;
}

.direct-scrap-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: #065f46;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* Diagram styling */
.scrapping-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 3rem 0;
  padding: 1rem;
  max-width: 100%;
}

.diagram-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  flex-shrink: 0;
}

.diagram-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background-color: var(--white);
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #64748b;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.car-node .diagram-icon {
  color: var(--dark);
}

.cert-node .diagram-icon {
  color: var(--primary);
}

.rvsf-box {
  background-color: var(--white);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.1);
  transition: var(--transition);
}

.rvsf-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

.rvsf-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.diagram-line {
  flex-grow: 1;
  height: 3px;
  background-color: #cbd5e1;
  margin: 0 -5px 2rem -5px; /* Offset for labels */
  min-width: 60px;
  max-width: 120px;
  position: relative;
  transform: translateY(-14px); /* Align with centers of circles/box */
}

.diagram-line.active {
  background-color: var(--primary);
}

.line-checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.35rem;
  line-height: 1;
}

.direct-scrap-bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 620px;
  margin: 0 auto 2.5rem auto;
  text-align: left;
  padding: 0;
  list-style: none;
}

.direct-scrap-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1.05rem;
  color: var(--dark-light);
  font-weight: 500;
}

.bullet-check {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.direct-scrap-footer-note {
  font-size: 0.95rem;
  color: #065f46;
  border-top: 1px solid rgba(16, 185, 129, 0.15);
  padding-top: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.direct-scrap-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.direct-scrap-actions .btn {
  padding: 0.9rem 2.25rem;
  font-size: 1rem;
}

.direct-scrap-actions .btn-outline {
  border-color: #065f46;
  color: #065f46;
}

.direct-scrap-actions .btn-outline:hover {
  background-color: #065f46;
  color: var(--white);
}

/* Animations and Hover effects */
.direct-scrap-card:hover .rvsf-box {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.direct-scrap-card:hover .diagram-icon {
  transform: translateY(-3px);
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .direct-scrap-card {
    padding: 2.5rem 1.35rem 7rem;
  }
  .direct-scrap-header {
    align-items: flex-start;
    text-align: left;
  }
  .direct-scrap-title-row {
    justify-content: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
  }
  .direct-scrap-subtitle {
    font-size: 1.8rem;
  }
  .direct-scrap-title {
    font-size: 1.35rem;
    line-height: 1.35;
  }
  .badge-recommended {
    font-size: 0.72rem;
    padding: 0.3rem 0.65rem;
  }
  .scrapping-diagram {
    justify-content: center;
    margin: 2rem 0;
    padding: 0;
    overflow: visible;
  }
  .diagram-step {
    font-size: 0;
  }
  .diagram-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 1.25rem;
  }
  .rvsf-box {
    border-radius: 12px;
    padding: 0.75rem 0.85rem;
  }
  .rvsf-brand {
    font-size: 0.9rem;
  }
  .rvsf-sub {
    font-size: 0.58rem;
  }
  .diagram-line {
    min-width: 24px;
    max-width: 40px;
    margin-bottom: 0;
    transform: translateY(0);
  }
  .line-checkmark {
    font-size: 1rem;
  }
  .direct-scrap-bullets {
    gap: 1.15rem;
    margin-bottom: 2rem;
  }
  .direct-scrap-bullets li {
    font-size: 1rem;
    line-height: 1.5;
  }
  .direct-scrap-footer-note {
    text-align: left;
    margin-bottom: 2rem;
  }
  .direct-scrap-actions {
    justify-content: flex-start;
    gap: 0.85rem;
  }
  .direct-scrap-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   EXCHANGE GUIDELINES (WHAT WE GIVE / WHAT YOU GIVE) SECTION
   ========================================================================== */
.exchange-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.exchange-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}

.exchange-card.give-you {
  background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('images/gallery_recycle_1.png');
}

.exchange-card.give-us {
  background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('images/gallery_collected_1.png');
}

.exchange-card-banner {
  background-color: rgba(15, 23, 42, 0.95);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  text-align: center;
}

.exchange-card-banner h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.exchange-card-body {
  padding: 3rem 2.5rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exchange-list {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  padding-left: 0;
  margin: 0;
}

.exchange-list.numeric {
  list-style: none;
  counter-reset: exchange-counter;
}

.exchange-list.numeric li {
  counter-increment: exchange-counter;
  position: relative;
  padding-left: 2.5rem;
  line-height: 1.4;
  transition: var(--transition);
}

.exchange-list.numeric li::before {
  content: counter(exchange-counter) ". ";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

.exchange-list.bulleted {
  list-style: none;
}

.exchange-list.bulleted li {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  line-height: 1.4;
  transition: var(--transition);
}

.exchange-list.bulleted .bullet-icon {
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Hover effects */
.exchange-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}

.exchange-card:hover .exchange-list li {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .exchange-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .exchange-card {
    min-height: auto;
  }
}
