/* --- Variables --- */
:root {
    --color-orange: #ff9900;    /* Safety Orange */
    --color-orange-dark: #cc7a00;
    --color-blue: #003366;      /* Workwear Blue */
    --color-grey: #f0f0f0;
    --color-text: #333333;
    --color-white: #ffffff;
    
    --font-main: 'Roboto', sans-serif;
    
    --radius: 4px;
    --shadow: 0 4px 10px rgba(0,0,0,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    background-color: var(--color-grey);
    color: var(--color-text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* --- Emergency Bar --- */
.emergency-bar { background-color: #cc0000; color: #fff; text-align: center; padding: 10px 0; font-weight: bold; letter-spacing: 1px; }
.blink { animation: blinker 1.5s linear infinite; color: #ff0; }
@keyframes blinker { 50% { opacity: 0; } }

/* --- Header --- */
.service-header { background-color: var(--color-white); padding: 20px 0; border-bottom: 3px solid var(--color-orange); position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 2rem; font-weight: 900; color: var(--color-blue); display: flex; align-items: center; gap: 5px; }
.orange-text { color: var(--color-orange); }
.icon-tool { font-size: 1.5rem; }

.craft-nav ul { display: flex; gap: 25px; align-items: center; }
.craft-nav a { font-weight: 500; font-size: 1rem; color: var(--color-blue); text-transform: uppercase; }
.craft-nav a:hover, .craft-nav a.active { color: var(--color-orange); }

.btn-blue { background-color: var(--color-blue); color: var(--color-white) !important; padding: 10px 25px; border-radius: var(--radius); font-weight: bold; }
.btn-blue:hover { background-color: var(--color-orange); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 30px; height: 4px; background-color: var(--color-blue); }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 250px; height: 100%;
    background-color: var(--color-blue); z-index: 2000;
    display: flex; flex-direction: column; padding: 40px; gap: 20px;
    transition: 0.3s ease; border-left: 5px solid var(--color-orange);
}
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; color: var(--color-white); background: none; border: none; cursor: pointer; }
.mobile-menu a { color: var(--color-white); font-weight: bold; font-size: 1.1rem; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 10px; }

/* --- Hero --- */
.hero-craft {
    position: relative; height: 500px;
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 51, 102, 0.7); z-index: 1; }

.hero-content { position: relative; z-index: 2; color: var(--color-white); width: 100%; max-width: 800px; padding: 20px; }
.hero-content h1 { font-size: 3rem; margin-bottom: 15px; font-weight: 900; line-height: 1.2; text-shadow: 2px 2px 5px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; }

.service-finder { background-color: var(--color-orange); padding: 15px; border-radius: var(--radius); display: flex; gap: 10px; flex-wrap: wrap; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.service-finder select, .service-finder input { flex: 1; padding: 12px; border: none; border-radius: var(--radius); font-size: 1rem; color: #333; min-width: 200px; }
.service-finder button { background-color: var(--color-blue); color: var(--color-white); border: none; padding: 12px 30px; font-weight: bold; cursor: pointer; border-radius: var(--radius); }
.service-finder button:hover { background-color: #002244; }

/* --- Grid --- */
.section-padding { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; color: var(--color-blue); margin-bottom: 10px; font-weight: 700; }
.line-orange { width: 80px; height: 6px; background-color: var(--color-orange); margin: 0 auto; }

.craft-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.craft-card { background-color: var(--color-white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); transition: 0.3s; text-align: center; border-bottom: 5px solid transparent; }
.craft-card:hover { transform: translateY(-5px); border-bottom-color: var(--color-orange); }
.icon { font-size: 3rem; margin-bottom: 15px; }
.craft-card h3 { color: var(--color-blue); margin-bottom: 10px; font-size: 1.3rem; }
.craft-card p { color: #666; font-size: 0.95rem; }

/* --- Promise Banner --- */
.promise-banner { background-color: var(--color-blue); color: var(--color-white); padding: 50px 0; margin-top: 50px; }
.banner-flex { display: flex; justify-content: space-around; text-align: center; }
.promise-item strong { display: block; font-size: 1.5rem; margin-bottom: 5px; color: var(--color-orange); }

/* --- About (Split) --- */
.page-head { text-align: center; margin-bottom: 60px; }
.page-head h1 { font-size: 2.5rem; color: var(--color-blue); }

.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-side h2 { font-size: 2rem; color: var(--color-orange); margin-bottom: 20px; }
.check-list { list-style: none; margin-top: 20px; font-weight: bold; }
.check-list li { margin-bottom: 10px; padding-left: 25px; position: relative; }
.check-list li::before { content: '★'; color: var(--color-orange); position: absolute; left: 0; }

.img-side { position: relative; }
.img-side img { border-radius: var(--radius); border: 5px solid var(--color-white); box-shadow: var(--shadow); }
.seal { position: absolute; bottom: 20px; right: 20px; background-color: var(--color-orange); color: var(--color-white); padding: 20px; border-radius: 50%; font-weight: 900; text-align: center; border: 3px solid var(--color-white); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }

/* --- Reviews --- */
.feedback-list { display: grid; gap: 30px; }
.feedback-item { background: var(--color-white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); border-left: 5px solid var(--color-blue); }
.fb-header { display: flex; justify-content: space-between; font-weight: bold; margin-bottom: 10px; }
.service-tag { background: #eee; padding: 2px 8px; border-radius: 4px; font-size: 0.8rem; color: #555; }
.stars { color: #f1c40f; margin-bottom: 10px; letter-spacing: 2px; }
.location { display: block; text-align: right; font-size: 0.8rem; color: #999; margin-top: 10px; }

/* --- Order Form --- */
.order-box { max-width: 800px; margin: 0 auto; background: var(--color-white); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow); border-top: 5px solid var(--color-orange); }
.order-info { text-align: center; margin-bottom: 30px; }
.order-info h2 { color: var(--color-blue); margin-bottom: 10px; }
.steps-small { margin-top: 15px; font-size: 0.9rem; font-weight: bold; color: var(--color-orange); }
.steps-small span { margin: 0 10px; }

.craft-form .form-row { margin-bottom: 20px; }
.craft-form label { display: block; font-weight: bold; margin-bottom: 5px; }
.craft-form input, .craft-form select, .craft-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: var(--radius); font-family: var(--font-main); font-size: 1rem; background: #fafafa; }
.craft-form .split { display: flex; gap: 20px; }
.btn-submit { width: 100%; background-color: var(--color-orange); color: var(--color-white); padding: 15px; border: none; font-weight: 900; font-size: 1.2rem; cursor: pointer; border-radius: var(--radius); margin-top: 10px; }
.btn-submit:hover { background-color: var(--color-orange-dark); }

/* --- Legal --- */
.pricing-doc { max-width: 800px; margin: 0 auto; background: var(--color-white); padding: 50px; box-shadow: var(--shadow); }
.pricing-doc h1 { color: var(--color-blue); }
.pricing-doc h3 { color: var(--color-orange); margin-top: 30px; margin-bottom: 10px; }

/* --- Footer --- */
.service-footer { background-color: var(--color-blue); color: var(--color-white); padding: 60px 0; margin-top: auto; text-align: center; }
.f-brand h4 { font-size: 1.5rem; font-weight: 900; margin-bottom: 5px; color: var(--color-orange); }
.f-links a { color: #ccc; margin: 0 15px; font-weight: bold; }
.copyright { margin-top: 20px; font-size: 0.8rem; opacity: 0.6; }

@media (max-width: 992px) {
    .craft-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 2.5rem; }
    .about-split { grid-template-columns: 1fr; }
    .banner-flex { flex-direction: column; gap: 30px; }
    .craft-form .split { flex-direction: column; gap: 20px; }
    .service-finder { flex-direction: column; }
    .service-finder input, .service-finder select, .service-finder button { width: 100%; }
}