:root {
    --primary: #8f1d14;
    --primary-dark: #64120c;
    --accent: #d9a441;
    --dark: #171717;
    --cream: #f7f1e8;
    --text: #333333;
    --white: #ffffff;
    --border: #e3ddd5;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

a {
    color: var(--primary);
    transition: 0.25s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
}

.topbar {
    background: var(--primary);
    color: var(--white);
    font-size: 0.9rem;
}

.topbar a,
.topbar span {
    color: var(--white);
    text-decoration: none;
}

.navbar {
    background: var(--dark);
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: 0.3px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent);
    color: var(--dark);
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
    color: var(--accent);
}

.dropdown-menu {
    border: 0;
    border-radius: 0;
    padding: 0.55rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.dropdown-item {
    padding: 0.65rem 0.85rem;
    border-radius: 0.2rem;
}

.dropdown-item:hover {
    background: var(--cream);
    color: var(--primary);
}

.hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    color: var(--white);
    background:
        linear-gradient(rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.56)),
        url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
}

.hero h1,
.page-hero h1 {
    font-weight: 800;
    line-height: 1.1;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.page-hero {
    padding: 110px 0;
    color: var(--white);
    background:
        linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
        url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
}

.eyebrow {
    display: inline-block;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-pad {
    padding: 90px 0;
}

.bg-cream {
    background: var(--cream);
}

.content-wrap {
    max-width: 1180px;
}

.btn-brand {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 0;
    font-weight: 600;
    padding: 0.75rem 1.4rem;
}

.btn-brand:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-outline-brand {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 0;
    font-weight: 600;
}

.btn-outline-brand:hover {
    background: var(--primary);
    color: var(--white);
}

.service-card,
.quote-card,
.service-area-card,
.blog-card,
.contact-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.quote-card:hover,
.service-area-card:hover,
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.service-icon {
    color: var(--primary);
    font-size: 2rem;
}

.feature-img {
    width: 100%;
    min-height: 420px;
    border-radius: 0;
}

.img-cover {
    object-fit: cover;
}

.dark-band {
    background: var(--dark);
    color: var(--white);
}

.dark-band .stat {
    padding: 1.4rem;
    border-left: 3px solid var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

.quote-card,
.service-area-card {
    padding: 2rem;
}

.list-check {
    list-style: none;
    padding-left: 0;
}

.list-check li {
    margin-bottom: 0.9rem;
}

.list-check i {
    color: var(--primary);
    margin-right: 0.6rem;
}

.faq .accordion-item {
    border: 1px solid var(--border);
    border-radius: 0;
    margin-bottom: 0.85rem;
}

.faq .accordion-button {
    font-weight: 600;
    box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
    background: var(--cream);
    color: var(--primary);
}

.blog-card {
    border-radius: 0;
    overflow: hidden;
}

.blog-card .card-img-top {
    height: 230px;
    object-fit: cover;
    border-radius: 0;
}

.contact-form .form-control {
    min-height: 50px;
    border-radius: 0;
    border-color: #d5d5d5;
}

.contact-form textarea.form-control {
    min-height: 150px;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(143, 29, 20, 0.12);
}

.mini-cta {
    background: var(--primary);
    color: var(--white);
}

.footer {
    background: #101010;
    color: #c9c9c9;
}

.footer-title {
    color: var(--white);
    font-weight: 700;
}

.footer a {
    color: #c9c9c9;
    text-decoration: none;
}

.footer a:hover {
    color: var(--accent);
}

.contact-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

.contact-float:hover {
    background: var(--primary-dark);
    color: var(--white);
}

@media (max-width: 991.98px) {
    .hero {
        min-height: 560px;
    }

    .navbar-nav {
        padding-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .section-pad {
        padding: 65px 0;
    }

    .page-hero {
        padding: 80px 0;
    }

    .feature-img {
        min-height: 320px;
    }
}
