/* ============================================
   DEE KAY TRADERS — MAIN STYLESHEET v2
   Premium Warm-Light Industrial Aesthetic
   ============================================ */

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

/* ── CSS CUSTOM PROPERTIES ─────────────────── */
:root {
  /* ── Color Palette ── */
  --color-dark:         #0c1220;        /* Hero / header */
  --color-dark-2:       #111827;        /* Dark sections */
  --color-dark-3:       #1e2b3a;        /* Dark surface */

  --color-bg:           #f7f5f0;        /* Warm white — main bg */
  --color-bg-alt:       #efecea;        /* Warm grey — alternating sections */
  --color-surface:      #ffffff;        /* Card white */
  --color-surface-2:    #f0ede8;        /* Slightly warm off-white */

  --color-accent:       #f5a623;        /* Safety amber */
  --color-accent-dark:  #d4891a;
  --color-accent-light: #fbbf24;
  --color-accent-pale:  rgba(245,166,35,0.10);

  --color-text:         #1a1f2e;        /* Main dark text on light */
  --color-text-2:       #374151;        /* Secondary text */
  --color-text-muted:   #6b7280;        /* Muted text */
  --color-text-light:   #f1f5f9;        /* Text on dark backgrounds */
  --color-text-muted-light: #94a3b8;    /* Muted on dark */

  --color-border:       rgba(0,0,0,0.08);
  --color-border-dark:  rgba(255,255,255,0.10);
  --color-steel:        #64748b;

  --color-white: #ffffff;

  /* ── Typography ── */
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* ── Layout ── */
  --section-pad: clamp(4.5rem, 9vw, 7.5rem);
  --container:   1200px;
  --gutter:      clamp(1.25rem, 4vw, 2rem);

  /* ── Shadows ── */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.10), 0 8px 32px rgba(0,0,0,0.07);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.13), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl:   0 24px 64px rgba(0,0,0,0.18);
  --shadow-glow: 0 0 40px rgba(245,166,35,0.2);

  /* ── Transitions ── */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:  0.28s;
}

/* ── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── TYPOGRAPHY ───────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-text);
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.05rem, 2vw, 1.4rem); }
p  { font-size: 1rem; color: var(--color-text-muted); line-height: 1.75; }
strong { color: var(--color-text-2); font-weight: 600; }

/* On dark sections, headings and p are light */
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4,
.page-hero h1, .page-hero h2, .page-hero h3 {
  color: var(--color-text-light);
}
.section--dark p, .page-hero p { color: var(--color-text-muted-light); }
.section--dark strong { color: var(--color-text-light); }
.hero h1 { color: var(--color-text-light); }
.hero p   { color: rgba(241,245,249,0.85); }
.cta-banner h2 { color: var(--color-text-light); }
.cta-banner p  { color: var(--color-text-muted-light); }

/* ── LAYOUT ───────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--section-pad) 0; background: var(--color-bg); }
.section--alt  { background: var(--color-bg-alt); }
.section--dark {
  background: linear-gradient(160deg, var(--color-dark-2) 0%, var(--color-dark-3) 100%);
}
.section--surface { background: var(--color-surface); }
.section--accent  { background: var(--color-accent); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 1.5rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; } .gap-4 { gap: 2rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }

/* ── SECTION HEADER ───────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.85rem;
  padding: 0.3rem 1.1rem;
  border: 1.5px solid rgba(245,166,35,0.4);
  border-radius: 2px;
  background: rgba(245,166,35,0.07);
}
.section--dark .section-header .eyebrow {
  background: rgba(245,166,35,0.12);
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ── EYEBROW (inline) ─────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.85rem;
  padding: 0.3rem 1.1rem;
  border: 1.5px solid rgba(245,166,35,0.4);
  border-radius: 2px;
  background: rgba(245,166,35,0.07);
}
.section--dark .eyebrow, .page-hero .eyebrow, .hero .eyebrow {
  background: rgba(245,166,35,0.12);
}

/* ── ACCENT ───────────────────────────────── */
.accent { color: var(--color-accent); }

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent);
  color: #0c1220;
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--color-text-light);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--color-text);
  border: 2px solid rgba(0,0,0,0.2);
}
.btn-outline-dark:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--color-dark);
  color: var(--color-text-light);
  border: 2px solid rgba(255,255,255,0.12);
}
.btn-dark:hover {
  background: var(--color-dark-3);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}
.btn-sm  { padding: 0.6rem 1.4rem; font-size: 0.875rem; }
.btn-lg  { padding: 1.1rem 2.6rem; font-size: 1.1rem; }

