* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f7f7;
    color: #1b1b1b;
}

.site-header {
    background: #ffffff;
    border-bottom: 5px solid #f6cf3f;
    padding: 12px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    height: 125px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #111111;
    text-decoration: none;
    font-weight: 700;
    font-size: 25px;
}

.nav-links a:hover {
    color: #d71920;
}

.call-button {
    background: #d71920;
    color: white;
    padding: 13px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
}

.hero {
    min-height: 82vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
        radial-gradient(circle at top left, #f6cf3f, #111111 55%);
    display: flex;
    align-items: center;
    padding: 70px 8%;
    color: white;
}

.hero-content {
    max-width: 850px;
}

.eyebrow,
.section-tag {
    color: #f6cf3f;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.05;
    margin: 0 0 20px;
}

.hero-text {
    font-size: 22px;
    line-height: 1.55;
    max-width: 760px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    display: inline-block;
    padding: 15px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
}

.primary-button {
    background: #d71920;
    color: white;
}

.secondary-button {
    background: #f6cf3f;
    color: #111111;
}

.section {
    padding: 70px 8%;
}

.section-heading {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.section-heading h2,
.two-column h2,
.contact-box h2 {
    font-size: 40px;
    margin: 0 0 16px;
}

.section-heading p,
.two-column p,
.info-card p,
.service-card p,
.emergency-box p,
.contact-box p {
    font-size: 18px;
    line-height: 1.6;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.info-card,
.service-card,
.emergency-box,
.contact-box {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.info-card h3,
.service-card h3,
.emergency-box h3 {
    font-size: 26px;
    margin-top: 0;
}

.highlight-card {
    border-top: 8px solid #f6cf3f;
}

.red-card {
    border-top: 8px solid #d71920;
}

.info-card ul,
.red-card ul {
    padding-left: 22px;
}

.info-card li,
.red-card li {
    margin-bottom: 10px;
    font-size: 17px;
}

.dark-section {
    background: #111111;
    color: white;
}

.light p,
.light h2 {
    color: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    border-top: 6px solid #f6cf3f;
    color: #111111;
}

.service-card h3 {
    color: #d71920;
}

.emergency-section {
    background: linear-gradient(135deg, #111111, #2c0003);
    color: white;
}

.emergency-box {
    max-width: 900px;
    margin: auto;
    color: #111111;
    border-left: 10px solid #d71920;
}

.contact-section {
    background: #f6cf3f;
    text-align: center;
}

.contact-box {
    max-width: 700px;
    margin: auto;
}

.contact-logo {
    max-width: 260px;
    width: 100%;
    margin-bottom: 20px;
}

.big-phone {
    display: inline-block;
    margin-top: 18px;
    font-size: 32px;
    color: white;
    background: #d71920;
    padding: 16px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 900;
}

footer {
    background: #111111;
    color: white;
    text-align: center;
    padding: 22px;
}

@media (max-width: 900px) {
    .site-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .nav-links {
        justify-content: center;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-text {
        font-size: 19px;
    }

    .two-column,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        height: 105px;
    }
}
.photo-placeholder {
    min-height: 280px;
    background: linear-gradient(135deg, #111111, #d71920);
    border: 4px solid #f6cf3f;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f6cf3f;
    font-size: 26px;
    font-weight: 900;
    text-align: center;
    padding: 30px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}
