/* ============================================
   Bloomington Epoxy Coating — Main Stylesheet
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #222;
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: #c85a00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ---- Layout ---- */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

section:nth-child(even) {
    background: #f7f7f7;
}

/* ---- Header / Nav ---- */
header {
    background: #1a1a1a;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: 960px;
    margin: 0 auto;
}

.logo {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo span {
    color: #f07c00;
}

nav a {
    color: #ddd;
    margin-left: 24px;
    font-size: 0.95rem;
}

nav a:hover {
    color: #fff;
    text-decoration: none;
}

/* ---- Hero ---- */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    padding: 80px 0 70px;
    text-align: center;
}

.hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}

.hero h1 span {
    color: #f07c00;
}

.hero p {
    font-size: 1.15rem;
    color: #ccc;
    max-width: 620px;
    margin: 0 auto 32px;
}

.hero-phone {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: #f07c00;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-phone:hover {
    color: #ff9a30;
    text-decoration: none;
}

.btn {
    display: inline-block;
    background: #f07c00;
    color: #fff;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn:hover {
    background: #c85a00;
    color: #fff;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid #f07c00;
    color: #f07c00;
    margin-left: 12px;
}

.btn-outline:hover {
    background: #f07c00;
    color: #fff;
}

/* ---- Section Headings ---- */
h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.section-intro {
    font-size: 1.05rem;
    color: #555;
    max-width: 680px;
    margin-bottom: 40px;
}

/* ---- Services Grid ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: 4px solid #f07c00;
    border-radius: 4px;
    padding: 28px 24px;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    color: #555;
    font-size: 0.97rem;
}

/* ---- Benefits / Checklist ---- */
.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
}

.check {
    color: #f07c00;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---- Service Areas ---- */
.areas-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.areas-list li {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 16px;
    font-size: 0.95rem;
    color: #333;
}

.areas-list li::before {
    content: "📍 ";
}

/* ---- FAQ ---- */
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 22px 0;
}

.faq-item:first-child {
    border-top: 1px solid #ddd;
}

.faq-item h3 {
    font-size: 1.05rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.faq-item p {
    color: #555;
    font-size: 0.97rem;
}

/* ---- Contact Form ---- */
.contact-section {
    background: #1a1a1a;
    color: #fff;
    padding: 70px 0;
}

.contact-section h2 {
    color: #fff;
}

.contact-section p {
    color: #bbb;
    margin-bottom: 32px;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 20px;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 14px;
}

.contact-info .big-phone {
    display: block;
    font-size: 1.9rem;
    font-weight: 700;
    color: #f07c00;
    margin: 18px 0;
    letter-spacing: 1px;
}

form .field {
    margin-bottom: 16px;
}

form label {
    display: block;
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 5px;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #444;
    background: #2a2a2a;
    color: #fff;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
    border-color: #f07c00;
}

form textarea {
    resize: vertical;
    min-height: 110px;
}

form select option {
    background: #2a2a2a;
}

/* ---- Footer ---- */
footer {
    background: #111;
    color: #888;
    text-align: center;
    padding: 28px 20px;
    font-size: 0.9rem;
}

footer strong {
    color: #ccc;
}

footer a {
    color: #f07c00;
}

/* ---- Responsive ---- */
@media (max-width: 680px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .hero-phone {
        font-size: 1.5rem;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 10px;
        display: block;
        text-align: center;
    }

    nav {
        display: none;
    }

    h2 {
        font-size: 1.5rem;
    }
}