/* ── NAVIGATION ───────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.scrolled {
  background: rgba(12,18,32,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.35);
}
.site-header:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(12,18,32,0.88), transparent);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}
/* Logo styling — pristine white DK geometric vector logo on dark header */
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform var(--dur) var(--ease);
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.06);
}
.footer-brand-img {
  height: 44px;
  width: auto;
  margin-bottom: 1.25rem;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
}
.nav-logo-text span {
  color: var(--color-accent);
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 0.15rem; }
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(241,245,249,0.75);
  padding: 0.5rem 0.8rem;
  border-radius: 3px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--color-accent);
  background: rgba(245,166,35,0.1);
}
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  min-width: 220px;
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--dur) var(--ease);
  box-shadow: var(--shadow-xl);
}
.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.nav-links .dropdown-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.82rem;
  border-radius: 3px;
  color: var(--color-text-muted) !important;
  background: transparent !important;
}
.nav-links .dropdown-menu a:hover {
  color: var(--color-accent) !important;
  background: rgba(245,166,35,0.07) !important;
}
.nav-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-phone:hover { color: var(--color-accent-light); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 0.5rem; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--color-text-light);
  transition: all var(--dur) var(--ease); border-radius: 2px;
}
.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); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(12,18,32,0.98);
  backdrop-filter: blur(20px);
  padding: 1.5rem var(--gutter) 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(241,245,249,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--dur) var(--ease);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--color-accent); }
.mobile-menu .mobile-cta { margin-top: 1.5rem; }

/* ── HERO SLIDER ────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-slider {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease-in-out, transform 8s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slider-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(8,12,24,0.78) 0%,
    rgba(8,12,24,0.52) 50%,
    rgba(20,10,0,0.38) 100%
  );
}
.hero-slider-controls {
  position: absolute; bottom: 2rem; right: var(--gutter);
  z-index: 2; display: flex; align-items: center; gap: 0.75rem;
}
.hero-slider-dots { display: flex; gap: 0.5rem; }
.hero-dot {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent; cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.hero-dot.active, .hero-dot:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.2);
}
.hero-slider-arrow {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--dur) var(--ease);
}
.hero-slider-arrow:hover {
  background: var(--color-accent); border-color: var(--color-accent); color: #0c1220;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 6rem var(--gutter) 4rem;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
}
.hero-eyebrow-line { width: 40px; height: 2px; background: var(--color-accent); }
.hero-eyebrow-text {
  font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-accent);
}
.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  line-height: 1.1;
  max-width: 820px;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero h1 .accent-line { display: block; color: var(--color-accent); }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(241,245,249,0.82);
  max-width: 580px; margin-bottom: 2.5rem; line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(148,163,184,0.7);
  font-family: var(--font-heading); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  animation: bounce 2.2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── TRUST BAR ────────────────────────────── */
.trust-bar {
  background: var(--color-accent);
  padding: 1rem 0; overflow: hidden;
}
.trust-bar-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: #0c1220;
}
.trust-divider { width: 1px; height: 18px; background: rgba(0,0,0,0.2); }

/* ── CARDS ────────────────────────────────── */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-img { overflow: hidden; aspect-ratio: 16/9; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 1.75rem; }
.card-icon {
  width: 52px; height: 52px;
  background: rgba(245,166,35,0.10);
  border: 1.5px solid rgba(245,166,35,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; color: var(--color-accent); font-size: 1.5rem;
}
.card h3, .card h4 { color: var(--color-text); }
.card h3 { margin-bottom: 0.75rem; font-size: 1.4rem; }
.card h4 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.card p   { font-size: 0.93rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.25rem;
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-accent);
  transition: gap var(--dur) var(--ease);
}
.card-link:hover { gap: 0.75rem; }

/* ── SERVICE CARD ─────────────────────────── */
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card h3, .service-card h4 { color: var(--color-text); }

/* Dark section service cards */
.section--dark .service-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
}
.section--dark .service-card:hover {
  background: rgba(255,255,255,0.09);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.section--dark .service-card h3,
.section--dark .service-card h4 { color: var(--color-text-light); }
.section--dark .service-card p   { color: var(--color-text-muted-light); }

/* ── GRADE CHIPS ──────────────────────────── */
.grade-strip { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.grade-chip {
  background: var(--color-bg-alt);
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-muted);
  transition: all var(--dur) var(--ease); cursor: pointer;
}
.grade-chip:hover, .grade-chip.active {
  background: rgba(245,166,35,0.1);
  border-color: var(--color-accent);
  color: var(--color-accent);
}
/* On dark sections */
.section--dark .grade-chip {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  color: rgba(148,163,184,0.8);
}
.section--dark .grade-chip:hover,
.section--dark .grade-chip.active {
  background: rgba(245,166,35,0.15);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ── STATS ────────────────────────────────── */
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; color: var(--color-accent); line-height: 1; margin-bottom: 0.4rem;
}
.stat-label {
  font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted);
}
.section--dark .stat-label { color: var(--color-text-muted-light); }

