/* ==========================================================================
   Skyrun Project Management Services — brand layer
   Loaded after style.css / responsive.css. Palette is taken from the logo:
   deep navy #0C2448 · royal navy #183C6C · sky blue #2F6DB5 · gold #B8862B
   (theme hex values in style.css were remapped to this palette at build time)
   ========================================================================== */
:root {
    --uniqo-primary: #B8862B;       /* logo gold */
    --uniqo-secondary: #183C6C;     /* logo royal navy */
    --uniqo-black: #0C2448;         /* logo deep navy */
    --uniqo-grey: #D8DEE8;
    --uniqo-light-brown: #F8EFDD;
    --uniqo-light-orange: #F6F0E4;
    --uniqo-light-black: #1E2F4A;
    --uniqo-light-green: #CCD9EA;
    --uniqo-dark-text: #22324A;
    --uniqo-light-text: #5A6678;
    --uniqo-light: #ffffff;
    --skyrun-sky: #2F6DB5;
    --skyrun-gold-soft: #E7C98B;
}

/* ---------- Logo: transparent light version (logo-light.png) for the dark header */
.main-menu-logo a { display: inline-flex; align-items: center; }
.skyrun-logo {
    height: 84px;
    width: auto;
    display: block;
}
.header-two .main-menu-logo img,
.main-menu-logo img { margin-left: 0; }
.sticky-fixed .skyrun-logo { height: 64px; }
.preloader { background-color: #0C2448; }
.preloader .loading-image img {
    width: 170px;
    height: auto;
    animation: skyrun-preload 1.4s ease-out both;
}
@keyframes skyrun-preload {
    0%   { opacity: 0; transform: translateY(14px) scale(0.96); }
    60%  { opacity: 1; }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- Header menu: gold underline for the active top-level item */
.header-two ul.main-menu-list > li::after { background-color: var(--uniqo-primary); }
.header-two ul.main-menu-list li ul li.active a { color: var(--uniqo-primary); }
.mobile-menu-list li.active > a { color: var(--uniqo-primary); }

/* ---------- Page header: navy wash so white text stays readable on any photo */
.page-header-section { position: relative; background-size: cover; background-position: center; }
.page-header-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(12, 36, 72, 0.88) 0%, rgba(24, 60, 108, 0.62) 55%, rgba(12, 36, 72, 0.35) 100%);
    pointer-events: none;
}
.page-header-section > .container { position: relative; z-index: 1; }

/* ---------- Contact page */
.contact-info ul { padding-right: 0; }
.skyrun-contact-icon {
    flex: 0 0 auto;
    width: 24px;
    display: inline-flex;
    justify-content: center;
    color: var(--uniqo-dark-text);
    font-size: 22px;
    line-height: 1;
    padding-top: 2px;
}
.contact-form {
    background-color: #F4F6FA;
    margin-left: 0;
}
.contact-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--uniqo-black);
    margin-bottom: 6px;
}
.contact-form .form-control {
    color: var(--uniqo-dark-text);
    border-bottom-color: #B9C3D3;
}
.contact-form .form-control:focus {
    box-shadow: none;
    border-bottom-color: var(--uniqo-secondary);
}
.contact-form select.form-control {
    appearance: auto;
    cursor: pointer;
}
.contact-form textarea.form-control { margin-bottom: 30px; resize: vertical; }
.contact-form .btn-primary:hover {
    background-color: var(--uniqo-black);
    color: var(--uniqo-light);
}
.skyrun-hp {
    position: absolute !important;
    left: -10000px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skyrun-alert {
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.5;
}
.skyrun-alert-success { background: #E6F3EC; color: #135C36; border-left: 4px solid #1F8A52; }
.skyrun-alert-error   { background: #FBEAEA; color: #8A1C1C; border-left: 4px solid #C0392B; }

.skyrun-map { line-height: 0; }
.skyrun-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    filter: grayscale(0.25) contrast(1.05);
}

/* ---------- Footer bottom bar */
.skyrun-copyright {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 30px;
    padding: 22px 0 26px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
}
.skyrun-copyright p { margin: 0; }

/* ---------- 404 */
.skyrun-404 { padding: 140px 0; text-align: center; }
.skyrun-404 h2 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 16px; }
.skyrun-404 p { max-width: 520px; margin: 0 auto 30px; }

/* ---------- Accessibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--skyrun-sky);
    outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .wow { visibility: visible !important; }
}

/* ---------- Responsive */
@media (max-width: 991px) {
    .contact-form { margin-top: 40px; padding: 34px 26px; clip-path: none; }
    .contact-section { padding: 90px 0; }
    .skyrun-logo { height: 70px; }
}
@media (max-width: 575px) {
    .skyrun-copyright { flex-direction: column; }
    .skyrun-map iframe { height: 320px; }
}

/* ---------- Sections whose decorative theme images were never recovered */
.banner-section-two { background-color: var(--uniqo-black); }
.work-section-two { background-image: none; }
.cta-section-two::after {
    background-image: radial-gradient(circle at 85% 20%, rgba(184, 134, 43, 0.18), transparent 45%),
                      radial-gradient(circle at 10% 90%, rgba(47, 109, 181, 0.22), transparent 50%);
    background-size: cover;
}
.why-choose-section-six {
    background: linear-gradient(180deg, rgba(12, 36, 72, 0.72) 0%, rgba(12, 36, 72, 0.9) 100%),
                url(../images/banners/careers-page-bg.jpg) center / cover no-repeat;
}

/* ---------- Home "About" image: keep inside its column (theme expects a pre-cut image) */
.about-left-one { height: auto; }
.about-left-one img {
    position: relative;
    left: auto;
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: 20px;
}
@media (max-width: 1199px) { .about-left-one img { height: 520px; } }
@media (max-width: 991px)  { .about-left-one img { height: 420px; margin-bottom: 40px; } }
@media (max-width: 575px)  { .about-left-one img { height: 320px; } }

/* ---------- Footer contact icons: never squash with long text */
.footer-about-list-two li span { flex: 0 0 auto; }

/* ---------- About page hero: navy wash for text legibility */
.banner-section-two::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(12, 36, 72, 0.85) 0%, rgba(12, 36, 72, 0.45) 60%, rgba(12, 36, 72, 0.2) 100%);
    pointer-events: none;
}
.banner-section-two > .container { position: relative; z-index: 1; }

