:root {
    --brand-blue: #002060;       /* Exact deep blue used in image top bar */
    --brand-green: #0a8f67;      /* Clean emerald green shade for primary elements */
    --btn-blue-hero: #002060;    /* Mid-tone slate blue option */
}

/* TOP BAR SPECIFICS */
.top-bar {
    background-color: var(--brand-blue);
    font-size: 0.9rem;
}

/* NAVIGATION CONFIG */
.nav-link.active-line {
    color: var(--brand-green) !important;
    border-bottom: 2px solid var(--brand-green);
}
.btn-nav-catalog {
    background-color: var(--brand-green);
    border: none;
}
.btn-nav-catalog:hover {
    background-color: #087353;
}

/* Dropdown Item Custom Micro-Styling */
.dropdown-menu {
    border-top: 3px solid var(--brand-green) !important;
    border-radius: 0 0 8px 8px;
}

.dropdown-item {
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--brand-blue-light);
    color: var(--brand-green);
    padding-left: 1.25rem; /* Creates a clean nudge effect on hover */
}

/* HERO TEXTURE BACKGROUND CONTAINER */
.hero-bg-section {
    min-height: 75vh;
    background-image: url('https://images.unsplash.com/photo-1620799140408-edc6dcb6d633?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}
.hero-media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 60, 93, 0.85) 0%, rgba(10, 143, 103, 0.6) 100%);
    z-index: 1;
}
.header-divider-accent {
    width: 120px;
    height: 3px;
    background-color: var(--brand-green);
}
.btn-hero-green {
    background-color: var(--brand-green);
    color: white;
    border: none;
}
.btn-hero-green:hover {
    background-color: #087353;
    color: white;
}
.btn-hero-blue {
    background-color: var(--btn-blue-hero);
    color: white;
    border: none;
}
.btn-hero-blue:hover {
    background-color: #002060;
    color: white;
}
.z-2 {
    z-index: 2;
}

/* WHY CHOOSE US CUSTOM UI ELEMENTS */
.text-accent {
    color: #2dd4bf !important; /* Mint green accent */
}

.icon-box-accent {
    width: 60px;
    height: 60px;
    background-color: rgba(45, 212, 191, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(45, 212, 191, 0.2);
}

.why-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(45, 212, 191, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.transition-all {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* CORPORATE BUSINESS FOOTER UI */
.bg-navy {
    background-color: #0b1329; /* Ultra-deep corporate dark blue */
}

.footer-logo {
    font-size: 1.4rem;
    letter-spacing: 1.5px;
}

.text-accent {
    color: #2dd4bf !important; /* Unified mint green token */
}

.border-start-accent {
    border-left: 2px solid var(--brand-green);
}

.text-muted {
    color: #94a3b8 !important; /* High contrast clean grey */
}

/* Accreditation Token Tags */
.badge-corporate {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 6px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    text-uppercase: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

/* Link Actions */
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #2dd4bf;
    padding-left: 4px;
}

.footer-social-tray a {
    font-size: 1.05rem;
    transition: color 0.2s ease;
}

.footer-social-tray a:hover {
    color: #2dd4bf !important;
}

/* Clean divider opacity refinement */
.opacity-10 {
    opacity: 0.1 !important;
}

/* CONTACT MAP CONFIGURATION */
.map-container iframe {
    filter: grayscale(30%) contrast(110%) saturate(90%); /* Desaturates extreme bright blues/yellows */
    transition: filter 0.4s ease;
}

.map-container iframe:hover {
    filter: grayscale(0%) contrast(100%) saturate(100%); /* Returns to full color context on interaction */
}

/* Ensure the position absolute utility components clear content stacking levels */
.z-3 {
    z-index: 3;
}