/* ============================================
   R&R RECYCLED JAX LLC - Premium Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
  --black: #080808;
  --charcoal: #121212;
  --dark-metallic: #1C1C1C;
  --premium-gold: #D4A017;
  --bright-gold: #F5C542;
  --light-gold: #FFD966;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --accent-red: #D71920;
  --eco-green: #4CAF35;
  --copper: #B87333;
  --gold-gradient: linear-gradient(135deg, #D4A017, #F5C542, #FFD966);
  --dark-gradient: linear-gradient(180deg, #080808 0%, #121212 50%, #1C1C1C 100%);
  --shadow-gold: 0 0 30px rgba(212, 160, 23, 0.15);
  --shadow-card: 0 4px 20px rgba(0,0,0,0.3);
  --transition: all 0.3s ease;
  --font-headline: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-brand: 'Cinzel', 'Times New Roman', serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-headline);
  letter-spacing: 2px;
  line-height: 1.1;
}

.section-title {
  font-family: var(--font-headline);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 0.3em;
  letter-spacing: 3px;
}

.section-subtitle {
  text-align: center;
  color: #ccc;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.gold-text { color: var(--premium-gold); }
.white-text { color: var(--white); }

/* Gold shine animation */
@keyframes goldShine {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shine-text {
  background: linear-gradient(90deg, var(--premium-gold) 0%, var(--light-gold) 25%, var(--white) 50%, var(--light-gold) 75%, var(--premium-gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShine 4s linear infinite;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 160, 23, 0.5);
}

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

.btn-outline:hover {
  background: var(--premium-gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-red {
  background: var(--accent-red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(215, 25, 32, 0.3);
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(215, 25, 32, 0.5);
  background: #e61e25;
}

.btn-white {
  background: var(--white);
  color: var(--black);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

/* --- Scroll Reveal --- */
/* Enhanced reveal in animations section below */

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

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

.logo img {
  height: 45px;
  width: auto;
}

.logo-text {
  font-family: var(--font-brand);
  font-size: 1rem;
  color: var(--premium-gold);
  letter-spacing: 1px;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.6rem;
  color: #999;
  letter-spacing: 2px;
  font-family: var(--font-body);
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-desktop a {
  font-family: var(--font-headline);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  color: #ccc;
  padding: 8px 12px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-desktop a:hover {
  color: var(--premium-gold);
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  background: var(--dark-metallic);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 4px;
  overflow: hidden;
}

.lang-switch button {
  background: transparent;
  border: none;
  color: #999;
  font-family: var(--font-headline);
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 6px 12px;
  cursor: pointer;
  transition: var(--transition);
}

.lang-switch button.active {
  background: var(--premium-gold);
  color: var(--black);
}

.lang-switch button:hover:not(.active) {
  color: var(--premium-gold);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--premium-gold);
  font-family: var(--font-headline);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.header-phone svg {
  width: 16px;
  height: 16px;
  fill: var(--premium-gold);
  animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(-10deg); }
  20% { transform: rotate(10deg); }
  30% { transform: rotate(-5deg); }
  40% { transform: rotate(5deg); }
  50% { transform: rotate(0); }
}

.btn-header-cta {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--premium-gold);
  transition: var(--transition);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 8, 8, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: #ccc;
  padding: 12px 20px;
  transition: var(--transition);
}

.nav-mobile a:hover {
  color: var(--premium-gold);
}

.nav-mobile .mobile-phone {
  margin-top: 20px;
  color: var(--premium-gold);
  font-size: 1.3rem;
}

.nav-mobile .mobile-lang {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.nav-mobile .mobile-lang button {
  background: var(--dark-metallic);
  border: 1px solid rgba(212, 160, 23, 0.3);
  color: #ccc;
  font-family: var(--font-headline);
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition);
}

.nav-mobile .mobile-lang button.active {
  background: var(--premium-gold);
  color: var(--black);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark-gradient);
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(212, 160, 23, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(184, 115, 51, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 30px;
  padding: 8px 18px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--premium-gold);
  letter-spacing: 1px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--premium-gold);
}

.hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 4px;
}

.hero h1 .gold {
  color: var(--premium-gold);
}

.hero h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: #ccc;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-desc {
  color: #aaa;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 520px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 35px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--premium-gold);
  font-weight: 600;
}

.hero-badge-item svg {
  width: 18px;
  height: 18px;
  fill: var(--eco-green);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.hero-meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #999;
  font-size: 0.9rem;
}

.hero-meta-item svg {
  width: 20px;
  height: 20px;
  fill: var(--premium-gold);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(212, 160, 23, 0.2);
  box-shadow: 0 0 60px rgba(212, 160, 23, 0.1);
}

.hero-visual-main {
  min-height: 400px;
}

.hero-visual-main svg {
  display: block;
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(8,8,8,0.95));
  padding: 40px 25px 20px;
  text-align: center;
}

.hero-overlay-text .big {
  font-family: var(--font-headline);
  font-size: 2.5rem;
  color: var(--premium-gold);
  letter-spacing: 4px;
}

.hero-overlay-text .small {
  color: #999;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--charcoal);
  border-top: 2px solid var(--premium-gold);
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
  padding: 20px 0;
  position: relative;
  z-index: 3;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headline);
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: var(--premium-gold);
  padding: 5px 15px;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--premium-gold);
  flex-shrink: 0;
}

