/* ============================================
   BULKHEAD LIQUIDATION — Design System
   Industrial · Rigid · Premium
   ============================================ */

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

/* ---------- CSS Variables ---------- */
:root {
  /* Primary palette */
  --navy: #0a1628;
  --navy-light: #111d33;
  --navy-mid: #162540;
  --steel: #1e3050;
  --steel-light: #2a4060;
  --slate: #8a9bae;
  --silver: #c4d0dc;
  --white: #f0f4f8;
  --pure-white: #ffffff;

  /* Accent */
  --amber: #e8912d;
  --amber-light: #f0a54a;
  --amber-dark: #c87a20;
  --amber-glow: rgba(232, 145, 45, 0.25);

  /* Functional */
  --success: #2ecc71;
  --danger: #e74c3c;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-pad: 100px 0;
  --container-width: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: all 0.35s var(--ease);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.2);
  --shadow-lg: 0 15px 50px rgba(0,0,0,0.3);
  --shadow-amber: 0 8px 30px rgba(232, 145, 45, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--silver);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ---------- Container ---------- */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--pure-white);
  line-height: 1.2;
  font-weight: 800;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 15px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--amber);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 650px;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--amber);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-amber);
}

.btn-outline {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid rgba(255,255,255,0.3);
}

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

.btn-dark {
  background: var(--navy);
  color: var(--pure-white);
}

.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(232, 145, 45, 0.1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--navy);
  clip-path: polygon(0 0, 100% 0, 100% 75%, 75% 100%, 0 100%);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--pure-white);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
}

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--amber);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pure-white);
}

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

.nav-cta {
  padding: 12px 28px !important;
  background: var(--amber) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--amber-light) !important;
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--pure-white);
  transition: var(--transition);
}

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

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

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

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.7) 50%, rgba(10,22,40,0.9) 100%);
  z-index: 1;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(232,145,45,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,145,45,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(232, 145, 45, 0.1);
  border: 1px solid rgba(232, 145, 45, 0.3);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 30px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--amber);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 25px;
}

.hero h1 .highlight {
  color: var(--amber);
  position: relative;
}

