/* ============================================================
   SUPREME SHIELD POWDER COATING — Shared Stylesheet
   ============================================================ */

:root {
  --navy:    #1a2340;
  --navy-dk: #111827;
  --accent:  #e8a020;
  --accent-h:#c8881a;
  --white:   #ffffff;
  --light:   #f5f6f8;
  --gray:    #6b7280;
  --border:  #e2e8f0;
  --text:    #1f2937;
  --radius:  6px;
  --shadow:  0 2px 12px rgba(0,0,0,.10);
  --trans:   .25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a  { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-h); }

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  background: var(--navy-dk);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1.5rem;
}
.nav-logo {
  display: flex; flex-direction: column; line-height: 1.2;
}
.nav-logo .brand {
  font-size: 1.1rem; font-weight: 700; color: var(--white);
  letter-spacing: .04em;
}
.nav-logo .sub {
  font-size: .65rem; color: var(--accent); letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 1.8rem;
  list-style: none;
}
.nav-links a {
  color: #cbd5e1; font-size: .9rem; font-weight: 500;
  transition: color var(--trans);
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.lang-btn {
  background: var(--accent); color: var(--navy-dk);
  border: none; border-radius: var(--radius);
  padding: .3rem .8rem; font-size: .8rem; font-weight: 700;
  cursor: pointer; transition: background var(--trans);
}
.lang-btn:hover { background: var(--accent-h); }

/* hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--trans);
}
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--navy); padding: 1rem 1.5rem 1.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: #cbd5e1; padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .95rem;
}
.nav-mobile a:last-child { border-bottom: none; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, rgba(17,24,39,.92) 0%, rgba(26,35,64,.88) 60%, rgba(26,58,92,.85) 100%),
              url('https://images.pexels.com/photos/2760241/pexels-photo-2760241.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
  color: var(--white);
  padding: 6rem 1.5rem 5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; max-width: 800px; margin: 0 auto; }
.hero-tag {
  display: inline-block;
  background: rgba(232,160,32,.2); color: var(--accent);
  border: 1px solid rgba(232,160,32,.4);
  border-radius: 20px; padding: .25rem 1rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 1rem;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.1rem; color: #94a3b8;
  max-width: 600px; margin: 0 auto 2rem;
}
.btn {
  display: inline-block;
  background: var(--accent); color: var(--navy-dk);
  padding: .75rem 2rem; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem;
  transition: background var(--trans), transform var(--trans);
}
.btn:hover { background: var(--accent-h); color: var(--navy-dk); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  margin-left: .75rem;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: transparent; }

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 5rem 1.5rem; }
.section-alt { background: var(--light); }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--navy);
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--gray); max-width: 600px;
  margin-bottom: 3rem; font-size: 1rem;
}

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--accent);
  padding: 2rem 1.5rem;
}
.stats-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem; text-align: center;
}
.stat-num {
  font-size: 2rem; font-weight: 800; color: var(--navy-dk);
}
.stat-label { font-size: .85rem; color: var(--navy); font-weight: 600; }

/* ── CARDS ───────────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white); border-radius: 10px;
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.card-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: rgba(232,160,32,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.card p  { font-size: .9rem; color: var(--gray); }

/* ── PRODUCT CARDS ───────────────────────────────────────── */
.product-card {
  background: var(--white); border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--trans);
}
.product-card:hover { transform: translateY(-4px); }
.product-card-top {
  height: 8px;
  background: linear-gradient(90deg, var(--navy), var(--accent));
}
.product-card-body { padding: 1.5rem; }
.product-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.product-card-body p  { font-size: .88rem; color: var(--gray); margin-bottom: 1rem; }
.tag {
  display: inline-block;
  background: rgba(232,160,32,.12); color: var(--accent-h);
  border-radius: 4px; padding: .15rem .6rem;
  font-size: .75rem; font-weight: 600; margin: .15rem .1rem;
}

/* ── ABOUT LAYOUT ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.info-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.info-table td {
  padding: .7rem .5rem; border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.info-table td:first-child { color: var(--gray); width: 40%; font-weight: 600; }
.info-table td:last-child  { color: var(--text); font-weight: 500; }

.value-list { list-style: none; margin-top: 1rem; }
.value-list li {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .6rem 0; border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.value-list li::before {
  content: '▸'; color: var(--accent); font-size: 1rem; flex-shrink: 0;
}

/* ── FORM ────────────────────────────────────────────────── */
.form-wrap {
  max-width: 680px; margin: 0 auto;
  background: var(--white); border-radius: 12px;
  border: 1px solid var(--border); padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--navy); margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .65rem .9rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: .9rem; color: var(--text);
  transition: border-color var(--trans);
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,160,32,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%; padding: .85rem;
  background: var(--navy); color: var(--white);
  border: none; border-radius: var(--radius);
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: background var(--trans);
}
.btn-submit:hover { background: var(--accent); color: var(--navy-dk); }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem;
}
.contact-info-card {
  background: var(--navy); color: var(--white);
  border-radius: 12px; padding: 2rem;
}
.contact-info-card h3 { color: var(--accent); margin-bottom: 1.5rem; font-size: 1.1rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-item .ci-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(232,160,32,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item .ci-text { font-size: .88rem; color: #94a3b8; line-height: 1.5; }
.contact-item .ci-text strong { display: block; color: var(--white); margin-bottom: .15rem; }

/* ── FEATURE IMAGE ───────────────────────────────────────── */
.feature-img {
  width: 100%; border-radius: 12px;
  object-fit: cover; display: block;
  box-shadow: var(--shadow);
}
.img-caption {
  font-size: .75rem; color: var(--gray);
  text-align: center; margin-top: .4rem;
}

/* ── PRODUCT COLOUR SWATCH ───────────────────────────────── */
.product-swatch {
  height: 140px; width: 100%;
  border-radius: 8px 8px 0 0;
  object-fit: cover; display: block;
}

/* ── PAGE HEADER ─────────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, rgba(17,24,39,.9), rgba(36,48,96,.88)),
              url('https://images.pexels.com/photos/3862130/pexels-photo-3862130.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
  color: var(--white); padding: 4rem 1.5rem 3rem;
  text-align: center;
}
.page-header h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; }
.page-header p  { color: #94a3b8; margin-top: .5rem; font-size: 1rem; }
.breadcrumb {
  font-size: .8rem; color: #64748b; margin-bottom: .75rem;
}
.breadcrumb a { color: var(--accent); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--navy-dk); color: #94a3b8;
  padding: 3rem 1.5rem 1.5rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 2rem;
}
.footer-brand .brand { font-size: 1rem; font-weight: 700; color: var(--white); }
.footer-brand .sub   { font-size: .65rem; color: var(--accent); letter-spacing: .08em; text-transform: uppercase; }
.footer-brand p { font-size: .85rem; margin-top: .75rem; line-height: 1.6; }
.footer-col h4 { color: var(--white); font-size: .9rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: #94a3b8; font-size: .85rem; transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem;
}
.footer-bottom a { color: var(--accent); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .btn-outline { margin-left: 0; margin-top: .75rem; }
}