.trust-divider {
  color: rgba(212, 160, 23, 0.3);
  font-size: 1.2rem;
}

/* ============================================
   WHAT WE BUY
   ============================================ */
.section-whatwebuy {
  background: var(--off-white);
  color: var(--black);
  padding: 80px 0;
}

.section-whatwebuy .section-title {
  color: var(--black);
}

.section-whatwebuy .section-subtitle {
  color: #555;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--premium-gold);
}

.card-icon {
  height: 160px;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.card-icon.card-visual-ac { background: linear-gradient(135deg, #121212 0%, #1a1a2e 100%); }
.card-icon.card-visual-ah { background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%); }
.card-icon.card-visual-comp { background: linear-gradient(135deg, #1C1C1C 0%, #1a1a2e 100%); }
.card-icon.card-visual-motor { background: linear-gradient(135deg, #121212 0%, #1C1C1C 100%); }
.card-icon.card-visual-copper { background: linear-gradient(135deg, #1a1410 0%, #1C1C1C 100%); }
.card-icon.card-visual-alum { background: linear-gradient(135deg, #1a1a1a 0%, #1C1C1C 100%); }
.card-icon.card-visual-coils { background: linear-gradient(135deg, #1a1410 0%, #121212 100%); }
.card-icon.card-visual-pkg { background: linear-gradient(135deg, #121212 0%, #1a1a2e 100%); }
.card-icon.card-visual-other { background: linear-gradient(135deg, #1C1C1C 0%, #121212 100%); }

.card-body {
  padding: 20px;
}

.card-body h3 {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.card-body p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cta-under-cards {
  text-align: center;
  padding: 30px;
  background: var(--charcoal);
  border-radius: 8px;
  color: var(--white);
}

.cta-under-cards h3 {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  color: var(--premium-gold);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.cta-under-cards p {
  color: #ccc;
  margin-bottom: 20px;
}

.cta-under-cards .phone-big {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  color: var(--premium-gold);
  letter-spacing: 2px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.section-howitworks {
  background: var(--black);
  padding: 80px 0;
  position: relative;
}

.section-howitworks::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(212, 160, 23, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--black);
  font-family: var(--font-headline);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(212, 160, 23, 0.3);
}

.step h3 {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  color: var(--premium-gold);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.step p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
}

.how-bottom {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.how-bottom .big-text {
  font-family: var(--font-headline);
  font-size: 2rem;
  color: var(--premium-gold);
  letter-spacing: 6px;
  margin-bottom: 20px;
}

/* ============================================
   PICKUP SERVICE
   ============================================ */
.section-pickup {
  background: var(--charcoal);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-pickup::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.pickup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pickup-content h2 {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--premium-gold);
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.pickup-content p {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.pickup-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.pickup-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ddd;
  font-size: 0.95rem;
}

.pickup-list-item svg {
  width: 20px;
  height: 20px;
  fill: var(--eco-green);
  flex-shrink: 0;
}

.pickup-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(212, 160, 23, 0.2);
}

.pickup-visual svg {
  display: block;
  width: 100%;
  height: auto;
}

.pickup-visual img {
  width: 100%;
  height: auto;
}

/* ============================================
   RESIDENTIAL + COMMERCIAL
   ============================================ */
.section-rescom {
  background: var(--black);
  padding: 80px 0;
}

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

.rescom-card {
  background: var(--dark-metallic);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.rescom-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.rescom-card:hover {
  border-color: var(--premium-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.rescom-card svg {
  width: 50px;
  height: 50px;
  fill: var(--premium-gold);
  margin-bottom: 20px;
}

.rescom-card h3 {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  color: var(--premium-gold);
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.rescom-card p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.rescom-card ul {
  text-align: left;
  margin-bottom: 25px;
}

.rescom-card li {
  color: #ccc;
  font-size: 0.9rem;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rescom-card li::before {
  content: '>';
  color: var(--premium-gold);
  font-weight: bold;
}

/* ============================================
   CASH / VALUE SECTION
   ============================================ */
.section-cash {
  background: var(--dark-gradient);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-cash::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cash-headline {
  font-family: var(--font-headline);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.cash-headline .line1 {
  display: block;
  color: var(--white);
  letter-spacing: 6px;
}

.cash-headline .line2 {
  display: block;
  color: var(--premium-gold);
  letter-spacing: 6px;
}

.cash-headline .line3 {
  display: block;
  color: var(--premium-gold);
  letter-spacing: 6px;
}

.cash-desc {
  color: #aaa;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto 15px;
  position: relative;
  z-index: 1;
}

.cash-note {
  color: #888;
  font-size: 0.85rem;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

/* ============================================
   WHY CHOOSE R&R
   ============================================ */
.section-whychoose {
  background: var(--off-white);
  color: var(--black);
  padding: 80px 0;
}

.section-whychoose .section-title {
  color: var(--black);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--premium-gold);
}

.why-card svg {
  width: 45px;
  height: 45px;
  fill: var(--premium-gold);
  margin-bottom: 15px;
}

.why-card h3 {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.why-card p {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ============================================
   ECO SECTION
   ============================================ */
.section-eco {
  background: var(--charcoal);
  padding: 80px 0;
  position: relative;
}

.section-eco::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(76, 175, 53, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.eco-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.eco-content h2 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--eco-green);
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.eco-content p {
  color: #bbb;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 30px;
}

.eco-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.eco-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #ccc;
  font-size: 0.9rem;
}

.eco-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--eco-green);
}

/* ============================================
   BEFORE / AFTER
   ============================================ */
.section-beforeafter {
  background: var(--black);
  padding: 80px 0;
}

.beforeafter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.beforeafter-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  background: var(--dark-metallic);
  border: 1px solid rgba(212, 160, 23, 0.2);
}

.beforeafter-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beforeafter-label {
  position: absolute;
  top: 15px;
  left: 15px;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  letter-spacing: 3px;
  padding: 6px 16px;
  border-radius: 4px;
}

.beforeafter-label.before {
  background: rgba(215, 25, 32, 0.9);
  color: var(--white);
}

.beforeafter-label.after {
  background: rgba(76, 175, 53, 0.9);
  color: var(--white);
}

.beforeafter-headline {
  text-align: center;
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--premium-gold);
  letter-spacing: 4px;
  margin-bottom: 20px;
}

/* ============================================
   QUOTE FORM
   ============================================ */
.section-quote {
  background: var(--dark-gradient);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-quote::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.quote-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--charcoal);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.quote-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 12px 12px 0 0;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-headline);
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  color: var(--premium-gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-metallic);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 4px;
  padding: 12px 15px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--premium-gold);
  box-shadow: 0 0 10px rgba(212, 160, 23, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.form-group select option {
  background: var(--charcoal);
  color: var(--white);
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--dark-metallic);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 4px;
  padding: 8px 14px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  color: #ccc;
}

.checkbox-item:hover {
  border-color: var(--premium-gold);
}

.checkbox-item input {
  accent-color: var(--premium-gold);
}

.checkbox-item input:checked + span {
  color: var(--premium-gold);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--dark-metallic);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 4px;
  padding: 8px 14px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  color: #ccc;
}

.radio-item:hover {
  border-color: var(--premium-gold);
}

.radio-item input {
  accent-color: var(--premium-gold);
}

.form-submit {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 10px;
}

.form-submit .btn {
  width: 100%;
  padding: 16px;
  font-size: 1.2rem;
}

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success svg {
  width: 80px;
  height: 80px;
  fill: var(--eco-green);
  margin-bottom: 20px;
}

.form-success h3 {
  font-family: var(--font-headline);
  font-size: 2rem;
  color: var(--premium-gold);
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.form-success p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 10px;
}

.form-success .phone-big {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--premium-gold);
  letter-spacing: 2px;
  margin-top: 15px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.section-faq {
  background: var(--off-white);
  color: var(--black);
  padding: 80px 0;
}

.section-faq .section-title {
  color: var(--black);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--premium-gold);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-family: var(--font-headline);
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: var(--black);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--premium-gold);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  fill: var(--premium-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 20px 18px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.section-final-cta {
  background: var(--dark-gradient);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta-content h2 {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 15px;
  letter-spacing: 4px;
}

.final-cta-content h2 .gold {
  color: var(--premium-gold);
}

.final-cta-content .subtitle {
  color: #aaa;
  font-size: 1.1rem;
  margin-bottom: 35px;
}

.final-cta-contacts {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.final-cta-phone {
  font-family: var(--font-headline);
  font-size: 2rem;
  color: var(--premium-gold);
  letter-spacing: 3px;
  margin-bottom: 30px;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(212, 160, 23, 0.2);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-brand .footer-logo img {
  height: 40px;
}

.footer-brand .footer-logo-text {
  font-family: var(--font-brand);
  font-size: 0.9rem;
  color: var(--premium-gold);
  letter-spacing: 1px;
}

.footer-brand .tagline {
  color: #888;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-family: var(--font-headline);
}

.footer-brand .serving {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-headline);
  font-size: 1rem;
  color: var(--premium-gold);
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.footer-col a {
  display: block;
  color: #888;
  font-size: 0.85rem;
  padding: 4px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--premium-gold);
}

.footer-col .footer-phone {
  color: var(--premium-gold);
  font-family: var(--font-headline);
  font-size: 1rem;
  letter-spacing: 1px;
}

.footer-col .footer-email {
  color: #aaa;
  font-size: 0.85rem;
  word-break: break-all;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 160, 23, 0.1);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-left {
  color: #555;
  font-size: 0.8rem;
}

.footer-bottom-right {
  display: flex;
  gap: 15px;
}

.footer-bottom-right a {
  color: #555;
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-bottom-right a:hover {
  color: var(--premium-gold);
}

/* ============================================
   MOBILE BOTTOM BAR
   ============================================ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 8, 8, 0.98);
  border-top: 2px solid var(--premium-gold);
  z-index: 1000;
  padding: 8px 10px;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
}

.mobile-bottom-bar-inner {
  display: flex;
  gap: 8px;
}

.mobile-bottom-bar a,
.mobile-bottom-bar button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 5px;
  border-radius: 4px;
  font-family: var(--font-headline);
  font-size: 0.8rem;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-bottom-bar .mb-call {
  background: var(--eco-green);
  color: var(--white);
  text-decoration: none;
}

.mobile-bottom-bar .mb-text {
  background: var(--premium-gold);
  color: var(--black);
  text-decoration: none;
}

.mobile-bottom-bar .mb-quote {
  background: var(--accent-red);
  color: var(--white);
  text-decoration: none;
}

.mobile-bottom-bar svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
  .header-phone { display: none; }
  .btn-header-cta { display: none; }
  
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 120px 0 60px; }
  
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pickup-grid { grid-template-columns: 1fr; }
  .rescom-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  .mobile-bottom-bar { display: block; }
  
  body { padding-bottom: 70px; }
  
  .cards-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .beforeafter-grid { grid-template-columns: 1fr; }
  
  .trust-bar-inner { gap: 5px; }
  .trust-item { font-size: 0.75rem; padding: 5px 8px; }
  .trust-divider { display: none; }
  
  .quote-form-container { padding: 25px 15px; }
  .quote-form { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: 1; }
  .form-submit { grid-column: 1; }
  
  .hero h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-badges { gap: 10px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  
  .final-cta-actions { flex-direction: column; align-items: center; }
  .final-cta-actions .btn { width: 100%; max-width: 300px; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .cash-headline { font-size: clamp(2.5rem, 10vw, 4.5rem); }
  
  .pickup-list { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .hero-badges { flex-direction: column; align-items: flex-start; }
  .hero-meta { flex-direction: column; gap: 10px; }
}

/* Large screens */
@media (min-width: 1440px) {
  .container { max-width: 1300px; }
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #080808;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.loader-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(212, 160, 23, 0.3);
  animation: loaderLogoPulse 2s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(212, 160, 23, 0.2);
}

.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes loaderLogoPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(212, 160, 23, 0.2); }
  50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(212, 160, 23, 0.4); }
}

.loader-ring {
  width: 60px;
  height: 60px;
  position: relative;
}

.loader-ring-segment {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid transparent;
}

.loader-ring-segment:nth-child(1) {
  border-top-color: #D4A017;
  animation: loaderSpin 1.2s linear infinite;
}

.loader-ring-segment:nth-child(2) {
  border-right-color: #B87333;
  animation: loaderSpin 1.6s linear infinite reverse;
}

.loader-ring-segment:nth-child(3) {
  border-bottom-color: #F5C542;
  animation: loaderSpin 2s linear infinite;
}

@keyframes loaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-text {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 4px;
  color: #D4A017;
}

.loader-dots span {
  animation: loaderDotBlink 1.4s infinite;
  opacity: 0;
}

.loader-dots span:nth-child(1) { animation-delay: 0s; }
.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes loaderDotBlink {
  0%, 20% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(212, 160, 23, 0.15);
  border-radius: 3px;
  overflow: hidden;
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #D4A017, #F5C542, #FFD966);
  border-radius: 3px;
  transition: width 0.3s ease;
}

/* ============================================
   ENHANCED ANIMATIONS
   ============================================ */

/* Staggered card reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Hero entrance animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes heroFadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes heroScaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.hero-content .hero-badge { animation: heroFadeUp 0.8s 0.3s both; }
.hero-content h1 { animation: heroFadeUp 0.8s 0.5s both; }
.hero-content h2 { animation: heroFadeUp 0.8s 0.7s both; }
.hero-content .hero-desc { animation: heroFadeUp 0.8s 0.9s both; }
.hero-content .hero-badges { animation: heroFadeUp 0.8s 1.1s both; }
.hero-content .hero-actions { animation: heroFadeUp 0.8s 1.3s both; }
.hero-content .hero-meta { animation: heroFadeUp 0.8s 1.5s both; }
.hero-visual { animation: heroScaleIn 1s 0.6s both; }

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float { animation: float 3s ease-in-out infinite; }

/* Pulse glow on buttons */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3); }
  50% { box-shadow: 0 4px 40px rgba(212, 160, 23, 0.6); }
}

.btn-gold { animation: pulseGlow 3s ease-in-out infinite; }

/* Step number counter animation */
@keyframes stepPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.step.visible .step-number {
  animation: stepPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

.step.visible:nth-child(1) .step-number { animation-delay: 0.1s; }
.step.visible:nth-child(2) .step-number { animation-delay: 0.25s; }
.step.visible:nth-child(3) .step-number { animation-delay: 0.4s; }
.step.visible:nth-child(4) .step-number { animation-delay: 0.55s; }

/* Card tilt on hover */
.card {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, border-color 0.4s ease;
}

.card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 12px 40px rgba(212, 160, 23, 0.15);
}

/* Why choose cards stagger */
.why-card.visible {
  animation: cardSlideUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.why-card.visible:nth-child(1) { animation-delay: 0.05s; }
.why-card.visible:nth-child(2) { animation-delay: 0.1s; }
.why-card.visible:nth-child(3) { animation-delay: 0.15s; }
.why-card.visible:nth-child(4) { animation-delay: 0.2s; }
.why-card.visible:nth-child(5) { animation-delay: 0.25s; }
.why-card.visible:nth-child(6) { animation-delay: 0.3s; }
.why-card.visible:nth-child(7) { animation-delay: 0.35s; }
.why-card.visible:nth-child(8) { animation-delay: 0.4s; }

@keyframes cardSlideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* What We Buy cards stagger */
.cards-grid .card.visible {
  animation: cardSlideUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.cards-grid .card.visible:nth-child(1) { animation-delay: 0.05s; }
.cards-grid .card.visible:nth-child(2) { animation-delay: 0.1s; }
.cards-grid .card.visible:nth-child(3) { animation-delay: 0.15s; }
.cards-grid .card.visible:nth-child(4) { animation-delay: 0.2s; }
.cards-grid .card.visible:nth-child(5) { animation-delay: 0.25s; }
.cards-grid .card.visible:nth-child(6) { animation-delay: 0.3s; }
.cards-grid .card.visible:nth-child(7) { animation-delay: 0.35s; }
.cards-grid .card.visible:nth-child(8) { animation-delay: 0.4s; }
.cards-grid .card.visible:nth-child(9) { animation-delay: 0.45s; }

/* FAQ item animation */
.faq-item.visible {
  animation: faqSlide 0.5s ease both;
}

.faq-item.visible:nth-child(1) { animation-delay: 0.05s; }
.faq-item.visible:nth-child(2) { animation-delay: 0.1s; }
.faq-item.visible:nth-child(3) { animation-delay: 0.15s; }
.faq-item.visible:nth-child(4) { animation-delay: 0.2s; }
.faq-item.visible:nth-child(5) { animation-delay: 0.25s; }
.faq-item.visible:nth-child(6) { animation-delay: 0.3s; }
.faq-item.visible:nth-child(7) { animation-delay: 0.35s; }
.faq-item.visible:nth-child(8) { animation-delay: 0.4s; }

@keyframes faqSlide {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Trust bar items */
.trust-item {
  transition: transform 0.3s ease, color 0.3s ease;
}

.trust-item:hover {
  transform: scale(1.1);
  color: var(--bright-gold);
}

/* Trust bar entrance */
.trust-bar-inner {
  animation: trustBarSlide 0.8s 1.8s both;
}

@keyframes trustBarSlide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Cash headline dramatic entrance */
.section-cash .cash-headline .line1 {
  opacity: 0;
  animation: cashReveal 0.8s 0.2s both;
}

.section-cash .cash-headline .line2 {
  opacity: 0;
  animation: cashReveal 0.8s 0.5s both;
}

.section-cash .cash-headline .line3 {
  opacity: 0;
  animation: cashReveal 0.8s 0.8s both;
}

.section-cash.visible .cash-headline .line1 { animation: cashReveal 0.8s 0.2s both; }
.section-cash.visible .cash-headline .line2 { animation: cashReveal 0.8s 0.5s both; }
.section-cash.visible .cash-headline .line3 { animation: cashReveal 0.8s 0.8s both; }

@keyframes cashReveal {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Eco icon bounce */
.eco-icon {
  transition: transform 0.3s ease;
}

.eco-icon:hover {
  transform: translateY(-5px) scale(1.1);
}

.eco-icon.visible {
  animation: ecoPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

.eco-icon.visible:nth-child(1) { animation-delay: 0.1s; }
.eco-icon.visible:nth-child(2) { animation-delay: 0.2s; }
.eco-icon.visible:nth-child(3) { animation-delay: 0.3s; }
.eco-icon.visible:nth-child(4) { animation-delay: 0.4s; }
.eco-icon.visible:nth-child(5) { animation-delay: 0.5s; }

@keyframes ecoPop {
  from { opacity: 0; transform: scale(0) rotate(-10deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

/* Before / After labels pulse */
.beforeafter-label.before {
  animation: labelPulseRed 2s ease-in-out infinite;
}

.beforeafter-label.after {
  animation: labelPulseGreen 2s ease-in-out infinite;
}

@keyframes labelPulseRed {
  0%, 100% { box-shadow: 0 0 10px rgba(215, 25, 32, 0.3); }
  50% { box-shadow: 0 0 25px rgba(215, 25, 32, 0.6); }
}

@keyframes labelPulseGreen {
  0%, 100% { box-shadow: 0 0 10px rgba(76, 175, 53, 0.3); }
  50% { box-shadow: 0 0 25px rgba(76, 175, 53, 0.6); }
}

/* Form input focus glow */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 15px rgba(212, 160, 23, 0.3), 0 0 5px rgba(212, 160, 23, 0.2);
}

/* Quote form entrance */
.quote-form-container.visible {
  animation: formReveal 0.8s both;
}

@keyframes formReveal {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Final CTA dramatic */
.final-cta-content.visible h2 {
  animation: finalCTAReveal 1s both;
}

@keyframes finalCTAReveal {
  0% { opacity: 0; transform: translateY(30px); letter-spacing: 15px; }
  100% { opacity: 1; transform: translateY(0); letter-spacing: 4px; }
}

/* Phone number glow */
.header-phone {
  transition: text-shadow 0.3s ease;
}

.header-phone:hover {
  text-shadow: 0 0 15px rgba(212, 160, 23, 0.5);
}

/* Smooth scroll indicator */
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Pickup list items stagger */
.pickup-list-item {
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateX(-15px);
}

.pickup-list-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.pickup-list-item.animate-in:nth-child(1) { transition-delay: 0.05s; }
.pickup-list-item.animate-in:nth-child(2) { transition-delay: 0.1s; }
.pickup-list-item.animate-in:nth-child(3) { transition-delay: 0.15s; }
.pickup-list-item.animate-in:nth-child(4) { transition-delay: 0.2s; }
.pickup-list-item.animate-in:nth-child(5) { transition-delay: 0.25s; }
.pickup-list-item.animate-in:nth-child(6) { transition-delay: 0.3s; }
.pickup-list-item.animate-in:nth-child(7) { transition-delay: 0.35s; }

/* Rescom cards */
.rescom-card.visible {
  animation: rescomReveal 0.7s both;
}

.rescom-card.visible:nth-child(1) { animation-delay: 0.1s; }
.rescom-card.visible:nth-child(2) { animation-delay: 0.3s; }

@keyframes rescomReveal {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Parallax subtle */
.parallax-slow {
  will-change: transform;
}

/* Gold border glow on hover for cards */
.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: border-color 0.4s ease;
  pointer-events: none;
}

.card:hover::after {
  border-color: rgba(212, 160, 23, 0.3);
}

/* Button ripple effect */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* Gradient text animation for section titles */
@keyframes gradientText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section-title {
  background-size: 200% auto;
}

/* Hero badge shimmer */
.hero-badge {
  position: relative;
  overflow: hidden;
}

.hero-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.15), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Copper coil subtle rotation in SVG */
@keyframes coilSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Mobile bottom bar bounce on load */
.mobile-bottom-bar {
  animation: mobileBarSlide 0.8s 2.5s both;
}

@keyframes mobileBarSlide {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* Rescom card gold top border animation */
.rescom-card::before {
  animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

/* Header logo hover */
.logo {
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Smooth section transitions */
section {
  position: relative;
}

/* Pickup visual subtle float */
.pickup-visual.visible svg {
  animation: float 4s ease-in-out infinite;
}

/* Before/After cards hover */
.beforeafter-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.beforeafter-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 40px rgba(212, 160, 23, 0.15);
}

/* Nav link underline effect */
.nav-desktop a {
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--premium-gold);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-desktop a:hover::after {
  width: 80%;
  left: 10%;
}

/* Success checkmark animation */
.form-success.show svg {
  animation: successBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successBounce {
  0% { transform: scale(0) rotate(-180deg); opacity: 0; }
  60% { transform: scale(1.2) rotate(10deg); }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

/* Gold line divider animation */
.trust-bar {
  overflow: hidden;
}

.trust-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--premium-gold), transparent);
  animation: lineSlide 4s linear infinite;
}

@keyframes lineSlide {
  0% { left: -100%; }
  100% { left: 200%; }
}
