/* ==============================================
   Online Scrap Dealer — Main Stylesheet
   Author: OnlineScrapDealer
   Version: 1.0
   ============================================== */

/* ---- CSS Custom Properties ---- */
:root {
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-light: #bbf7d0;
  --charcoal: #1c1c1e;
  --charcoal-2: #2d2d2d;
  --white: #ffffff;
  --off-white: #f9fafb;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --font-main: "Inter", sans-serif;
  --font-heading: "Poppins", sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
  --nav-height: 68px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-main);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ---- Utility ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-padding {
  padding: 96px 0;
}
.bg-light {
  background: var(--off-white);
}
.highlight {
  color: var(--green);
}

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 12px;
}
.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after {
  opacity: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.45);
}
.btn-outline {
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--charcoal);
  font-weight: 700;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ---- Glass Card ---- */
.glass-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
}

/* ============================================
   PAGE LOADER
   ============================================ */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition:
    opacity 0.5s,
    visibility 0.5s;
}
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-inner {
  text-align: center;
}
.loader-icon {
  font-size: 3rem;
  color: var(--green);
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}
.loader-bar {
  width: 180px;
  height: 4px;
  background: var(--gray-light);
  border-radius: 100px;
  overflow: hidden;
}
.loader-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  border-radius: 100px;
  animation: load-bar 1.2s ease-in-out forwards;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes load-bar {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition:
    background 0.4s,
    box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
}

.nav-logo-img {
  height: 48px;           /* Logo height navbar ke andar fit */
  width: auto;
  max-width: 180px;       /* Zyada wide na ho */
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo-img:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 10px rgba(34,197,94,0.25));
}

.nav-logo .logo-icon {
  color: var(--green);
  font-size: 1.6rem;
  animation: spin 6s linear infinite;
}
.nav-logo strong {
  color: var(--green);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--green);
  border-radius: 100px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--green);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.nav-cta {
  padding: 10px 22px;
  font-size: 0.88rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
#hero {
  min-height: 100vh;
  padding-top: var(--nav-height);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 40%, #bbf7d0 100%);
}
#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.floating-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.fi {
  position: absolute;
  color: var(--green);
  opacity: 0.12;
  font-size: 2rem;
  animation: floatIcon 6s ease-in-out infinite;
}
.fi-1 {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
  font-size: 3rem;
}
.fi-2 {
  top: 25%;
  left: 20%;
  animation-delay: 1s;
}
.fi-3 {
  top: 60%;
  left: 5%;
  animation-delay: 2s;
  font-size: 2.5rem;
}
.fi-4 {
  top: 75%;
  left: 30%;
  animation-delay: 0.5s;
}
.fi-5 {
  top: 10%;
  right: 15%;
  animation-delay: 1.5s;
  font-size: 3.5rem;
}
.fi-6 {
  top: 70%;
  right: 10%;
  animation-delay: 3s;
  font-size: 2rem;
}
@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(15deg);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 580px;
  padding: 60px 0 60px 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--charcoal);
}
.hero-subheadline {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 36px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
}
.hero-features span i {
  color: var(--green);
}
.hero-image-wrapper {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 60px 60px 0;
}
.hero-img {
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 480px;
}
.hero-img-badge {
  position: absolute;
  bottom: 80px;
  left: 30px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: floatIcon 4s ease-in-out infinite;
}
.hero-img-badge i {
  font-size: 1.8rem;
  color: var(--green);
}
.hero-img-badge strong {
  display: block;
  font-size: 0.95rem;
}
.hero-img-badge small {
  color: var(--gray);
  font-size: 0.8rem;
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-dot {
  width: 6px;
  height: 40px;
  background: rgba(34, 197, 94, 0.3);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}
.scroll-dot::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--green);
  border-radius: 100px;
  animation: scrollAnim 1.5s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* ============================================
   STATS
   ============================================ */
#stats {
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-2));
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-card {
  text-align: center;
  color: var(--white);
  padding: 32px 16px;
}
.stat-icon {
  width: 56px;
  height: 56px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green);
  margin: 0 auto 16px;
}
.stat-card h3 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.stat-plus {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
}
.stat-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-top: 8px;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: var(--white);
  border: 1px solid var(--gray-light);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}
.service-content {
  padding: 24px;
  position: relative;
}
.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 14px;
  margin-top: -44px;
  position: relative;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
}
.service-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-content p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-link {
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.service-link:hover {
  gap: 10px;
}

/* ============================================
   HOW IT WORKS TIMELINE
   ============================================ */
#how-it-works {
  background: var(--white);
}
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--green-light));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
}
.timeline-item:nth-child(odd) {
  flex-direction: row;
}
.timeline-item.right {
  flex-direction: row-reverse;
}
.timeline-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.timeline-content {
  width: calc(50% - 52px);
  padding: 24px;
}
.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  text-align: right;
}
.timeline-item.right .timeline-content {
  margin-left: auto;
  text-align: left;
}
.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(34, 197, 94, 0.15);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.timeline-content p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   SCRAP CATEGORIES
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cat-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 180px;
  cursor: pointer;
}
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover img {
  transform: scale(1.1);
}
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 28, 30, 0.8) 0%,
    rgba(28, 28, 30, 0.1) 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.cat-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ============================================
   WHY CHOOSE US — Image Background Cards
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* Background image layer */
.why-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.why-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.why-card:hover .why-card-bg img {
  transform: scale(1.08);
}

