/* Design System for Polished Concrete CT */
:root {
    --primary-red: #BC0000;
    --accent-red: #E21E26;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #f8f8f8;
    --white: #ffffff;
    --text-color: #333333;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--heading-font);
    font-weight: 700;
}

p a {
    color: var(--primary-red);
}

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

.section {
    padding: 70px 0;
}

#services {
    padding: 0 0 70px;
}

.text-center {
    text-align: center;
}

/* Header */
header {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.phone-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-link:hover {
    color: var(--primary-red);
}

.cta-button {
    background: var(--primary-red);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: var(--dark-gray);
}

/* Navigation */
nav {
    background: var(--primary-red);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 15px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 2px 0;
    transition: var(--transition);
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    padding: 15px 25px;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

nav ul li a:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Hero */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('Epoxy-Industrial-Dupont.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero h1 {
    font-size: 3.6rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 30px;
    transition: var(--transition);
    border-bottom: 4px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom-color: var(--primary-red);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-red);
}

/* Why Choose Us */
.why-us {
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.feature {
    text-align: center;
}

.feature i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

/* Service Area */
.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.county-list h4 {
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.county-list ul {
    list-style: none;
}

.county-list ul li {
    padding: 5px 0;
    font-size: 0.9rem;
}

/* Jobber Form */
.jobber-section {
    background: var(--white);
    padding: 0px 0px 80px;
}

/* Footer */
footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-section h4 {
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}

.mobile-bottom-bar {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .area-grid {
        padding: 0px 15px;
    }

    .text-center {
        padding: 0px 15px;
    }

    nav {
        display: none;
    }

    .container {
        padding: 0 15px;
    }

    .section {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .header-info {
        display: none;
    }

    /* Hamburger Menu */
    .menu-toggle {
        display: flex;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--primary-red);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .service-card {
        padding: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 2000;
        padding: 10px;
        gap: 10px;
    }

    .mobile-bottom-bar a {
        flex: 1;
        text-align: center;
        padding: 12px;
        text-decoration: none;
        font-weight: 700;
        font-size: 0.9rem;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .mobile-bottom-bar .mobile-phone {
        background: var(--dark-gray);
        color: var(--white);
    }

    .mobile-bottom-bar .mobile-cta {
        background: var(--primary-red);
        color: var(--white);
    }

    body {
        padding-bottom: 70px;
        /* Space for fixed bar */
    }
}