/* ==========================================================================
   SRI SAKTHI TRADERS - STYLESHEET
   Brand Colors: Dark Navy Blue, Golden Yellow, Crisp White, Recycling Green
   ========================================================================== */

/* ==========================================================================
   1. CSS VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
  /* Brand Colors */
  --color-primary: #0B1A30;
  /* Dark Navy Blue */
  --color-primary-dark: #06101E;
  /* Deeper Midnight Navy */
  --color-primary-light: #132744;
  /* Elevated Navy */
  --color-secondary: #E5A93B;
  /* Golden Yellow */
  --color-secondary-hover: #D49320;
  /* Deeper Gold */
  --color-secondary-light: #FFF8EB;
  /* Light Gold Tint */
  --color-accent-green: #1B8A5A;
  /* Eco Recycling Green */
  --color-accent-green-light: #E8F5EE;

  /* Neutral Surface & Text */
  --color-bg-body: #F8FAFC;
  /* Clean off-white */
  --color-bg-card: #FFFFFF;
  /* Pure white */
  --color-bg-alt: #EEF2F6;
  /* Subtle gray/blue section bg */
  --color-text-main: #1E293B;
  /* High-contrast body text */
  --color-text-muted: #64748B;
  /* Secondary neutral text */
  --color-text-light: #94A3B8;
  /* Light text on dark bg */
  --color-text-white: #FFFFFF;
  /* Pure white text */
  --color-border: #E2E8F0;
  /* Clean card borders */
  --color-border-dark: #1E293B;

  /* Typography */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --section-padding: 85px 0;
  --section-padding-mobile: 55px 0;
  --container-max-width: 1240px;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(11, 26, 48, 0.05);
  --shadow-md: 0 8px 24px rgba(11, 26, 48, 0.08);
  --shadow-lg: 0 16px 40px rgba(11, 26, 48, 0.12);
  --shadow-gold: 0 8px 25px rgba(229, 169, 59, 0.25);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-bg-body);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: clip;
  max-width: 100vw;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ==========================================================================
   3. REUSABLE UTILITIES & TYPOGRAPHY
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Section Header Component */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-secondary);
  background-color: rgba(229, 169, 59, 0.12);
  padding: 6px 16px;
  border-radius: var(--border-radius-full);
  margin-bottom: 14px;
  border: 1px solid rgba(229, 169, 59, 0.3);
}

.section-badge.badge-green {
  color: var(--color-accent-green);
  background-color: var(--color-accent-green-light);
  border-color: rgba(27, 138, 90, 0.25);
}

.section-badge.badge-dark {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-secondary);
  border-color: rgba(229, 169, 59, 0.4);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-title.title-light {
  color: var(--color-text-white);
}

.section-description {
  font-size: 16.5px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.section-description.desc-light {
  color: var(--color-text-light);
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
  line-height: 1.2;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #F5B73D 100%);
  color: var(--color-primary);
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #F5B73D 0%, var(--color-secondary-hover) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(229, 169, 59, 0.4);
  color: var(--color-primary-dark);
}

.btn-secondary {
  background-color: var(--color-primary);
  color: var(--color-text-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--color-text-white);
}

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

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

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

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

.btn-sm {
  padding: 9px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 16px;
}

/* ==========================================================================
   4. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(11, 26, 48, 0.08);
  border-bottom-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  transition: height var(--transition-normal);
}

.site-header.scrolled .header-inner {
  height: 72px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

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

.site-header.scrolled .header-logo img {
  height: 46px;
}

/* Navigation Links */
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-primary);
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background-color: var(--color-secondary);
  border-radius: 2px;
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-secondary-hover);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14.5px;
  background-color: var(--color-primary);
  color: var(--color-text-white);
  padding: 10px 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(229, 169, 59, 0.4);
  transition: all var(--transition-normal);
}

.call-btn .phone-icon {
  color: var(--color-secondary);
}

.call-btn:hover {
  background-color: var(--color-primary-light);
  border-color: var(--color-secondary);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(11, 26, 48, 0.15);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

/* Mobile Menu Drawer */
.mobile-drawer {
  position: fixed;
  top: 84px;
  left: 0;
  width: 100%;
  height: calc(100vh - 84px);
  background-color: var(--color-bg-card);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-normal), opacity var(--transition-normal), visibility var(--transition-normal);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  z-index: 999;
}

