/* ======================== BANNER (Dynamic) ======================== */
.banner {
    position: relative;
    height: 64vh;
    min-height: 560px;
    overflow: hidden;

    display: grid !important;
    place-items: center !important;

    isolation: isolate;
    color: #fff;
}

.banner-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;

    z-index: 1000 !important;
    margin-top: 0 !important;
}

.banner-inner * {
    color: #fff !important;
    opacity: 1 !important;
    z-index: 1000 !important;
}



/* ================= SLIDES ================= */
.banner-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;

    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: -3;
}

.banner-slide.active {
    opacity: 1;
    z-index: -1;
}

/* ================= OVERLAYS ================= */
.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, .55) 5%, rgba(0, 0, 0, .35) 30%, rgba(0, 0, 0, .4) 55%, rgba(0, 0, 0, .55) 100%),
        radial-gradient(1200px 200px at 50% 95%, rgba(242, 194, 0, .25), transparent 60%);
    z-index: -2;
}

/* ===========================================
   CENTER CONTENT 
=========================================== */
.banner-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;

    z-index: 10;
    max-width: var(--maxw);
    padding: 0 20px;

    margin-top: -40px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-weight: 500;
    color: #fff;
    background: rgba(0, 0, 0, .35);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 14px;
}

/* MAIN TITLE */
.title {
    font-family: "Playfair Display", serif;
    font-weight: 800;
    font-size: 70px;
    line-height: 1.1;
    margin: 4px 0 12px;
    text-shadow: 0 12px 40px rgba(0, 0, 0, .45);
}

/* GOLD SLOGAN IMAGE */
.slogan-img {
    height: 65px;
    margin: 10px auto 10px;
    display: block;
}

/* CTA BUTTON */
.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1659B7;
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 18px;
    margin-top: 10px;
    box-shadow: 0 12px 32px rgba(8, 87, 139, .5);
    transition: 0.25s ease;
}

.cta:hover {
    background: #0e4b8e;
    transform: translateY(-2px);
}

.cta:active {
    transform: translateY(0);
    opacity: .9;
}

/* ======================== ARROWS ======================== */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: 0.22s ease;
    z-index: 50;
}

.arrow svg {
    width: 18px;
    height: 18px;
    opacity: 0.85;
    transition: 0.22s ease;
}

.arrow::before,
.arrow::after {
    content: "" !important;
    display: none !important;
}

.arrow:hover {
    background: rgba(255, 255, 255, 0.20);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-50%) scale(1.12);
}

.arrow:hover svg {
    opacity: 1;
}

.arrow.left {
    left: 30px;
}

.arrow.right {
    right: 30px;
}

.arrow,
.arrow.left,
.arrow.right {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, .35) !important;
    background: rgba(0, 0, 0, .25) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.arrow::before,
.arrow::after {
    content: none !important;
    background: none !important;
    border: none !important;
}



/* ======================== SERVICES ======================== */
.services {
    position: relative;
    margin-top: -84px;
    padding: 0 20px 56px;
}

.grid {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width:1100px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services {
        margin-top: -64px;
    }
}

@media (max-width:640px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .services {
        margin-top: -48px;
    }
}

.service {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    min-height: 300px;
    background: #000;
    color: #fff;
    box-shadow: var(--news-shadow);
    transition: 0.15s ease;
}

.service img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.05);
    transform: scale(1.02);
}

.service::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, .72) 8%, rgba(0, 0, 0, .5) 50%, rgba(0, 0, 0, .15) 100%),
        linear-gradient(to bottom, rgba(242, 194, 0, .18), transparent 40%);
}

.service .label {
    position: absolute;
    inset: auto 0 0 0;
    padding: 50px;
    z-index: 2;
    text-align: center;
}

.service h3 {
    margin: 0 0 10px;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
}

.service p {
    margin: 0;
    color: #e8e8e8;
    opacity: .95;
    font-size: 14px;
}

.service:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(8, 87, 139, .55);
}

.service .arrow-btn {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .5);
    border: 2px solid rgba(255, 255, 255, .7);
    backdrop-filter: blur(4px);
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    z-index: 3;
    transition: 0.15s ease;
}

.service .arrow-btn:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, .6);
}

@media (max-width: 980px) {

    .page-banner {
        height: auto;
        padding: 60px 0;
    }

    .banner-content {
        margin-left: 0;
        max-width: 100%;
        padding: 0 16px;
        text-align: center;
    }

    .breadcrumb {
        justify-content: center;
        flex-wrap: wrap;
    }

    .banner-content h1 {
        font-size: 28px;
    }
}

/* =========================================
   SUB PAGE CONTENT STACK
   ========================================= */
@media (max-width: 980px) {

    .two-column {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 40px;
    }

    .left-col {
        order: 1;
    }

    .right-col {
        order: 2;
    }
}

/* =========================================
   FOOTER + CTA : MOBILE
   ========================================= */
@media (max-width: 980px) {

    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .text-right {
        text-align: center;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .footer-social,
    .worktime {
        justify-content: center;
    }
}