.hero p {
  font-size: 1.15rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat h3 {
  font-size: 2.5rem;
  color: var(--amber);
  font-weight: 900;
}

.hero-stat p {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Decorative corner bracket */
.corner-bracket {
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 3;
}

.corner-bracket::before,
.corner-bracket::after {
  content: '';
  position: absolute;
  background: var(--amber);
}

.corner-bracket.top-right {
  top: 100px;
  right: 5%;
}

.corner-bracket.top-right::before {
  top: 0; right: 0;
  width: 30px; height: 2px;
}

.corner-bracket.top-right::after {
  top: 0; right: 0;
  width: 2px; height: 30px;
}

.corner-bracket.bottom-left {
  bottom: 40px;
  left: 5%;
}

.corner-bracket.bottom-left::before {
  bottom: 0; left: 0;
  width: 30px; height: 2px;
}

.corner-bracket.bottom-left::after {
  bottom: 0; left: 0;
  width: 2px; height: 30px;
}

/* ---------- Section Styling ---------- */
.section {
  padding: var(--section-pad);
  position: relative;
}

.section-alt {
  background: var(--navy-light);
}

.section-dark {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

/* ---------- Feature Cards ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 40px 35px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 145, 45, 0.2);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 145, 45, 0.1);
  border: 1px solid rgba(232, 145, 45, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 75% 100%, 0 100%);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-card p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- About / Split Layout ---------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-image {
  position: relative;
}

.split-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.split-image::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--amber);
  z-index: -1;
}

.split-image .image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  padding: 20px 30px;
  text-align: center;
  line-height: 1.2;
}

.split-image .image-badge span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 5px;
}

.split-content .section-subtitle {
  margin-bottom: 30px;
}

.check-list {
  margin-top: 25px;
  margin-bottom: 35px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  font-size: 1rem;
  color: var(--silver);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.check-list li:last-child { border-bottom: none; }

.check-list li .check-icon {
  width: 24px;
  height: 24px;
  background: rgba(232, 145, 45, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--amber);
  font-weight: 700;
}

/* ---------- Stats Strip ---------- */
.stats-strip {
  background: var(--amber);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.stat-item p {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(10, 22, 40, 0.7);
  margin-top: 8px;
}

/* ---------- Process / Steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  text-align: center;
  padding: 40px 25px;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(232, 145, 45, 0.1);
  line-height: 1;
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--slate);
}

.process-step::after {
  content: '→';
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--amber);
  font-weight: 700;
}

.process-step:last-child::after { display: none; }

/* ---------- Inventory Categories ---------- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.category-card {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--steel) 100%);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 35px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-card:hover::after {
  transform: scaleX(1);
}

.category-card .cat-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.category-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--steel) 50%, var(--navy-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(232,145,45,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,145,45,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  position: relative;
}

.cta-section p {
  color: var(--slate);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 35px;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 35px 30px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(232, 145, 45, 0.2);
  transform: translateY(-3px);
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--amber);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 25px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--amber);
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pure-white);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--slate);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pure-white);
  transition: var(--transition);
}

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

.faq-toggle {
  font-size: 1.5rem;
  color: var(--amber);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 20px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer p {
  padding-bottom: 25px;
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.8;
}

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

/* ---------- Image Banner ---------- */
.image-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-banner .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--navy) 0%, rgba(10,22,40,0.5) 50%, var(--navy) 100%);
}

.image-banner .banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.image-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

/* ---------- Page Header ---------- */
.page-header {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(232,145,45,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,145,45,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--slate);
  position: relative;
}

.breadcrumb a {
  color: var(--amber);
}

.breadcrumb a:hover {
  color: var(--amber-light);
}

/* ---------- Info Cards Grid ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.info-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 40px 35px;
  transition: var(--transition);
}

.info-card:hover {
  border-color: rgba(232, 145, 45, 0.2);
  transform: translateY(-3px);
}

.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.info-card p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 50px auto 0;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(232, 145, 45, 0.2);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -48px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: var(--amber);
  border: 3px solid var(--navy);
}

.timeline-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.timeline-item .timeline-date {
  font-size: 0.8rem;
  color: var(--amber);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.timeline-item p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--pure-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232, 145, 45, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-info-list {
  margin-top: 15px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(232, 145, 45, 0.1);
  border: 1px solid rgba(232, 145, 45, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-info-item h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--pure-white);
}

.contact-info-item p,
.contact-info-item a {
  color: var(--slate);
  font-size: 0.95rem;
}

.contact-info-item a:hover {
  color: var(--amber);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-light);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer h4 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pure-white);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--slate);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '→';
  color: var(--amber);
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--pure-white);
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  font-size: 0.85rem;
  color: var(--slate);
}

/* ---------- Services Page — Service Detail ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.service-detail:last-child { margin-bottom: 0; }

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-img {
  height: 350px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-detail-img:hover img {
  transform: scale(1.05);
}

.service-detail-content h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.service-detail-content p {
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ---------- Values Grid ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 145, 45, 0.2);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---------- Inventory Table ---------- */
.inventory-table {
  width: 100%;
  margin-top: 50px;
  border-collapse: collapse;
}

.inventory-table thead {
  background: var(--steel);
}

.inventory-table th {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--amber);
  padding: 18px 20px;
  text-align: left;
  border-bottom: 2px solid var(--amber);
}

.inventory-table td {
  padding: 16px 20px;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--silver);
}

.inventory-table tbody tr {
  transition: var(--transition);
}

.inventory-table tbody tr:hover {
  background: rgba(232, 145, 45, 0.05);
}

/* ---------- Map placeholder ---------- */
.map-container {
  width: 100%;
  height: 400px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.8) brightness(0.6) contrast(1.3);
}

/* ---------- Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--steel);
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--amber);
}

/* ============================================
   RESPONSIVE — Mobile First Breakpoints
   ============================================ */

@media (max-width: 1024px) {
  .features-grid,
  .categories-grid,
  .testimonials-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-step::after { display: none; }

  .split-section {
    gap: 50px;
  }

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

  .service-detail {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 70px 0;
  }

  /* Mobile Nav */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    transition: right 0.4s var(--ease);
    border-left: 1px solid rgba(232, 145, 45, 0.15);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  /* Hero */
  .hero { min-height: auto; padding: 140px 0 80px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-stats { flex-direction: column; gap: 25px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
  .corner-bracket { display: none; }

  /* Grids */
  .features-grid,
  .categories-grid,
  .testimonials-grid,
  .values-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

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

  .split-image::before { display: none; }
  .split-image .image-badge {
    right: 10px;
    bottom: -15px;
  }

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

  .service-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-detail.reverse {
    direction: ltr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .page-header {
    padding: 130px 0 60px;
  }

  /* Table scroll */
  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat h3 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.8rem;
  }
}