.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer .nav-link {
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  display: block;
}

.mobile-drawer .call-btn {
  margin-top: 10px;
  width: 100%;
  padding: 14px;
  justify-content: center;
  font-size: 16px;
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #071120 0%, #0B1A30 50%, #122744 100%);
  color: var(--color-text-white);
  padding: 90px 0 110px 0;
  overflow: hidden;
}

/* Subtle Golden curves & background glow */
.hero-section::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 169, 59, 0.15) 0%, rgba(229, 169, 59, 0) 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to top, var(--color-bg-body), transparent);
  pointer-events: none;
}

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

.hero-content {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-secondary);
  background-color: rgba(229, 169, 59, 0.12);
  border: 1px solid rgba(229, 169, 59, 0.35);
  padding: 7px 18px;
  border-radius: var(--border-radius-full);
  margin-bottom: 24px;
}

.hero-badge svg {
  color: var(--color-accent-green);
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text-white);
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero-heading .gold-accent {
  color: var(--color-secondary);
  display: inline-block;
  position: relative;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: #CBD5E1;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Trust Features List inside Hero */
.hero-trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 600;
  color: #E2E8F0;
}

.trust-item .check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(229, 169, 59, 0.2);
  color: var(--color-secondary);
  font-size: 12px;
  flex-shrink: 0;
}

/* Hero Image Showcase */
.hero-image-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(229, 169, 59, 0.35);
  background-color: var(--color-primary-dark);
}

.hero-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

/* Floating badge over image */
.hero-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background-color: rgba(11, 26, 48, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(229, 169, 59, 0.5);
  padding: 14px 20px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}

.badge-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  background: linear-gradient(135deg, var(--color-secondary) 0%, #B87818 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  font-size: 20px;
}

.badge-text-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-white);
  line-height: 1.2;
}

.badge-text-sub {
  font-size: 12px;
  color: var(--color-secondary);
  font-weight: 500;
}

/* ==========================================================================
   6. ABOUT SECTION
   ========================================================================== */
.about-section {
  padding: var(--section-padding);
  background-color: var(--color-bg-body);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about-image-frame {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(11, 26, 48, 0.12);
  border: 3px solid rgba(229, 169, 59, 0.45);
}

.about-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.about-image-frame:hover img {
  transform: scale(1.03);
}

.about-accent-frame {
  display: none;
}

.about-content {
  padding-left: 10px;
}

.about-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-body-text {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: rgba(229, 169, 59, 0.15);
  color: var(--color-secondary-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.4;
}

/* ==========================================================================
   7. WHAT WE BUY SECTION (6 CARDS)
   ========================================================================== */
.what-we-buy-section {
  padding: var(--section-padding);
  background-color: var(--color-bg-alt);
  overflow: hidden;
}

.mobile-swipe-hint {
  display: none;
}

.scrap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.scrap-card {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.scrap-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(229, 169, 59, 0.6);
}

.scrap-card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: var(--color-primary);
}

.scrap-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.scrap-card:hover .scrap-card-img-wrapper img {
  transform: scale(1.08);
}

.scrap-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background-color: rgba(11, 26, 48, 0.85);
  backdrop-filter: blur(6px);
  color: var(--color-secondary);
  font-size: 11.5px;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--border-radius-full);
  border: 1px solid rgba(229, 169, 59, 0.4);
}

.scrap-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.scrap-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.scrap-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(229, 169, 59, 0.12);
  color: var(--color-secondary-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

.scrap-card:hover .scrap-icon-circle {
  background-color: var(--color-secondary);
  color: var(--color-primary-dark);
}

.scrap-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
}

.scrap-card-desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.scrap-card-action {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-secondary-hover);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.scrap-card-action svg {
  transition: transform var(--transition-fast);
}

.scrap-card:hover .scrap-card-action {
  color: var(--color-primary);
}

.scrap-card:hover .scrap-card-action svg {
  transform: translateX(4px);
}

