:root {
    --dark: #101828;
    --dark-2: #1f2937;
    --accent: #f4b400;
    --soft: #f8fafc;
    --text: #475467;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #111827;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

.topbar {
    background: var(--dark);
}

.topbar-link,
.site-footer a,
.footer-social a,
.social-icons a {
    color: rgba(255,255,255,0.9);
}

.topbar-link:hover,
.site-footer a:hover,
.footer-social a:hover,
.social-icons a:hover {
    color: var(--accent);
}

.site-nav {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(16,24,40,.06);
}

.navbar-brand {
    color: var(--dark);
}

.nav-link {
    color: #344054;
    font-weight: 600;
}

.hero-section {
    min-height: 90vh;
    position: relative;
    background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16,24,40,.88), rgba(16,24,40,.45));
}

.hero-card {
    background: rgba(255,255,255,.96);
    border-radius: 24px;
    overflow: hidden;
}

.stat-block {
    padding: 28px 24px;
    text-align: center;
}

.stat-block strong {
    display: block;
    font-size: 1.6rem;
    color: var(--dark);
}

.stat-block span {
    color: var(--text);
    font-size: .95rem;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .8rem;
    color: #b7791f;
    font-weight: 700;
}

.process-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #eaecf0;
}

.process-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.step-pill {
    display: inline-flex;
    align-items: center;
    padding: .45rem .85rem;
    background: rgba(244,180,0,.15);
    color: #9a6700;
    border-radius: 999px;
    font-weight: 700;
    font-size: .85rem;
}

.service-chip {
    border: 1px solid #eaecf0;
    border-radius: 16px;
    padding: 14px 16px;
    background: #fff;
    font-weight: 600;
    color: #344054;
    box-shadow: 0 8px 20px rgba(16,24,40,.04);
}

.service-chip i {
    color: #c58a00;
    margin-right: 8px;
}

.about-image-wrap img {
    width: 100%;
    object-fit: cover;
    min-height: 450px;
}

.about-box {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.08);
}

.about-list li {
    margin-bottom: 12px;
}

.contact-card {
    background: #fff;
    border: 1px solid #eaecf0;
}

.contact-info i {
    color: #c58a00;
    font-size: 1.25rem;
    margin-top: 4px;
}

.form-control,
.form-select {
    border-radius: 14px;
    padding: 14px 16px;
    border-color: #d0d5dd;
}

.form-control:focus,
.form-select:focus {
    border-color: #f4b400;
    box-shadow: 0 0 0 .2rem rgba(244,180,0,.15);
}

.site-footer {
    background: #0b1220;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 80px;
    }
}