/* ── FEATURE LIST ─────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-item  { display: flex; align-items: flex-start; gap: 1rem; }
.feature-icon {
  flex-shrink: 0; width: 36px; height: 36px;
  background: rgba(245,166,35,0.1); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent); margin-top: 2px;
}
.feature-text h4 { font-size: 1rem; margin-bottom: 0.25rem; color: var(--color-text); }
.feature-text p  { font-size: 0.88rem; }
.section--dark .feature-text h4 { color: var(--color-text-light); }

/* ── TABLE ────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.data-table th, .data-table td {
  padding: 0.8rem 1rem; text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.data-table th {
  font-family: var(--font-heading); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent);
  background: rgba(245,166,35,0.06);
}
.data-table td { color: var(--color-text-muted); }
.data-table tr:hover td { background: rgba(245,166,35,0.04); color: var(--color-text); }

/* ── FORM ─────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,280px),1fr)); gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted);
}
.form-control {
  background: var(--color-bg);
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 5px;
  padding: 0.85rem 1rem;
  color: var(--color-text);
  font-size: 0.95rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}
.form-control::placeholder { color: rgba(107,114,128,0.5); }
select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236b7280' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 1.25rem;
  padding-right: 2.5rem;
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* ── GALLERY ──────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 1.25rem;
}
.gallery-item {
  position: relative; aspect-ratio: 4/3;
  overflow: hidden; border-radius: 8px;
  cursor: pointer; box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,14,28,0.8), transparent);
  opacity: 0; transition: opacity var(--dur) var(--ease);
  display: flex; align-items: flex-end; padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: #ffffff;
}

/* ── LIGHTBOX ─────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.96);
  z-index: 9999; display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 6px; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: white; width: 42px; height: 42px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; transition: background var(--dur) var(--ease);
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* ── BREADCRUMB ───────────────────────────── */
.breadcrumb {
  padding: 5.5rem 0 1.25rem;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}
.breadcrumb-list {
  display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center;
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--color-text-muted);
}
.breadcrumb-list a:hover { color: var(--color-accent); }
.breadcrumb-sep { color: rgba(0,0,0,0.2); }
.breadcrumb-current { color: var(--color-accent); }

/* ── PAGE HERO ────────────────────────────── */
.page-hero {
  padding: 5.5rem 0 4rem;
  background: linear-gradient(155deg, var(--color-dark) 0%, var(--color-dark-3) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -40%; right: -8%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.3), transparent);
}
.page-hero-inner { position: relative; z-index: 1; }

/* ── BADGE ────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.32rem 0.85rem; border-radius: 2px;
  font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
}
.badge-accent { background: rgba(245,166,35,0.12); color: var(--color-accent); border: 1px solid rgba(245,166,35,0.3); }
.badge-green  { background: rgba(34,197,94,0.1); color: #16a34a; border: 1px solid rgba(34,197,94,0.25); }
.badge-steel  { background: rgba(100,116,139,0.1); color: var(--color-steel); border: 1px solid rgba(100,116,139,0.2); }

/* ── DIVIDER ──────────────────────────────── */
.divider { width: 52px; height: 3px; background: var(--color-accent); margin: 1rem 0 1.5rem; border-radius: 2px; }
.divider.center { margin-left: auto; margin-right: auto; }

