* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; color: #1a2e4a; line-height: 1.6; background: #f0f7ff; }
.topbar { background: #0d2b55; color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 15px; padding: 10px 8%; font-size: 14px; flex-wrap: wrap; }
.topbar-phone { font-weight: 700; }
.topbar-phone a { color: #4ade80; text-decoration: none; }
.topbar-phone a:hover { text-decoration: underline; }
.navbar { background: #fff; display: flex; justify-content: space-between; align-items: center; padding: 20px 8%; box-shadow: 0 2px 10px rgba(0,0,0,.08); position: sticky; top: 0; z-index: 10; }
.logo { font-size: 26px; font-weight: 800; color: #0d2b55; display: flex; align-items: center; gap: 4px; }
.logo-img { height: 52px; width: auto; display: block; object-fit: contain; }
.logo span { color: #16a34a; }
.navbar ul { list-style: none; display: flex; gap: 25px; }
.navbar a { text-decoration: none; color: #1a2e4a; font-weight: 600; }
.navbar a:hover { color: #16a34a; }
.hero { min-height: 75vh; background: linear-gradient(rgba(13,43,85,.72), rgba(13,43,85,.72)), url('assets/ajscrapmetal-logo.jpg') center/cover; display: flex; align-items: center; padding: 0 8%; color: #fff; }
.hero-content { max-width: 650px; }
.tagline { color: #4ade80; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }
.slogan { font-size: 28px; font-weight: 800; color: #4ade80; font-style: italic; margin: 10px 0; }
h1 { font-size: 54px; line-height: 1.1; margin: 15px 0; }
h2 { font-size: 36px; margin-bottom: 15px; text-align: center; }
.btn, button { display: inline-block; background: #16a34a; color: #fff; padding: 13px 25px; border-radius: 4px; text-decoration: none; font-weight: 800; border: none; cursor: pointer; margin-top: 20px; }
.btn:hover, button:hover { background: #15803d; }
.btn.dark { background: #0d2b55; color: #fff; }
.btn.dark:hover { background: #163e6e; }
.cards-section, .products, .contact { padding: 70px 8%; background: #fff; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 35px; }
.card { background: #f0f7ff; padding: 35px 25px; text-align: center; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,.06); border-top: 4px solid #16a34a; }
.icon { font-size: 42px; margin-bottom: 15px; }
.card h3 { margin-bottom: 10px; color: #0d2b55; }
.about { padding: 80px 8%; display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; background: #eaf4ff; }
.about h2 { text-align: left; }
.about-box { background: #0d2b55; color: #fff; padding: 35px; border-radius: 10px; }
.about-box h3 { color: #4ade80; margin-bottom: 15px; }
.about-box ul { padding-left: 20px; }
.section-text { text-align: center; margin-bottom: 25px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-grid div { background: #0d2b55; color: #fff; padding: 30px; text-align: center; border-radius: 8px; font-weight: 700; border-bottom: 5px solid #16a34a; }
.product-grid div.has-photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.product-grid div.has-photo img { width: 100%; height: 150px; object-fit: cover; display: block; }
.product-grid div.has-photo span { padding: 18px 10px; }
.stats { background: #16a34a; display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; padding: 40px 8%; color: #fff; }
.stats strong { display: block; font-size: 34px; }
.stats span { font-weight: 700; }
.contact form { max-width: 650px; margin: 30px auto 0; display: grid; gap: 15px; }
.contact-details { text-align: center; margin-top: 20px; font-size: 18px; line-height: 1.8; }
.contact-details a { color: #16a34a; font-weight: 700; text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }
input, textarea { width: 100%; padding: 14px; border: 1px solid #b0d4f0; border-radius: 5px; font-size: 16px; background: #f8fbff; }
input:focus, textarea:focus { outline: none; border-color: #16a34a; box-shadow: 0 0 0 3px rgba(22,163,74,.15); }
footer { background: #0d2b55; color: #fff; text-align: center; padding: 25px; }
@media (max-width: 800px) {
  .navbar { flex-direction: column; gap: 15px; }
  .navbar ul { flex-wrap: wrap; justify-content: center; }
  h1 { font-size: 38px; }
  .cards, .about, .product-grid, .stats { grid-template-columns: 1fr; }
}
