/* Forgeline Metal Fabrication – style.css */

/* 🎨 Brand Palette (dark workshop + orange sparks + cyan tech) */
:root {
  --bg-dark: #050910;
  --bg-panel: #0c121e;
  --bg-mid: #111827;
  --bg-soft: #101826;
  --white: #ffffff;
  --text: #e5e7eb;
  --soft-text: #9ca3af;
  --accent-orange: #f97316;
  --accent-orange-soft: #fbbf77;
  --accent-cyan: #22d3ee;
  --border: #1f2937;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* Layout */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

/* Section types */
.section-dark {
  background: radial-gradient(circle at top, #1f2937 0, #020617 55%);
}

.section-dark.soft {
  background: linear-gradient(135deg, #020617 0%, #0b1220 60%, #020617 100%);
}

.section-mid {
  background: #050b14;
}

/* Section headings */
.section-head {
  max-width: 640px;
  margin: 0 auto;
}

.section-head h2 {
  font-family: "Poppins", system-ui;
  font-weight: 700;
  font-size: 2rem;
  margin: 0 0 0.75rem;
  color: var(--white);
}

.section-head p {
  margin: 0;
  color: var(--soft-text);
}

.section-head.center {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* HEADER */
.site-header {
  background: #020617;
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(15, 23, 42, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, var(--accent-orange), #020617);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins";
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 0 25px rgba(248, 113, 22, 0.7);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: "Poppins";
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.logo-subtitle {
  font-size: 0.75rem;
  opacity: 0.9;
  color: var(--soft-text);
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--accent-orange-soft);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: #cbd5f5;
  text-decoration: none;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover {
  color: var(--white);
  background: rgba(148, 163, 184, 0.15);
}

.nav-cta {
  background: var(--accent-orange);
  color: #0b1120;
  font-weight: 600;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

/* HERO */
.hero {
  padding-top: 4.5rem;
}

.hero-copy h1 {
  font-family: "Poppins";
  font-size: clamp(2.1rem, 2.5vw, 2.6rem);
  margin: 0 0 1rem;
  color: var(--white);
}

.hero-copy p {
  margin: 0 0 1.5rem;
  color: var(--soft-text);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: "Inter";
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    color 0.15s ease, border-color 0.15s ease;
}

.btn.primary {
  background: var(--accent-orange);
  color: #111827;
  box-shadow: 0 12px 30px rgba(248, 113, 22, 0.5);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(248, 113, 22, 0.75);
}

.btn.ghost {
  background: transparent;
  color: var(--accent-orange-soft);
  border-color: rgba(148, 163, 184, 0.6);
}

.section-dark .btn.ghost {
  color: var(--accent-cyan);
  border-color: rgba(56, 189, 248, 0.7);
}

.btn.ghost:hover {
  background: rgba(15, 23, 42, 0.85);
}

.btn.full-width {
  width: 100%;
}

/* Bullet list */
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.3rem;
  font-size: 0.88rem;
  color: var(--soft-text);
}

.hero-points li::before {
  content: "• ";
  color: var(--accent-cyan);
}

/* Media frame */
.media-frame {
  background: linear-gradient(135deg, #020617, #111827);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.9);
  padding: 0.8rem;
  max-width: 420px;
  margin: 0 auto;
}

.media-frame.medium {
  max-width: 380px;
}

.media-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Service cards */
.cards-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  border-radius: 18px;
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 55, 0.8);
  background: radial-gradient(circle at top, #111827 0%, #020617 65%);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.9);
}

.card h3 {
  font-family: "Poppins";
  font-size: 1.05rem;
  margin: 0 0 0.6rem;
  color: var(--accent-orange-soft);
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--soft-text);
}

/* Mini cards */
.mini-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.mini-card {
  background: #020617;
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.85);
}

.mini-card h4 {
  font-family: "Poppins";
  font-size: 0.95rem;
  margin: 0 0 0.4rem;
  color: var(--accent-cyan);
}

.mini-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--soft-text);
}

/* Process steps */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}

.process-steps li {
  background: #020617;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
}

.process-steps strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: var(--accent-orange-soft);
}

.process-steps p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--soft-text);
}

/* Contact section */
.contact-inner {
  align-items: flex-start;
}

.contact-inner h2 {
  font-family: "Poppins";
  font-size: 1.6rem;
  margin: 0 0 0.7rem;
  color: var(--white);
}

.contact-inner p {
  color: var(--soft-text);
  margin: 0 0 1rem;
}

.contact-form-mock {
  display: flex;
  justify-content: center;
}

.form-card {
  background: #020617;
  border-radius: 18px;
  padding: 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.95);
  max-width: 380px;
  width: 100%;
}

.form-card h3 {
  margin: 0 0 0.9rem;
  font-family: "Poppins";
  font-size: 1.05rem;
  color: var(--accent-cyan);
}

.fake-input {
  display: block;
  width: 100%;
  padding: 0.7rem 0.8rem;
  margin-bottom: 0.55rem;
  border-radius: 10px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  font-size: 0.85rem;
  color: rgba(209, 213, 219, 0.8);
  background: rgba(15, 23, 42, 0.9);
}

/* FOOTER */
.site-footer {
  background: #020617;
  color: var(--soft-text);
  padding: 1.6rem 0 2rem;
  font-size: 0.83rem;
  border-top: 1px solid rgba(15, 23, 42, 0.8);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
}

.powered-by strong {
  color: var(--accent-orange-soft);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.5rem;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .media-frame,
  .media-frame.medium {
    max-width: 380px;
    margin-top: 1rem;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 2rem, 100%);
  }

  .section {
    padding: 3rem 0;
  }

  .hero-copy h1 {
    font-size: 1.9rem;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .main-nav {
    gap: 0.4rem;
    font-size: 0.85rem;
  }

  .media-frame,
  .media-frame.medium {
    max-width: 320px;
  }
}

