:root {
    --rust-orange: #D35400;
    --steel-grey: #7F8C8D;
    --dark-metal: #1C1C1C;
    --white: #F5F5F5;
    --border-color: #444;
    
    --font-head: 'Russo One', sans-serif;
    --font-body: 'Roboto Condensed', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--dark-metal);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Safety Bar */
.safety-bar { background: repeating-linear-gradient(45deg, #000, #000 10px, #F1C40F 10px, #F1C40F 20px); text-align: center; color: black; font-weight: bold; font-size: 0.9rem; padding: 5px; }

/* Header */
.forge-header { background: #222; border-bottom: 4px solid var(--rust-orange); padding: 20px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 2rem; color: var(--white); text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 10px; }
.rust { color: var(--rust-orange); }
.icon { font-size: 1.5rem; }

.metal-nav a { margin-left: 20px; font-weight: bold; font-size: 1.1rem; color: var(--steel-grey); }
.metal-nav a:hover, .metal-nav a.active { color: var(--rust-orange); }

.btn-steel { border: 2px solid var(--rust-orange); padding: 5px 15px; color: var(--rust-orange) !important; background: rgba(211, 84, 0, 0.1); }
.btn-steel:hover { background: var(--rust-orange); color: white !important; }

/* Mobile Menu */
.mobile-trigger { display: none; font-family: var(--font-head); cursor: pointer; border: 1px solid var(--white); padding: 5px 10px; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--dark-metal); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; border-left: 5px solid var(--rust-orange); }
.mobile-menu.active { right: 0; }
.close-menu { position: absolute; top: 20px; right: 20px; background: transparent; border: 2px solid var(--white); color: var(--white); font-family: var(--font-head); padding: 5px 15px; cursor: pointer; }
.mobile-menu nav a { font-family: var(--font-head); font-size: 2rem; margin: 15px 0; color: var(--white); display: block; }

/* Hero */
.hero-forge { height: 70vh; background-size: cover; background-position: center; position: relative; border-bottom: 10px solid #222; }
.hero-overlay { width: 100%; height: 100%; background: rgba(0,0,0,0.6); display: flex; align-items: center; }
.hero-content { margin-left: 10%; max-width: 600px; padding: 40px; border: 2px solid var(--steel-grey); background: rgba(28, 28, 28, 0.8); backdrop-filter: blur(5px); }
.tag { background: var(--rust-orange); color: white; padding: 2px 8px; font-weight: bold; font-size: 0.8rem; }
.hero-content h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1; margin: 20px 0; color: var(--white); text-shadow: 2px 2px 0 #000; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; color: #ccc; }
.btn-group { display: flex; gap: 20px; }
.btn-rust { background: var(--rust-orange); color: white; padding: 12px 30px; font-weight: bold; border: none; font-family: var(--font-head); letter-spacing: 1px; }
.btn-rust:hover { background: #E67E22; }
.btn-outline { border: 2px solid var(--white); color: white; padding: 10px 25px; font-weight: bold; font-family: var(--font-head); }
.btn-outline:hover { background: white; color: black; }

/* Services */
.section-title { margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-head); font-size: 3rem; color: var(--white); margin-bottom: 10px; }
.steel-beam { width: 150px; height: 10px; background: var(--steel-grey); position: relative; }
.steel-beam::after { content: ''; position: absolute; top: 2px; left: 2px; width: 146px; height: 6px; border: 1px dashed #333; }
.steel-beam.left { margin: 20px 0; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: #262626; padding: 30px; border: 1px solid #333; transition: 0.3s; }
.service-card:hover { border-color: var(--rust-orange); transform: translateY(-5px); }
.service-card.highlight { background: #2D2D2D; border-bottom: 5px solid var(--rust-orange); }
.card-icon { font-size: 3rem; margin-bottom: 20px; }
.service-card h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 10px; }

/* Stats Bar */
.stats-bar { background: var(--rust-orange); padding: 40px 0; color: white; border-top: 5px solid #222; border-bottom: 5px solid #222; }
.stats-flex { display: flex; justify-content: space-around; text-align: center; }
.stat strong { display: block; font-family: var(--font-head); font-size: 3rem; line-height: 1; }
.stat span { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }

/* About & Contact */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-block h1 { font-family: var(--font-head); font-size: 3rem; line-height: 1; }
.spec-list { margin-top: 30px; list-style: none; font-size: 1.1rem; }
.spec-list li { margin-bottom: 10px; border-bottom: 1px solid #333; padding-bottom: 5px; }
.img-block img { width: 100%; border: 10px solid #333; }

.contact-frame { max-width: 900px; margin: 0 auto; background: #262626; padding: 50px; border: 2px solid var(--steel-grey); }
.contact-info { margin-bottom: 40px; border-bottom: 1px solid #444; padding-bottom: 20px; }
.contact-info h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--rust-orange); }
.info-data p { margin-bottom: 5px; color: #ccc; }

.industrial-form .form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.input-wrap { flex: 1; margin-bottom: 20px; }
.input-wrap label { display: block; font-weight: bold; margin-bottom: 5px; color: var(--steel-grey); }
.input-wrap input, .input-wrap select, .input-wrap textarea { width: 100%; background: #111; border: 1px solid #444; color: white; padding: 12px; font-family: var(--font-body); }
.input-wrap input:focus, .input-wrap textarea:focus { border-color: var(--rust-orange); outline: none; }
.btn-submit { width: 100%; background: var(--white); color: black; border: none; padding: 15px; font-weight: bold; font-family: var(--font-head); font-size: 1.2rem; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: var(--rust-orange); color: white; }

/* Reviews & Legal */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-box { background: #222; padding: 25px; border-left: 4px solid var(--steel-grey); }
.review-box.highlight { border-left-color: var(--rust-orange); background: #2A2A2A; }
.r-header { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 10px; color: var(--white); }
.review-box p { font-style: italic; color: #aaa; margin-bottom: 15px; }
.r-author { font-weight: bold; color: var(--rust-orange); font-size: 0.9rem; }

.legal-box { max-width: 800px; margin: 0 auto; background: #222; padding: 50px; border: 1px solid #333; }
.legal-box h1 { font-family: var(--font-head); }
.legal-box h3 { color: var(--rust-orange); margin-top: 30px; margin-bottom: 10px; font-family: var(--font-head); font-size: 1.5rem; }

/* Footer */
.forge-footer { background: #111; border-top: 5px solid var(--rust-orange); padding: 60px 0 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; padding-bottom: 30px; margin-bottom: 20px; }
.f-brand h4 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 5px; color: var(--white); }
.f-links a { color: #888; margin-left: 20px; text-transform: uppercase; font-weight: bold; font-size: 0.9rem; }
.f-links a:hover { color: var(--rust-orange); }
.copyright { text-align: center; color: #555; font-size: 0.8rem; }

/* Cookie Banner */
.cookie-box { position: fixed; bottom: 20px; left: 20px; background: var(--rust-orange); color: white; padding: 15px 25px; font-weight: bold; z-index: 9999; display: none; align-items: center; gap: 20px; border: 2px solid white; }
.cookie-box.active { display: flex; animation: slideIn 0.3s; }
.cookie-box button { background: black; color: white; border: none; padding: 5px 15px; font-family: var(--font-head); cursor: pointer; }

@keyframes slideIn { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

@media (max-width: 900px) {
    .metal-nav { display: none; }
    .mobile-trigger { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    .service-grid, .about-grid, .contact-frame .form-row, .review-grid, .stats-flex { grid-template-columns: 1fr; }
    .stats-flex { gap: 30px; }
}