@media (max-width: 575px) {
    .skyrun-logo { height: 58px; }
}

/* ---------- Homepage hero slider (theme "banner one" + Slick) */
.skyrun-hero .banner-slide-item-one {
    padding: 240px 0 190px;
    min-height: 760px;
    display: flex !important;
    align-items: center;
}
.skyrun-hero .banner-slide-item-one::after {
    background: linear-gradient(100deg, rgba(12, 36, 72, 0.9) 0%, rgba(12, 36, 72, 0.6) 55%, rgba(12, 36, 72, 0.25) 100%);
}
.skyrun-hero .banner-slide-item-one > .container { position: relative; z-index: 1; }
.skyrun-hero .heading-box { max-width: 720px; }
.skyrun-hero .banner-sub-title-one { padding-bottom: 40px; margin-bottom: 22px; }
.skyrun-hero .banner-sub-title-one::after { background-color: var(--uniqo-primary); width: 2px; }
.skyrun-hero .banner-sub-title-one h2 {
    font-family: var(--uniqo-body-font);
    font-size: 18px;
    font-weight: 500;
    color: var(--skyrun-gold-soft);
}
.skyrun-hero h1.heading-title,
.skyrun-hero h2.heading-title {
    font-size: clamp(40px, 6vw, 76px);
    color: var(--uniqo-light);
    line-height: 1.08;
    margin-bottom: 26px;
}
.skyrun-hero p.heading-details { max-width: 560px; font-size: 18px; line-height: 1.6; opacity: 0.92; }
/* before Slick initialises, show only the first slide (no stacked-slide flash) */
.banner-silder-one:not(.slick-initialized) .banner-slide-item-one:not(:first-child) { display: none !important; }
.skyrun-hero ul.slick-dots { right: auto; left: 50%; transform: translateX(-50%); bottom: 70px; }
.skyrun-hero ul.slick-dots li button { cursor: pointer; }
.skyrun-hero ul.slick-dots li.slick-active button { background-color: var(--uniqo-primary); width: 56px; }
.skyrun-hero #slider-info { bottom: 62px; right: 60px; margin: 0; font-size: 15px; opacity: 0.85; }
@media (max-width: 991px) {
    .skyrun-hero .banner-slide-item-one { padding: 190px 0 150px; min-height: 620px; }
    .skyrun-hero #slider-info { display: none; }
    .skyrun-hero ul.slick-dots { bottom: 50px; }
}
@media (max-width: 575px) {
    .skyrun-hero .banner-slide-item-one { padding: 160px 0 120px; min-height: 560px; }
    .skyrun-hero p.heading-details { font-size: 16px; }
}
