/* Palette: Concrete Grey, Safety Orange, Steel Black, White */
:root {
    --dark: #222222;
    --grey: #F4F4F4;
    --orange: #FF6700;
    --orange-hover: #CC5200;
    --steel: #778899;
    --white: #FFFFFF;
    
    --font-head: 'Teko', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--grey);
    color: var(--dark);
    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; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.prime-header { background: var(--dark); color: var(--white); padding: 20px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 4px solid var(--orange); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--white); letter-spacing: 1px; line-height: 1; }
.orange-box { background: var(--orange); color: var(--dark); padding: 0 5px; margin: 0 2px; }

.ind-nav a { margin-left: 30px; font-family: var(--font-head); font-size: 1.3rem; color: #BBB; font-weight: 400; text-transform: uppercase; }
.ind-nav a:hover, .ind-nav a.active { color: var(--orange); }

.header-status { font-family: var(--font-head); font-size: 1.1rem; color: var(--orange); border: 1px solid var(--orange); padding: 2px 10px; margin-left: 20px; }

.mobile-toggle { display: none; background: var(--orange); border: none; color: var(--dark); font-family: var(--font-head); font-size: 1.2rem; padding: 5px 10px; cursor: pointer; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--dark); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-menu.active { right: 0; }
.close-btn { position: absolute; top: 20px; right: 20px; background: none; border: 1px solid var(--orange); color: var(--orange); font-family: var(--font-head); font-size: 1.2rem; cursor: pointer; }
.mobile-menu a { font-family: var(--font-head); font-size: 2.5rem; color: var(--white); margin: 10px 0; }
.mobile-menu a:hover { color: var(--orange); }

@media (max-width: 900px) {
    .ind-nav, .header-status { display: none; }
    .mobile-toggle { display: block; }
}

/* Hero */
.hero-ind { height: 80vh; position: relative; display: flex; align-items: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(34,34,34,0.9) 0%, rgba(34,34,34,0.4) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 700px; }

.ind-tag { background: var(--orange); color: var(--dark); font-family: var(--font-head); font-size: 1.2rem; padding: 5px 15px; font-weight: 700; display: inline-block; margin-bottom: 20px; }
.hero-content h1 { font-family: var(--font-head); font-size: 4.5rem; line-height: 0.9; margin-bottom: 25px; text-transform: uppercase; }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; color: #DDD; }

.hero-btns { display: flex; gap: 20px; }
.btn-orange { background: var(--orange); color: var(--white); padding: 15px 40px; font-family: var(--font-head); font-size: 1.4rem; border: none; cursor: pointer; transition: 0.3s; text-transform: uppercase; }
.btn-orange:hover { background: var(--orange-hover); }
.btn-steel { background: var(--steel); color: var(--white); padding: 15px 40px; font-family: var(--font-head); font-size: 1.4rem; transition: 0.3s; text-transform: uppercase; }
.btn-steel:hover { background: #5a6a7a; }

/* Metrics Bar */
.metrics-bar { background: var(--white); padding: 40px 0; border-bottom: 1px solid #DDD; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.metric strong { display: block; font-family: var(--font-head); font-size: 3rem; color: var(--orange); line-height: 1; }
.metric span { font-size: 0.9rem; font-weight: 700; color: #555; text-transform: uppercase; }

/* Services */
.section-title h2 { font-family: var(--font-head); font-size: 3rem; color: var(--dark); margin-bottom: 5px; text-transform: uppercase; }
.orange-stripe { width: 80px; height: 6px; background: var(--orange); margin: 0 auto 40px; }
.orange-stripe.left { margin: 0 0 30px 0; }
.text-center { text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: var(--white); border: 1px solid #DDD; padding: 40px; text-align: center; transition: 0.3s; border-bottom: 5px solid transparent; }
.service-card:hover { transform: translateY(-5px); border-bottom-color: var(--orange); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.icon-box { font-size: 3rem; margin-bottom: 20px; }
.service-card h3 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 15px; color: var(--dark); }

/* About Facility */
.facility-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; }
.facility-text h1 { font-family: var(--font-head); font-size: 4rem; line-height: 0.9; margin-bottom: 20px; color: var(--dark); }
.specs-list { list-style: none; margin-top: 30px; }
.specs-list li { font-family: var(--font-head); font-size: 1.4rem; color: var(--steel); margin-bottom: 5px; }
.facility-img img { border: 10px solid var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }

/* Services Page Row */
.services-row { display: flex; flex-direction: column; gap: 50px; }
.s-card-wide { display: flex; background: var(--white); border: 1px solid #DDD; }
.s-img { width: 40%; background-size: cover; background-position: center; }
.s-content { padding: 40px; width: 60%; }
.s-content h3 { font-family: var(--font-head); font-size: 2rem; color: var(--dark); margin-bottom: 15px; }
.link-orange { color: var(--orange); font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin-top: 20px; display: inline-block; }

/* Contact */
.quote-box { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border-top: 5px solid var(--orange); box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.quote-head { text-align: center; margin-bottom: 40px; }
.quote-head h2 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 10px; }
.loc-details { margin-top: 20px; font-weight: 700; color: var(--steel); }

.ind-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.f-grp { margin-bottom: 20px; }
.f-grp label { display: block; font-family: var(--font-head); font-size: 1.1rem; color: #555; }
.f-grp input, .f-grp select, .f-grp textarea { width: 100%; padding: 10px; border: 2px solid #EEE; background: #FAFAFA; font-family: var(--font-body); }
.f-grp input:focus, .f-grp textarea:focus { border-color: var(--orange); outline: none; }
.full { width: 100%; }

/* Legal */
.legal-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; }
.legal-content h1 { font-family: var(--font-head); font-size: 3rem; }

/* Footer */
.prime-footer { background: var(--dark); color: #888; padding: 60px 0 20px; margin-top: 100px; }
.footer-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-col h4 { color: var(--white); font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 5px; }
.f-links a { margin-left: 20px; color: #888; font-family: var(--font-head); font-size: 1.2rem; }
.f-links a:hover { color: var(--orange); }
.copyright { text-align: center; font-size: 0.8rem; border-top: 1px solid #333; padding-top: 20px; }

@media (max-width: 900px) {
    .hero-content h1 { font-size: 3rem; }
    .metrics-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .grid-3, .facility-layout, .ind-form .form-row { grid-template-columns: 1fr; }
    .s-card-wide { flex-direction: column; }
    .s-img { width: 100%; height: 200px; }
    .s-content { width: 100%; }
    .footer-row { flex-direction: column; gap: 20px; text-align: center; }
}