:root {
    --navy: #0b2545;
    --navy-dark: #041527;
    --navy-light: #134074;
    --gold: #ffb703;
    --gold-hover: #e0a100;
    --gold-subtle: #fff8e7;
    --slate-dark: #1d2d44;
    --gray-bg: #f4f6f9;
    --accent-blue: #0077b6;
    --accent-green: #2a9d8f;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

html {
    font-size: 15px;
    scroll-behavior: smooth;
    scroll-padding-top: 75px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: var(--font-body);
    color: #333333;
    background-color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
}

/* Helper Classes & Utility Styles */
.fs-7 { font-size: 0.875rem; }
.fs-8 { font-size: 0.775rem; }

.bg-navy { background-color: var(--navy) !important; }
.bg-dark-navy { background-color: var(--navy-dark) !important; }
.bg-navy-light { background-color: var(--navy-light) !important; }
.bg-gold { background-color: var(--gold) !important; }
.bg-gold-subtle { background-color: var(--gold-subtle) !important; }
.bg-slate { background-color: var(--slate-dark) !important; }
.bg-light-gray { background-color: var(--gray-bg) !important; }

.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }

.btn-warning {
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;
    color: #111111 !important;
    transition: all 0.3s ease;
}
.btn-warning:hover {
    background-color: var(--gold-hover) !important;
    border-color: var(--gold-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 183, 3, 0.4);
}

.btn-outline-warning {
    color: var(--gold) !important;
    border-color: var(--gold) !important;
    transition: all 0.3s ease;
}
.btn-outline-warning:hover {
    background-color: var(--gold) !important;
    color: #111111 !important;
    transform: translateY(-2px);
}

.btn-navy {
    background-color: var(--navy);
    color: #ffffff;
    border-color: var(--navy);
}
.btn-navy:hover {
    background-color: var(--navy-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 37, 69, 0.3);
}

/* TOPBAR */
.top-bar {
    background-color: var(--navy-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.top-bar a.hover-warning:hover {
    color: var(--gold) !important;
}

/* NAVBAR */
#mainNav {
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(255, 183, 3, 0.3);
}
.brand-icon-box {
    width: 44px;
    height: 44px;
}
.brand-title {
    font-size: 1.35rem;
    letter-spacing: 0.5px;
}
.brand-subtitle {
    font-size: 0.72rem;
    letter-spacing: 1px;
}
.navbar-dark .navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.2s ease;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

/* HERO SECTION CAROUSEL */
.hero-carousel .carousel-item {
    height: 85vh;
    min-height: 550px;
    max-height: 720px;
    position: relative;
}
.hero-carousel img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: brightness(0.65);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(4, 21, 39, 0.75) 0%, rgba(11, 37, 69, 0.85) 100%);
    display: flex;
    align-items: center;
}
.hero-badge {
    background: rgba(255, 183, 3, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    backdrop-filter: blur(4px);
}
.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
}
@media (min-width: 992px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

/* STATS COUNTER BAR */
.stats-bar {
    background-color: var(--navy);
    border-top: 4px solid var(--gold);
}
.stat-card {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 767px) {
    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 1rem;
    }
}

/* SECTION TITLES */
.section-title-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: var(--gold-subtle);
    color: var(--navy);
    border: 1px solid var(--gold);
    border-radius: 50rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-uppercase: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}
.section-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
}

/* CARDS & HOVER EFFECTS */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(11, 37, 69, 0.15) !important;
}

.service-card {
    border: 1px solid #e2e8f0;
    border-top: 4px solid var(--navy);
    background: #ffffff;
    height: 100%;
}
.service-card:hover {
    border-top-color: var(--gold);
}

.icon-bubble {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}
.service-card:hover .icon-bubble {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.08);
}

/* DIRECTOR PROFILE CARD */
.director-card {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    border-left: 6px solid var(--gold);
}
.credential-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

/* PROJECT CARD */
.project-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.project-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: var(--slate-dark);
}
.project-img-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}
.project-card:hover img {
    transform: scale(1.08);
}
.project-overlay-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--navy);
    color: var(--gold);
    padding: 0.35rem 0.75rem;
    border-radius: 20rem;
    font-size: 0.75rem;
    font-weight: 700;
}

/* CLIENT LOGO CARDS */
.client-logo-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.client-logo-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.client-logo-card h5 {
    color: var(--navy);
    font-weight: 800;
    margin: 0;
}

/* OFFICE LOCATIONS */
.office-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-top: 4px solid var(--gold);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-top-color: var(--navy);
}

/* FLOATING QUICK ACTIONS */
.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    text-decoration: none;
}
.float-btn:hover {
    transform: scale(1.12);
    color: #ffffff;
}
.float-call { background-color: var(--navy); }
.float-mail { background-color: var(--gold); color: #111111; }
.float-mail:hover { color: #111111; }

/* MODAL STYLING */
.modal-content {
    border-radius: 16px;
    border: none;
    overflow: hidden;
}
.modal-header {
    background-color: var(--navy);
    color: #ffffff;
    border-bottom: 3px solid var(--gold);
}