/* ==========================================================================
   7b. STATS & ACHIEVEMENTS STRIP
   ========================================================================== */
.stats-section {
  position: relative;
  background: linear-gradient(135deg, #071120 0%, #0B1A30 50%, #122744 100%);
  padding: 24px 0;
  border-top: 1px solid rgba(229, 169, 59, 0.2);
  border-bottom: 1px solid rgba(229, 169, 59, 0.2);
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(229, 169, 59, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(27, 138, 90, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(229, 169, 59, 0.25);
  border-radius: var(--border-radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 22px rgba(229, 169, 59, 0.15);
}

.stat-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(229, 169, 59, 0.18) 0%, rgba(229, 169, 59, 0.05) 100%);
  border: 1.5px solid rgba(229, 169, 59, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.stat-card:hover .stat-icon-box {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  box-shadow: 0 4px 14px rgba(229, 169, 59, 0.3);
  transform: scale(1.05);
}

.stat-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.stat-number-wrap {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-secondary);
  letter-spacing: -0.5px;
  display: flex;
  align-items: baseline;
  margin-bottom: 2px;
}

.stat-plus {
  color: #F5B73D;
  margin-left: 2px;
}

.stat-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: 2px;
  line-height: 1.25;
}

.stat-subtext {
  font-size: 12.5px;
  color: var(--color-text-light);
  line-height: 1.4;
  margin: 0;
}

/* ==========================================================================
   8. SERVICES SECTION (4 CARDS)
   ========================================================================== */
.services-section {
  padding: var(--section-padding);
  background-color: var(--color-bg-body);
}

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

.service-card {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-md);
  padding: 32px 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  border-top: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--color-secondary);
  border-color: rgba(229, 169, 59, 0.3);
  box-shadow: var(--shadow-md);
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--border-radius-md);
  background: linear-gradient(135deg, rgba(11, 26, 48, 0.05) 0%, rgba(229, 169, 59, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 24px;
  margin-bottom: 22px;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon-box {
  background: var(--color-primary);
  color: var(--color-secondary);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.35;
}
                                                         
.service-desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   9. PROCESS SECTION (HOW IT WORKS)
   ========================================================================== */
.process-section {
  padding: var(--section-padding);
  background-color: var(--color-bg-alt);
  position: relative;
}

.process-steps-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Connecting line on desktop */
.process-steps-wrapper::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--color-secondary) 0, var(--color-secondary) 8px, transparent 8px, transparent 16px);
  z-index: 1;
}

.process-step-card {
  position: relative;
  z-index: 2;
  background-color: var(--color-bg-card);
  padding: 32px 22px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-normal);
}

.process-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
}

.step-number-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border: 3px solid var(--color-bg-card);
  box-shadow: 0 0 0 3px rgba(229, 169, 59, 0.4);
  transition: all var(--transition-normal);
}

.process-step-card:hover .step-number-badge {
  background-color: var(--color-secondary);
  color: var(--color-primary-dark);
  box-shadow: 0 0 0 4px rgba(11, 26, 48, 0.15);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   10. WHY CHOOSE US SECTION (DARK NAVY)
   ========================================================================== */
.why-choose-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #071120 0%, #0B1A30 100%);
  color: var(--color-text-white);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(229, 169, 59, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.why-swipe-hint {
  display: none;
}

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

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  padding: 34px 24px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(229, 169, 59, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius-sm);
  background: rgba(229, 169, 59, 0.15);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  border: 1px solid rgba(229, 169, 59, 0.3);
}

.why-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 14.5px;
  color: #CBD5E1;
  line-height: 1.6;
}

/* ==========================================================================
   11. GALLERY SECTION
   ========================================================================== */
.gallery-section {
  padding: var(--section-padding);
  background-color: var(--color-bg-body);
}

.gallery-slider-wrapper {
  width: 100%;
}

