@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Open+Sans:wght@400;600;700&display=swap');
body, html { margin: 0; padding: 0; font-family: 'Open Sans', sans-serif; color: #333; background: #fff; display: flex; flex-direction: column; min-height: 100vh; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 5%; width: 100%; box-sizing: border-box; }
.top-announcement { background: #c0392b; color: white; text-align: center; padding: 12px; font-size: 0.95rem; letter-spacing: 1px; font-family: 'Oswald', sans-serif; text-transform: uppercase; }
.utility-header { background: #fdfdfd; border-bottom: 4px solid #d35400; padding: 25px 0; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo-stack { cursor: pointer; }
.title { font-family: 'Oswald', sans-serif; font-size: 3rem; font-weight: 700; color: #222; line-height: 1; letter-spacing: 2px; }
.subtitle { font-size: 0.9rem; font-weight: 700; color: #d35400; text-transform: uppercase; letter-spacing: 1px; }
.pill-nav { display: flex; gap: 15px; align-items: center; }
.pill-nav a { padding: 10px 20px; border-radius: 4px; text-decoration: none; color: #555; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.2s; border: 2px solid transparent; }
.pill-nav a:hover, .pill-nav a.active { border-color: #ddd; color: #222; }
.urgent-btn { background: #d35400; color: white !important; text-transform: uppercase; font-family: 'Oswald', sans-serif; letter-spacing: 1px; border-color: #d35400 !important; }
.urgent-btn:hover { background: #e67e22; border-color: #e67e22 !important; }
.page { display: none; flex: 1; }
.page.active { display: block; animation: show 0.4s; }
.working-hero { display: flex; align-items: center; justify-content: flex-start; min-height: 500px; color: white; background-size: cover; background-position: center; border-bottom: 10px solid #222; }
.hero-content { max-width: 700px; margin: 0; }
.hero-content h1 { font-family: 'Oswald', sans-serif; font-size: 4rem; line-height: 1.1; margin-bottom: 20px; text-shadow: 2px 2px 0 #222; }
.hero-content p { font-size: 1.25rem; font-weight: 600; line-height: 1.6; margin-bottom: 40px; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }
.hero-badges { display: flex; gap: 15px; flex-wrap: wrap; }
.cert-badge { background: #222; color: white; padding: 10px 15px; font-weight: bold; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px; border-radius: 3px; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
.highlight-bar { background: #f1c40f; color: #222; padding: 30px; border-radius: 0 0 8px 8px; text-align: center; margin-bottom: 40px; }
.highlight-bar h2 { margin: 0; font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 1.8rem; }
.section { padding: 60px 0; }
.section-heading { font-family: 'Oswald', sans-serif; font-size: 2.8rem; color: #222; text-transform: uppercase; border-left: 8px solid #d35400; padding-left: 20px; margin-bottom: 40px; }
.service-cards-industrial { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }
.ind-card { border: 2px solid #ddd; padding: 40px; border-top: 8px solid #222; background: #fafafa; border-radius: 4px; }
.ind-icon { font-size: 3rem; margin-bottom: 20px; }
.ind-card h3 { font-family: 'Oswald', sans-serif; font-size: 2rem; margin: 0 0 20px 0; color: #d35400; }
.ind-card ul { padding-left: 20px; }
.ind-card li { margin-bottom: 15px; font-size: 1.1rem; font-weight: 600; }
.quote-wrapper { display: flex; gap: 60px; background: #fdfdfd; border: 2px solid #eee; padding: 50px; border-radius: 8px; }
.quote-text { flex: 1; }
.quote-text p { font-size: 1.2rem; line-height: 1.6; }
.heavy-form { flex: 1; display: flex; flex-direction: column; gap: 20px; background: white; padding: 40px; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-top: 4px solid #d35400; }
.form-row { display: flex; gap: 20px; }
.form-row input { flex: 1; }
.heavy-form input, .heavy-form textarea { padding: 16px; border: 2px solid #ddd; font-family: 'Open Sans', sans-serif; font-size: 1rem; font-weight: 600; border-radius: 4px; transition: border-color 0.3s; width: 100%; box-sizing: border-box; }
.heavy-form input:focus, .heavy-form textarea:focus { border-color: #d35400; outline: none; }
.heavy-form button { background: #222; color: white; border: none; padding: 20px; font-family: 'Oswald', sans-serif; font-size: 1.5rem; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; border-radius: 4px; transition: background 0.3s; }
.heavy-form button:hover { background: #d35400; }
.form-disclaimer { font-size: 0.8rem; color: #888; text-align: center; margin-top: 10px; }
.utility-footer { background: #222; color: #bdc3c7; padding: 40px 0; margin-top: auto; border-top: 8px solid #d35400; }
.logof { font-family: 'Oswald', sans-serif; font-size: 2rem; color: white; margin-bottom: 15px; }
.utility-footer a { color: #d35400; text-decoration: none; font-weight: bold; }
@keyframes show { from { opacity: 0; } to { opacity: 1; } }
