/**
 * Galaxy Chains — brand colors (logo red + dark blue)
 */
:root {
    --bs-breadcrumb-divider: "/";
    --galaxy-red: #c41e3a;
    --galaxy-blue: #1a2d5a;
    --galaxy-blue-light: #2a4080;
    --galaxy-gray: #f4f6f8;
    --galaxy-border: #e3e8ef;

    --primary-color: #1a2d5a;
    --accent-color: #c41e3a;
    --text-color: #2b3344;
    --dark-divider-color: rgba(255, 255, 255, 0.14);
}

/* ── Global Outfit font ── */
body,
h1, h2, h3, h4, h5, h6,
p, a, span, li, td, th,
input, textarea, select, button {
    font-family: 'Outfit', sans-serif !important;
}

/* Buttons */
.btn-default {
    background: var(--galaxy-red);
}

.btn-default:hover {
    background: var(--galaxy-blue);
}

.btn-default.btn-highlighted {
    color: var(--galaxy-red);
}

.btn-default.btn-highlighted:hover {
    color: var(--galaxy-blue);
}

.btn-default.btn-highlighted::after {
    background-color: var(--galaxy-red);
}

/* Section headings — blue text + red highlight spans */
.section-title h1,
.section-title h2,
.about-us .section-title h2,
.galaxy-section .section-title h2 {
    color: var(--galaxy-blue) !important;
}

.section-title h3 {
    color: var(--galaxy-blue) !important;
}

.section-title h1 span,
.section-title h2 span,
.section-title .heading-highlight,
.section-title h1 span .char,
.section-title h2 span .char,
.section-title .heading-highlight .char {
    color: var(--galaxy-red) !important;
}

/* Inline highlights in body copy */
.text-highlight,
.galaxy-about-intro .text-highlight {
    color: var(--galaxy-red);
    font-weight: 600;
}

.galaxy-hero .section-title h1,
.galaxy-hero .section-title h1 .char {
    color: #fff !important;
}

.galaxy-hero .section-title h1 .heading-highlight,
.galaxy-hero .section-title h1 .heading-highlight .char {
    color: var(--galaxy-red) !important;
}

.galaxy-section--dark .section-title h1,
.galaxy-section--dark .section-title h2,
.galaxy-section--dark .section-title h3 {
    color: #fff !important;
}

.galaxy-section--dark .section-title h2 span,
.galaxy-section--dark .section-title .heading-highlight {
    color: var(--galaxy-red) !important;
}

.galaxy-section--dark .section-title p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.galaxy-cta-section h2,
.galaxy-cta-section h2 span,
.galaxy-cta-section .heading-highlight {
    color: #fff !important;
}

.galaxy-section--dark .section-title h3::before,
.section-title h3::before {
    background: var(--galaxy-red);
    background-image: none;
    width: 28px;
    height: 4px;
    border-radius: 2px;
}

/* Header — white 40% at top, solid blue when sticky on scroll */
header.galaxy-header {
    position: relative;
    z-index: 100;
    width: 100%;
}

header.galaxy-header .header-sticky {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

header.galaxy-header .header-sticky .navbar {
    border-bottom: none;
}

header.galaxy-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #fff 0%, #e8eef7 15%, var(--galaxy-blue-light) 70%, var(--galaxy-blue) 100%);
    border-bottom: 1px solid rgba(26, 45, 90, 0.12);
    box-shadow: 0 4px 20px rgba(26, 45, 90, 0.15);
}

header.galaxy-header .main-menu > ul > li > a.nav-link {
    color: var(--galaxy-blue);
}

header.galaxy-header .header-sticky.active .main-menu > ul > li > a.nav-link {
    color: var(--white-color);
}

header.galaxy-header .header-sticky.active .main-menu > ul > li > a.nav-link:hover {
    color: var(--galaxy-red);
}

header.galaxy-header .main-menu ul li.submenu > a.nav-link::after,
header.galaxy-header .main-menu ul li.submenu > a::after {
    color: inherit;
}

.main-footer {
    background: var(--galaxy-blue);
}

.main-footer .footer-logo img {
    max-height: 78px;
    width: auto;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--galaxy-red);
}

.main-menu ul ul {
    background-color: var(--galaxy-blue);
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--galaxy-red) !important;
}

/* Links & accents */
a:hover {
    color: var(--galaxy-red);
}

.footer-links ul li:hover {
    color: var(--galaxy-red);
}

.main-footer .footer-social-links ul li a i {
    color: var(--galaxy-red);
    line-height: 1;
}

.main-footer .footer-social-links ul li a:hover {
    background: var(--galaxy-red);
}

.main-footer .footer-social-links ul li a:hover i {
    color: #fff;
}

.footer-contact-item:hover .icon-box {
    background: var(--galaxy-red);
}

/* Forms, pagination, misc UI */
.form-control:focus,
input:focus,
textarea:focus,
select:focus {
    border-color: var(--galaxy-red);
}

.post-btn,
.readmore-btn {
    color: var(--galaxy-red);
}

.post-btn:hover,
.readmore-btn:hover {
    color: var(--galaxy-blue);
}

/* SlickNav mobile menu */
.slicknav_btn {
    background: var(--galaxy-blue);
}

.slicknav_menu {
    background: var(--galaxy-blue);
}

.slicknav_nav a:hover {
    background: var(--galaxy-red);
}

/* Preloader */
.preloader {
    background-color: var(--galaxy-blue);
}

header.galaxy-header .header-sticky {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

@media (max-width: 991px) {
    header.galaxy-header .header-sticky,
    header.galaxy-header .header-sticky.active {
        background: #ffffff !important;
        background-image: none !important;
        border-bottom: 1px solid rgba(26, 45, 90, 0.1);
        box-shadow: 0 2px 10px rgba(26, 45, 90, 0.08);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    header.galaxy-header .header-sticky.active .main-menu > ul > li > a.nav-link {
        color: var(--galaxy-blue);
    }
}

.preloader .loading {
    border-color: transparent rgba(255, 255, 255, 0.35) transparent rgba(255, 255, 255, 0.9);
}

/* Page header — breadcrumb colors & spacing (overrides Bootstrap link blue) */
.page-header-box .galaxy-breadcrumb .breadcrumb-item,
.page-header-box .galaxy-breadcrumb .breadcrumb-item a,
.page-header-box .galaxy-breadcrumb .breadcrumb-item.active {
    color: #fff !important;
}

.page-header-box .galaxy-breadcrumb .breadcrumb-item a:hover {
    color: var(--galaxy-red) !important;
}

.page-header-box .galaxy-breadcrumb .galaxy-breadcrumb__sep {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 300;
}

.page-header-box .galaxy-breadcrumb .breadcrumb-item.active {
    font-weight: 600;
}

/* Floating WhatsApp inquiry button */
.galaxy-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    background: #25d366;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.galaxy-whatsapp-float:hover {
    background: #1ebe57;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
}

.galaxy-whatsapp-float i {
    font-size: 1.75rem;
    line-height: 1;
}

.galaxy-whatsapp-float__label {
    display: none;
}

@media (max-width: 575px) {
    .galaxy-whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 52px;
        height: 52px;
    }
}
