:root {
    --prime-red: #b5121b;
    --prime-red-dark: #8f0d15;
    --prime-black: #0f0f11;
    --prime-gray: #1a1b1f;
    --prime-soft: #f5f5f5;
    --prime-text: #d9d9d9;
    --prime-border: rgba(255, 255, 255, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background: #ffffff;
    color: #1f1f1f;
}

.topbar {
    background: var(--prime-red);
    color: #fff;
    font-size: 14px;
}

.navbar-brand img {
    max-height: 84px;
    width: auto;
    display: block;
}

.nav-link {
    font-weight: 700;
    color: #222 !important;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--prime-red) !important;
}

.hero-section {
    position: relative;
}

.hero-slide {
    min-height: 82vh;
    display: flex;
    align-items: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,10,12,.92) 0%, rgba(10,10,12,.72) 45%, rgba(10,10,12,.35) 100%);
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-tag {
    color: #ff4a53;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: .08em;
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 800;
    line-height: .95;
    text-transform: uppercase;
    color: #fff;
}

.hero-subtitle {
    max-width: 650px;
    font-size: 1.15rem;
    color: #e6e6e6;
    margin-top: 1.25rem;
}

.btn-prime {
    background: var(--prime-red);
    border: 0;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 10px;
    transition: .25s ease;
}

.btn-prime:hover {
    background: var(--prime-red-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-prime {
    border: 1px solid rgba(255,255,255,.55);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 10px;
    transition: .25s ease;
}

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

.services-strip {
    position: relative;
    margin-top: -55px;
    z-index: 20;
}

.service-card {
    background: linear-gradient(180deg, #1b1b1f 0%, #111215 100%);
    border: 1px solid var(--prime-border);
    color: #fff;
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

.service-icon {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--prime-red);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: .65rem;
    color: #fff;
}

.service-card p {
    color: #d9d9d9;
}

.section-kicker {
    color: var(--prime-red);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.about-image {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0,0,0,.15);
}

.map-frame {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0,0,0,.15);
}

.contact-box {
    background: #111215;
    color: #fff;
    border-radius: 18px;
    padding: 32px;
    height: 100%;
}

.contact-box a {
    color: #fff;
    text-decoration: none;
}

.contact-box a:hover {
    color: #ff878d;
}

.contact-box .section-title,
.contact-box p,
.contact-box strong {
    color: #fff;
}

.form-control,
.form-select {
    min-height: 54px;
    border-radius: 12px;
}

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

footer {
    background: #0b0b0d;
    color: #d0d0d0;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 6%;
}

.bg-light {
    background-color: #f4f4f4 !important;
}

@media (max-width: 991px) {
    .navbar-brand img {
        max-height: 64px;
    }

    .hero-slide {
        min-height: 74vh;
    }

    .services-strip {
        margin-top: 0;
        padding-top: 24px;
    }

    .contact-box {
        padding: 24px;
    }
}

.chart-box {
    height: 300px;
    position: relative;
}