/* ===== Custom additions on top of style.css ===== */

:root {
    --accent: #F2A93B;
    --accent-dark: #D9911E;
}

/* Smooth in-page scrolling with offset for the sticky navbar */
html {
    scroll-behavior: smooth;
}

section[id], div[id] {
    scroll-margin-top: 100px;
}

/* Navbar now sits directly at the page top (no separate contact topbar),
   so it should always be fully visible rather than peeking up -100px. */
.sticky-top {
    top: 0 !important;
}

/* ===== Navbar: navy background matching the logo, compact proper-sized menu ===== */
.site-navbar {
    background: var(--primary);
}

.navbar .navbar-nav .nav-link {
    margin-right: 26px;
    padding: 24px 0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .01em;
    color: rgba(255, 255, 255, .82);
}

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

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
        color: rgba(255, 255, 255, .85);
    }

    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, .15);
    }
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    font-weight: 600;
}

.btn-accent:hover,
.btn-accent:focus {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--primary);
}

/* ===== Inquiry form submit status ===== */
.inquiry-form-status {
    font-size: 14.5px;
    font-weight: 500;
    min-height: 1px;
}

.inquiry-form-status--success {
    color: #1a7a3c;
}

.inquiry-form-status--error {
    color: #c0392b;
}

/* ===== Brand logo treatment ===== */
.navbar-logo {
    height: 104px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
}

@media (max-width: 991.98px) {
    .navbar-logo {
        height: 68px;
    }
}

.footer-logo {
    height: 130px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}

/* ===== Section / hero polish ===== */
.badge-pill {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
}

.lead-para {
    font-size: 17px;
    color: var(--secondary);
    line-height: 1.8;
}

.check-list li {
    color: var(--dark);
    font-size: 15.5px;
}

.check-list li i {
    font-size: 18px;
}

.bg-section {
    background: var(--light);
}

.mini-icon-badge {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-icon-badge svg {
    width: 30px;
    height: 30px;
}

/* ===== Vector illustrations ===== */
.illus-wrap {
    max-width: 380px;
    margin: 0 auto;
}

.illus-wrap-sm {
    max-width: 240px;
    margin: 0 auto;
}

.illus-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 18px 30px rgba(2, 6, 86, .15));
}

/* ===== Service grid mini-cards (one-page section grids) ===== */
.mini-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 34px 28px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
    transition: .35s;
}

.mini-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(2, 6, 86, .12);
}

.mini-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
}

.mini-card-icon svg {
    width: 100%;
    height: 100%;
}

.mini-card h5 {
    font-size: 18px;
}

.mini-card p {
    font-size: 14.5px;
    color: var(--secondary);
    line-height: 1.65;
}

.tag-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-pill {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 50px;
}

/* ===== Stats strip ===== */
.stats-strip {
    background: var(--primary);
}

.stats-strip .stat-num {
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
}

.stats-strip .stat-label {
    color: #C9CCEA;
    font-size: 14px;
    letter-spacing: .03em;
    text-transform: uppercase;
}

/* Footer column headings a touch tighter when 4 columns wrap */
.footer h4 {
    font-size: 18px;
}

.footer .btn.btn-link {
    font-size: 15px;
}
