body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #212121;
    color: #fff;
}

header {
    position: sticky;
    top: 0;
    background: #151515;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    padding: 0.5em 2em;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #ff9800;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2em;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.2s;
    padding: 0.5em 0.2em;
}

.nav-links a.active,
.nav-links a:hover {
    color: #ff9800;
}

.hero {
    padding: 5em 1em 4em 1em;
    background: linear-gradient(120deg, #ff9800 0%, #212121 70%);
    text-align: center;
}

.hero h1 {
    font-size: 2.8em;
    margin-bottom: 0.2em;
    color: #fff;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 1.2em;
    color: #fff8e1;
}

.cta-btn {
    display: inline-block;
    padding: 1em 2.5em;
    background: #ff9800;
    color: #212121;
    border-radius: 0.4em;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
    background: #fff;
    color: #ff9800;
}

.content-section {
    max-width: 900px;
    margin: 3em auto;
    padding: 2em;
    background: #292929;
    border-radius: 0.6em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.content-section h2 {
    color: #ff9800;
    margin-top: 0;
}

/* Our Services Card Boxes */
.service-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: center;
}

.service-card {
    background: #232323;
    border-radius: 0.7em;
    box-shadow: 0 0 12px rgba(255,152,0,0.08), 0 2px 12px rgba(0,0,0,0.12);
    padding: 2em 1.2em;
    flex: 1 1 330px;
    max-width: 330px;
    text-align: center;
    border-left: 6px solid #ff9800;
    position: relative;
    transition: transform 0.18s, box-shadow 0.18s;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 4px 24px rgba(255,152,0,0.21), 0 8px 32px rgba(0,0,0,0.14);
}

.service-card .card-icon {
    font-size: 2.4em;
    margin-bottom: 0.65em;
    color: #ff9800;
}

.service-card h3 {
    margin-top: 0.2em;
    color: #fff;
    font-size: 1.12em;
    font-weight: bold;
}

.service-card p {
    color: #ffe0b2;
    margin-top: 0.7em;
    font-size: 1em;
}

/* Why Choose Us Cards */
#why-choose h2 {
    text-align: center;
    margin-bottom: 2em;
    color: #ff9800;
}

.choose-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: center;
}

.choose-card {
    background: #232323;
    border-radius: 0.7em;
    box-shadow: 0 0 12px rgba(255,152,0,0.08), 0 2px 12px rgba(0,0,0,0.12);
    padding: 2em 1.2em;
    flex: 1 1 330px;
    max-width: 350px;
    text-align: center;
    border-left: 6px solid #ff9800;
    position: relative;
    transition: transform 0.18s, box-shadow 0.18s;
}

.choose-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 4px 24px rgba(255,152,0,0.21), 0 8px 32px rgba(0,0,0,0.14);
}

.card-icon {
    font-size: 2.4em;
    margin-bottom: 0.65em;
    color: #ff9800;
}

.choose-card h3 {
    margin-top: 0.2em;
    color: #fff;
    font-size: 1.14em;
    font-weight: bold;
}

.choose-card p {
    color: #ffe0b2;
    margin-top: 0.7em;
    font-size: 1em;
}

/* Contact - Highlight Email & Phone */
.contact-email {
    color: #ff9800;
    font-weight: bold;
    text-decoration: underline dotted;
    transition: color 0.18s;
}

.contact-email:hover {
    color: #fff;
    background: #ff9800;
    border-radius: 0.18em;
    padding: 0.1em 0.3em;
    text-decoration: none;
}

.contact-phone {
    color: #ff9800;
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-top: 1em;
}

.contact-form input,
.contact-form textarea {
    padding: 0.9em;
    border-radius: 0.3em;
    border: 1px solid #ffb74d;
    background: #222;
    color: #fff;
    font-size: 1em;
    resize: none;
}

.contact-form button {
    align-self: flex-start;
    background: #ff9800;
    color: #232323;
    font-weight: bold;
    font-size: 1em;
    padding: 0.8em 2em;
    border: none;
    border-radius: 0.3em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.contact-form button:hover {
    background: #fff;
    color: #ff9800;
}

/* Sticky Footer */
.sticky-footer {
    position: fixed;
    bottom: 0;
    width: 100vw;
    height: 38px;
    left: 0;
    background: #151515e6;
    color: #888;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.98em;
    z-index: 1100;
    gap: 0.5em;
    border-top: 1.5px solid #292929;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.14);
    backdrop-filter: blur(2px);
}

.site-credit-link {
    color: #ff9800;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.17s;
}

.site-credit-link:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-divider {
    color: #232323;
    font-size:1.1em;
    padding: 0 0.3em;
}

@media (max-width: 900px) {
    .choose-boxes,
    .service-boxes {
        flex-direction: column;
        gap: 1.5em;
        align-items: center;
    }
    .choose-card,
    .service-card {
        max-width: 95vw;
    }
}

@media (max-width: 800px) {
    .navbar {
        flex-direction: column;
        gap: 0.7em;
        padding: 0.7em 0.7em;
    }
    .content-section {
        padding: 1em;
    }
}

@media (max-width: 600px) {
    .sticky-footer {
        font-size: 0.92em;
        gap: 0.2em;
        height: 34px;
    }
}