/* ── CTA BANNER ───────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--color-dark-2) 0%, var(--color-dark) 100%);
  padding: 5rem 0; position: relative; overflow: hidden;
  border-top: 1px solid rgba(245,166,35,0.15);
}
.cta-banner::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; text-align: center; }
.cta-banner-inner h2 { margin-bottom: 1rem; }
.cta-banner-inner p  { margin-bottom: 2rem; font-size: 1.05rem; }
.cta-banner-actions  { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── HOURS TABLE ──────────────────────────── */
.hours-table { width: 100%; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 0.65rem 0; border-bottom: 1px solid var(--color-border); font-size: 0.92rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day  { color: var(--color-text-muted); font-weight: 500; }
.hours-time { color: var(--color-text); font-weight: 600; }
.hours-closed { color: #dc2626; }
.hours-open   { color: #16a34a; }

/* ── MAP ──────────────────────────────────── */
.map-container {
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--color-border); height: 400px;
  box-shadow: var(--shadow-md);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ── INFO BOX ─────────────────────────────── */
.info-box {
  background: rgba(245,166,35,0.07);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 5px 5px 0;
  padding: 1rem 1.25rem; font-size: 0.9rem;
  color: var(--color-text-muted);
}
.info-box strong { color: var(--color-accent-dark); }

/* ── TWO TRACK ────────────────────────────── */
.two-track {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--color-border);
  border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--color-surface);
}
.track {
  padding: 3rem;
  transition: background var(--dur) var(--ease);
  border-right: 1px solid var(--color-border);
}
.track:last-child { border-right: none; }
.track:hover { background: rgba(245,166,35,0.03); }
.track-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.track h3   { margin-bottom: 1rem; color: var(--color-text); }
.track p    { font-size: 0.92rem; margin-bottom: 1.5rem; }

/* ── GSTIN BADGE ──────────────────────────── */
.gstin-badge {
  display: inline-block;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 3px; padding: 0.32rem 0.85rem;
  font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; color: var(--color-accent); margin-top: 0.75rem;
}

/* ── PROCESS STEPS ────────────────────────── */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step  { display: flex; gap: 1.5rem; position: relative; padding-bottom: 2rem; }
.process-step:last-child { padding-bottom: 0; }
.process-step-num {
  flex-shrink: 0; width: 44px; height: 44px;
  background: rgba(245,166,35,0.1); border: 2px solid var(--color-accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 900; color: var(--color-accent);
  position: relative; z-index: 1;
}
.process-step-content h4 { margin-bottom: 0.4rem; color: var(--color-text); }
.process-step-content p  { font-size: 0.88rem; }

/* ── FOOTER ───────────────────────────────── */
.site-footer {
  background: var(--color-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 4.5rem 0 2.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr repeat(3,1fr); gap: 3rem; margin-bottom: 3.5rem;
}
.footer-brand-img {
  height: 44px; width: auto;
  margin-bottom: 1.25rem; display: block; object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.footer-brand p { font-size: 0.87rem; max-width: 280px; color: var(--color-text-muted-light); }
.footer-heading {
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.87rem; color: var(--color-text-muted-light); transition: color var(--dur) var(--ease); }
.footer-links a:hover { color: var(--color-accent); }
.footer-contact { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-contact-item { display: flex; gap: 0.75rem; font-size: 0.87rem; color: var(--color-text-muted-light); line-height: 1.5; }
.footer-contact-item svg { flex-shrink: 0; color: var(--color-accent); margin-top: 2px; }
.footer-contact-item a { color: var(--color-text-muted-light); }
.footer-contact-item a:hover { color: var(--color-accent); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: rgba(148,163,184,0.5);
}
.footer-bottom a { color: var(--color-accent); }
.footer-socials { display: flex; gap: 0.6rem; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 5px;
  display: flex; align-items: center; justify-content: center; color: rgba(148,163,184,0.7);
  transition: all var(--dur) var(--ease); font-size: 1rem;
}
.footer-socials a:hover { border-color: var(--color-accent); color: var(--color-accent); }

/* ── FLOATING ACTIONS ─────────────────────── */
.fab-container {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  display: flex; flex-direction: column-reverse; gap: 0.75rem; align-items: flex-end;
}
.fab-whatsapp {
  width: 58px; height: 58px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  animation: fab-pulse 2.5s infinite; cursor: pointer; text-decoration: none;
}
.fab-whatsapp:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(37,211,102,0.55); animation: none; }
.fab-whatsapp svg  { width: 28px; height: 28px; fill: white; }
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 6px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}
.fab-rfq {
  background: var(--color-accent); color: #0c1220;
  padding: 0.65rem 1.3rem; border-radius: 30px;
  font-family: var(--font-heading); font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(245,166,35,0.45);
  transition: all var(--dur) var(--ease); white-space: nowrap;
}
.fab-rfq:hover { background: var(--color-accent-dark); transform: translateY(-2px); }

/* ── BLOG CARD ────────────────────────────── */
.blog-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.6rem; }
.blog-meta {
  display: flex; gap: 1rem; margin-bottom: 0.75rem;
  font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted);
}
.blog-meta .tag { color: var(--color-accent); }
.blog-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; color: var(--color-text); }
.blog-card p  { font-size: 0.88rem; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem;
  font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-accent);
  transition: gap var(--dur) var(--ease);
}
.blog-read-more:hover { gap: 0.75rem; }

/* ── SCROLL ANIMATIONS ────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right {
  opacity: 0; transform: translateX(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* ── UTILITY ──────────────────────────────── */
.text-accent  { color: var(--color-accent); }
.text-muted   { color: var(--color-text-muted); }
.font-heading { font-family: var(--font-heading); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-track { grid-template-columns: 1fr; }
  .track { border-right: none; border-bottom: 1px solid var(--color-border); }
  .track:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  :root { --section-pad: clamp(3rem, 6vw, 5rem); }
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .trust-divider { display: none; }
  .trust-bar-inner { gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
  .fab-rfq { display: none; }
}