/* Dark gradient overlay */
.why-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.45) 55%,
    rgba(10, 10, 10, 0.15) 100%
  );
  transition: background 0.4s ease;
}

.why-card:hover .why-card-overlay {
  background: linear-gradient(
    to top,
    rgba(22, 163, 74, 0.85) 0%,
    rgba(22, 163, 74, 0.35) 55%,
    rgba(10, 10, 10, 0.10) 100%
  );
}

/* Content layer */
.why-card-content {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
  width: 100%;
}

.why-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.why-card:hover .why-card-content p {
  max-height: 100px;
  opacity: 1;
}

/* Icon floats to top-left on hover */
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  transition: transform 0.4s ease;
}

.why-icon.green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
}

.why-card:hover .why-icon {
  transform: scale(1.1);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: 220px;
  }

  /* On mobile, always show text (no hover needed) */
  .why-card-content p {
    max-height: 100px;
    opacity: 1;
  }
}


/* ============================================
   CORPORATE SECTION
   ============================================ */
.corporate-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.corp-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  margin: 12px 0 20px;
}
.corp-content p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 28px;
}
.corp-list {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.corp-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}
.corp-list li i {
  color: var(--green);
}
.corp-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  min-width: calc(33.333% - 16px);
  padding: 32px;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.t-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.t-header img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.t-header h4 {
  font-weight: 700;
  margin-bottom: 4px;
}
.stars {
  color: #f59e0b;
  font-size: 0.85rem;
}
.testimonial-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
  font-style: italic;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.slider-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: var(--transition);
}
.slider-controls button:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
#slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot-btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-light);
  transition: var(--transition);
  padding: 0;
}
.slider-dot-btn.active {
  background: var(--green);
  width: 28px;
  border-radius: 100px;
}

/* ============================================
   BOOK PICKUP FORM
   ============================================ */
.pickup-form-wrap {
  max-width: 740px;
  margin: 0 auto;
}
.pickup-form {
  padding: 48px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full-width {
  margin-bottom: 24px;
}
.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
}
.form-group input,
.form-group select {
  padding: 14px 18px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}
.full-btn {
  width: 100%;
  justify-content: center;
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.blog-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-img-wrap img {
  transform: scale(1.06);
}
.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}
.blog-content {
  padding: 24px;
}
.blog-meta {
  color: var(--gray);
  font-size: 0.82rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-content h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-content p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ============================================
   CTA SECTION
   ============================================ */
#cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 50%, #166534 100%);
  color: var(--white);
  text-align: center;
}
.cta-bg-anim {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: bgMove 20s linear infinite;
}
@keyframes bgMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 60px;
  }
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 16px;
}
.cta-inner h2 span {
  color: #bbf7d0;
}
.cta-inner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.75);
}
.footer-top {
  padding: 80px 0 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-logo {
  color: var(--white);
  margin-bottom: 16px;
  display: inline-flex;
}
.brand-col p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: var(--green);
}
.contact-list li {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.contact-list li i {
  color: var(--green);
  margin-top: 3px;
  flex-shrink: 0;
}
.contact-list li a:hover {
  color: var(--green);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.85rem;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--green);
}

/* ============================================
   BACK TO TOP
   ============================================ */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
  pointer-events: none;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
  }
  .brand-col {
    grid-column: 1 / -1;
  }
  .corporate-split {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }
  /* .nav-links,
  .nav-cta {
    display: none;
  } */

  .nav-cta {
  display: none;
}

.nav-links{
  display:flex;
}


  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 8px;
    box-shadow: var(--shadow-md);
    align-items: flex-start;
  }
  .nav-links.open + .nav-cta {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  #hero {
    flex-direction: column;
    padding-top: calc(var(--nav-height) + 24px);
    min-height: auto;
  }
  .hero-content {
    padding: 48px 24px 0;
    max-width: 100%;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-features {
    justify-content: center;
  }
  .hero-image-wrapper {
    padding: 32px 24px 48px;
  }
  .hero-img {
    height: 280px;
  }
  .hero-img-badge {
    display: none;
  }
  .services-grid,
  .why-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .corporate-split {
    grid-template-columns: 1fr;
  }
  .corp-image {
    display: none;
  }
  .testimonial-card {
    min-width: 100%;
  }
  .timeline::before {
    left: 28px;
  }
  .timeline-item,
  .timeline-item.right {
    flex-direction: row;
  }
  .timeline-icon {
    left: 28px;
    transform: translateX(-50%);
  }
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: auto !important;
    text-align: left !important;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .pickup-form {
    padding: 32px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section-padding {
    padding: 64px 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile Navbar */
@media (max-width: 992px) {

  .nav-links {
    position: fixed;
    top: 68px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 68px);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 30px;
    gap: 20px;
    transition: 0.4s ease;
    z-index: 9998;
  }

  .nav-links.open {
    left: 0;
  }

  .hamburger {
    display: flex !important;
  }

  .nav-cta {
    display: none;
  }
}


#navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:99999;
  transition:.3s ease;
}

#navbar.scrolled{
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(20px);
  box-shadow:0 4px 20px rgba(0,0,0,.08);
}


#navbar{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 999999 !important;
    transform: none !important;
}

body{
    padding-top: 80px;
}