.gallery-mobile-dots,
.gallery-swipe-hint {
  display: none;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 270px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 26, 48, 0.9) 0%, rgba(11, 26, 48, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

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

.gallery-caption {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: 4px;
  transform: translateY(10px);
  transition: transform var(--transition-normal);
}

.gallery-category {
  font-size: 13px;
  color: var(--color-secondary);
  font-weight: 600;
  letter-spacing: 0.5px;
  transform: translateY(10px);
  transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-caption,
.gallery-item:hover .gallery-category {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 16, 30, 0.94);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 24px;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  margin: 0 auto;
  border-radius: var(--border-radius-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(229, 169, 59, 0.4);
}

.lightbox-caption {
  color: var(--color-text-white);
  font-family: var(--font-heading);
  font-size: 18px;
  margin-top: 14px;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  font-size: 32px;
  color: var(--color-text-white);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--color-secondary);
}

/* ==========================================================================
   12. CALL TO ACTION (CTA) SECTION
   ========================================================================== */
.cta-section {
  padding: 70px 0;
  background-color: var(--color-bg-alt);
}

.cta-box {
  background: linear-gradient(135deg, #071120 0%, #0B1A30 100%);
  border-radius: var(--border-radius-lg);
  padding: 60px 48px;
  border: 2px solid rgba(229, 169, 59, 0.35);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: radial-gradient(circle, rgba(229, 169, 59, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-text {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: var(--color-text-white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.cta-subtitle {
  font-size: 17px;
  color: #CBD5E1;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   13. CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: var(--section-padding);
  background-color: var(--color-bg-body);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: flex-start;
}

/* Contact Info Card */
.contact-info-card {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.contact-brand-header {
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.contact-company-name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.contact-tagline {
  font-size: 14.5px;
  color: var(--color-secondary-hover);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(229, 169, 59, 0.12);
  color: var(--color-secondary-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.detail-label {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 3px;
}

.detail-value {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.5;
}

.detail-value a {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.detail-value a:hover {
  color: var(--color-secondary-hover);
}

/* Contact Enquiry Form */
.contact-form-card {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.form-label {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-primary);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background-color: #FAFAFA;
  font-size: 15px;
  color: var(--color-text-main);
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-secondary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(229, 169, 59, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.form-status {
  padding: 14px 18px;
  border-radius: var(--border-radius-sm);
  font-size: 14.5px;
  font-weight: 500;
  display: none;
}

.form-status.success {
  display: block;
  background-color: var(--color-accent-green-light);
  color: var(--color-accent-green);
  border: 1px solid rgba(27, 138, 90, 0.3);
}

.form-status.error {
  display: block;
  background-color: #FEE2E2;
  color: #DC2626;
  border: 1px solid rgba(220, 38, 38, 0.3); 
}

/* ==========================================================================
   14. WHATSAPP & BACK-TO-TOP FLOATING BUTTONS
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.whatsapp-float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFFFFF;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-normal);
  position: relative;
}

.whatsapp-float:hover {
  background-color: #20BA5A;
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

/* Pulse animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: whatsappPulse 2s infinite ease-out;
  pointer-events: none;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-secondary);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(229, 169, 59, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary-dark);
}

/* ==========================================================================
   15. FOOTER
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, #071120 0%, #040A14 100%);
  color: #94A3B8;
  padding: 70px 0 30px 0;
  border-top: 2px solid rgba(229, 169, 59, 0.3);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  padding: 8px 18px;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  border: 1.5px solid rgba(229, 169, 59, 0.45);
  margin-bottom: 20px;
}

.footer-logo-card img,
.footer-brand-col img {
  height: 54px;
  width: auto;
  margin-bottom: 0;
  display: block;
}

.footer-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: #94A3B8;
  max-width: 380px;
  margin-bottom: 18px;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-tag {
  font-size: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-secondary);
  padding: 4px 10px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(229, 169, 59, 0.2);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-secondary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14.5px;
  color: #94A3B8;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover {
  color: var(--color-secondary);
  transform: translateX(3px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
}

.footer-contact-item svg {
  color: var(--color-secondary);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: #CBD5E1;
}

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  color: #64748B;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   16. SCROLL REVEAL ANIMATION CLASSES
   ========================================================================== */
.reveal-init {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Delay helpers */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* ==========================================================================
   17. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet & Smaller Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-heading {
    font-size: 38px;
  }

  .scrap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .process-steps-wrapper::before {
    display: none;
    /* Hide linear connecting line when wrapped */
  }

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

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-contact-col {
    grid-column: span 2;
  }
}

/* Tablets (max-width: 991px) */
@media (max-width: 991px) {

  .header-nav,
  .header-actions .call-btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-inner,
  .site-header.scrolled .header-inner {
    height: 68px;
  }

  .header-logo img,
  .site-header.scrolled .header-logo img {
    height: 44px;
  }

  .mobile-drawer {
    top: 68px;
    height: calc(100vh - 68px);
  }

  .stat-card {
    padding: 14px 18px;
    gap: 14px;
  }

  .stat-number-wrap {
    font-size: 26px;
  }

  .stat-title {
    font-size: 15px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image-card img {
    height: 380px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-content {
    padding-left: 0;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 45px 30px;
  }

  .cta-buttons {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  :root {
    --section-padding: var(--section-padding-mobile);
  }

  html {
    scroll-padding-top: 65px;
  }

  /* Do not stick header on mobile view while scrolling */
  .site-header {
    position: relative;
    z-index: 1000;
    box-shadow: none;
  }

  /* Compact header on mobile */
  .header-inner,
  .site-header.scrolled .header-inner {
    height: 60px;
  }

  .header-logo img,
  .site-header.scrolled .header-logo img {
    height: 38px;
  }

  .mobile-toggle {
    width: 26px;
    height: 18px;
  }

  .mobile-toggle span {
    height: 2px;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-drawer {
    top: 60px;
    height: calc(100vh - 60px);
    z-index: 9999;
  }

  /* Stats Strip Mobile */
  .stats-section {
    padding: 18px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100%;
  }

  .stat-card {
    padding: 14px 16px;
    gap: 14px;
  }

  .stat-icon-box {
    width: 44px;
    height: 44px;
  }

  .stat-icon-box svg {
    width: 22px;
    height: 22px;
  }

  .stat-number-wrap {
    font-size: 24px;
  }

  .stat-title {
    font-size: 15px;
  }

  .stat-subtext {
    font-size: 12px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .scrap-categories-section {
    overflow: hidden;
  }

  .section-title {
    font-size: 28px;
  }

  .hero-section {
    padding: 60px 0 80px 0;
  }

  .hero-heading {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-trust-list {
    grid-template-columns: 1fr;
  }

  .mobile-swipe-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-secondary-hover);
    background: rgba(229, 169, 59, 0.12);
    padding: 6px 14px;
    border-radius: var(--border-radius-full);
    margin-top: 14px;
    border: 1px solid rgba(229, 169, 59, 0.35);
  }

  .mobile-swipe-hint svg {
    animation: swipeArrowNudge 1.5s infinite ease-in-out;
  }

  @keyframes swipeArrowNudge {

    0%,
    100% {
      transform: translateX(0);
    }

    50% {
      transform: translateX(4px);
    }
  }

  /* Swipable Carousel for Scrap Cards on Mobile ONLY */
  .scrap-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 10px 4px 22px 4px;
    width: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--color-secondary) rgba(11, 26, 48, 0.08);
  }

  .scrap-grid::-webkit-scrollbar {
    height: 5px;
  }

  .scrap-grid::-webkit-scrollbar-track {
    background: rgba(11, 26, 48, 0.06);
    border-radius: 4px;
  }

  .scrap-grid::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 4px;
  }

  .scrap-grid .scrap-card {
    flex: 0 0 85%;
    max-width: 320px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps-wrapper {
    grid-template-columns: 1fr;
  }

  /* Swipable Carousel for Why Choose Us on Mobile ONLY */
  .why-choose-section {
    overflow: hidden;
  }

  .why-swipe-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-secondary);
    background: rgba(229, 169, 59, 0.15);
    padding: 6px 14px;
    border-radius: var(--border-radius-full);
    margin-top: 14px;
    border: 1px solid rgba(229, 169, 59, 0.4);
  }

  .why-swipe-hint svg {
    animation: swipeArrowNudge 1.5s infinite ease-in-out;
  }

  .why-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 10px 4px 22px 4px;
    width: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--color-secondary) rgba(255, 255, 255, 0.1);
  }

  .why-grid::-webkit-scrollbar {
    height: 5px;
  }

  .why-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
  }

  .why-grid::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 4px;
  }

  .why-grid .why-card {
    flex: 0 0 85%;
    max-width: 320px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  /* Mobile Swipable Infinite Gallery */
  .gallery-section {
    overflow: hidden;
  }

  .gallery-swipe-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-secondary-hover);
    background: rgba(229, 169, 59, 0.12);
    padding: 6px 14px;
    border-radius: var(--border-radius-full);
    margin-top: 14px;
    border: 1px solid rgba(229, 169, 59, 0.35);
  }

  .gallery-swipe-hint svg {
    animation: swipeArrowNudge 1.5s infinite ease-in-out;
  }

  .gallery-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
  }

  .gallery-grid {
    display: flex;
    width: 100%;
    gap: 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    touch-action: pan-y;
  }

  .gallery-item {
    flex: 0 0 100%;
    width: 100%;
    height: 290px;
    border-radius: 0;
    border: none;
  }

  .gallery-mobile-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(11, 26, 48, 0.2);
    border: none;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .gallery-dot.active {
    width: 24px;
    border-radius: 12px;
    background: var(--color-secondary);
  }

  .about-features-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 28px 20px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .contact-company-name {
    font-size: 23px;
  }

  .contact-detail-item {
    gap: 14px;
    min-width: 0;
  }

  .contact-icon-box {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }

  .detail-value {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo-card {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-tags {
    justify-content: center;
  }

  .footer-col-title {
    text-align: center;
  }

  .footer-col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links {
    align-items: center;
  }

  .footer-link {
    justify-content: center;
  }

  .footer-contact-col {
    grid-column: auto;
  }

  .footer-contact-info {
    align-items: center;
  }

  .footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    max-width: 330px;
    margin: 0 auto;
  }

  .footer-contact-item svg {
    margin-top: 0;
    flex-shrink: 0;
  }

  .footer-contact-item span {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  html {
    scroll-padding-top: 60px;
  }

  .header-inner,
  .site-header.scrolled .header-inner {
    height: 54px;
  }

  .header-logo img,
  .site-header.scrolled .header-logo img {
    height: 34px;
  }

  .mobile-toggle {
    width: 24px;
    height: 16px;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-drawer {
    top: 54px;
    height: calc(100vh - 54px);
  }

  .stats-section {
    padding: 14px 0;
  }

  .stat-card {
    padding: 12px 14px;
    gap: 12px;
  }

  .stat-icon-box {
    width: 40px;
    height: 40px;
  }

  .stat-icon-box svg {
    width: 20px;
    height: 20px;
  }

  .stat-number-wrap {
    font-size: 22px;
  }

  .stat-title {
    font-size: 14px;
  }

  .stat-subtext {
    font-size: 11.5px;
  }

  .hero-heading {
    font-size: 27px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-image-card img {
    height: 280px;
  }

  .hero-floating-badge {
    left: 12px;
    bottom: 12px;
    right: 12px;
    padding: 10px 14px;
  }

  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 22px 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-company-name {
    font-size: 21px;
  }

  .contact-tagline {
    font-size: 13.5px;
  }

  .contact-detail-item {
    gap: 12px;
  }

  .contact-icon-box {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .cta-box {
    padding: 35px 20px;
  }

  .cta-title {
    font-size: 26px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* Ultra Small (320px - 360px) */
@media (max-width: 360px) {
  html {
    scroll-padding-top: 54px;
  }

  .header-inner,
  .site-header.scrolled .header-inner {
    height: 50px;
  }

  .header-logo img,
  .site-header.scrolled .header-logo img {
    height: 30px;
  }

  .mobile-drawer {
    top: 50px;
    height: calc(100vh - 50px);
  }

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-heading {
    font-size: 24px;
  }

  .section-title {
    font-size: 24px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 18px 12px;
  }

  .contact-company-name {
    font-size: 19px;
  }

  .contact-tagline {
    font-size: 12.5px;
  }

  .contact-icon-box {
    width: 34px;
    height: 34px;
  }

  .contact-icon-box svg {
    width: 17px;
    height: 17px;
  }

  .detail-value {
    font-size: 14px;
  }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}