:root {
    --bg: #0b1d2a;
    /* --fg: #494d56; */
    --fg: #1b2a36;
    --brand: #3d5daa;
    --brand-dark: rgb(5, 54, 85);

    --secondary: #494d56;
    --accent: #ffcc00;
    --text: #000000;
    --nav-text-color: #999999;
    --white: #ffffff;

    --nav-text-color: #CCCCCC;
    --nav-text-color-hover: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
caption,
figcaption,
p {
    text-wrap: pretty;
}


a {
    text-decoration-thickness: 1px !important;
    text-underline-offset: .1em;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--brand);
}

/** Header & Navigations ============================================================ */
/* Header */
.site-header {
    width: 100%;
    z-index: 10;
    background-color: var(--brand);
}

.site-header-float {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
}



.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    height: 30px;
    width: auto;
}

.branding .site-title {
    font-weight: 700;
    color: var(--fg);
    text-decoration: none;
}

.primary-nav .menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-nav .menu a {
    text-decoration: none;
    color: var(--nav-text-color);
    font-weight: 600;
    font-size: 1rem;
}

.primary-nav .menu a:hover {
    color: var(--nav-text-color-hover);
}

.primary-nav-light .menu a {
    color: var(--nav-text-color);
}

.primary-nav-light .menu a:hover {
    color: var(--nav-text-color-hover);
}

.primary-nav .current-menu-item a,
.primary-nav-light .current-menu-item a {
    color: var(--nav-text-color-hover);
}


/* Slide-in menu (hidden by default) */
.primary-nav .menu {
    position: fixed;
    top: 0;
    right: -250px;
    /* off-screen */
    width: 250px;
    height: 100%;
    background: var(--white);
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 1rem;
    list-style: none;
    margin: 0;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
}

/* Active state: slide in */
.primary-nav .menu.active,
.primary-nav-light .menu.active {
    right: 0;
}

.primary-nav .menu.active a,
.primary-nav-light .menu.active a {
    color: var(--nav-text-color);
}

.primary-nav .menu.active a:hover,
.primary-nav-light .menu.active a:hover {
    color: var(--nav-text-color-hover) !important;
}

.primary-nav .menu.active .current-menu-item a,
.primary-nav-light .menu.active .current-menu-item a {
    color: var(--nav-text-color-hover);
}

/* Desktop: keep horizontal nav */
@media (min-width: 769px) {
    .nav-toggle {
        display: none;
    }

    .primary-nav .menu {
        position: static;
        flex-direction: row;
        background: none;
        height: auto;
        width: auto;
        transition: none;
    }
}

/** Admin Bar Adjustment ============================================================ */
body.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

/** Footer ============================================================ */
.site-footer {
    background: var(--brand);
    color: var(--white);
}

.footer-text-inner {
    padding: 40px 0;
    text-align: center;
    color: #CCCCCC;
}

.footer-inner {
    padding: 48px 0;
}

.footer-logo-text {
    font-weight: 700;
    color: #fff;
}

.footer-contact p {}

.footer-social {
    text-align: right;
}

.footer-social a {
    color: #c9d6e3;
    margin-right: 12px;
    text-decoration: none;
    font-weight: 600;
}

.footer-social a:hover {
    color: var(--accent);
}

.footer-links .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links .footer-menu a {
    color: #c9d6e3;
    text-decoration: none;
}

.footer-links .footer-menu a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 32px 0;
    background-color: var(--brand);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color:#FFFFFF;
}

.footer-bottom .container {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 20px;
}


.footer-contact{
    text-align: center;
    color: #FFFFFF;
    padding: 80px 0;
}

.footer-contact-heading {
    font-weight: 800;
    font-size: clamp(26px, 4.6vw, 40px);
    line-height: 1.1;
    margin-bottom: 24px;
}

.footer-contact-heading span {
    display: block;
}

.footer-contact-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
}

.footer-contact-cta {
    min-width: 220px;
    padding: 18px 48px;
    font-size: 15px;
    letter-spacing: 0.08em;
}





.services-bottom {
    text-align: center;
}

.services-bottom-heading {
    font-weight: 800;
    font-size: clamp(26px, 4.6vw, 40px);
    line-height: 1.1;
    margin-bottom: 24px;
}

.services-bottom-heading span {
    display: block;
}

.services-bottom-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
}

.services-bottom-cta {
    min-width: 220px;
    padding: 18px 48px;
    font-size: 15px;
    letter-spacing: 0.08em;
}


/* --------------------------------------------------------- */



.unreal-footer {
    color: white;
    background-color: var(--brand);
    /* background-image: url('assets/img/footer_bg.jpg'); */
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

.unreal-navbar {
    background-color: var(--brand);
    color: white;
}

.wp-block-site-title {
    display: none;
}


.unreal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--brand);
    background-color: var(--brand);
    text-transform: lowercase;
    text-decoration: none;
    color: #ffffff;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    padding: 15px 30px;
    border-radius: 99px;
}

.unreal-btn:hover {
    background-color: var(--brand-dark);
    /* transform: translateY(-2px);  */
}

.unreal-btn-large {
    padding: 20px 40px;
    font-size: 1.25rem;
}



.unreal-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-transform: lowercase;
    text-decoration: none;
    color: #ffffff;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    padding: 8px;
    border-radius: 99px;
}

.unreal-btn-outline:hover {
    background-color: #ffffff;
    color: var(--brand-dark);
    transform: translateY(-2px);
}

/* Service page reusable layout */
.page-service {
    background-color: #3d5daa;
    color: #f3f5fb;
    padding: 88px 20px 90px;
}

.page-service-inner {
    width: min(1080px, 100%);
    margin: 0 auto;
}

.page-service-hero {
    margin-bottom: 56px;
}

.page-service-title {
    margin: 0;
    color: #ece8df;
    font-size: clamp(40px, 8vw, 92px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.page-service-subtext {
    max-width: 700px;
    margin: 20px 0 0;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(242, 244, 252, 0.92);
}

.page-service-section {
    margin-top: 58px;
}

.page-service-section-title {
    margin: 0 0 16px;
    color: #ece8df;
    font-size: clamp(28px, 4.4vw, 46px);
    line-height: 1.08;
    font-weight: 800;
}

.page-service-lead {
    margin: 0;
    max-width: 920px;
    line-height: 1.75;
    color: rgba(242, 244, 252, 0.9);
}

.page-service-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 26px;
}

.page-service-card {
    border: 1px solid rgba(236, 240, 250, 0.35);
    background: rgba(255, 255, 255, 0.04);
    padding: 20px 18px;
}

.page-service-card-title {
    margin: 0 0 10px;
    color: #f2f4fa;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.1;
    font-weight: 700;
}

.page-service-card-copy {
    margin: 0;
    line-height: 1.75;
    color: rgba(243, 246, 254, 0.88);
}

.page-service-list {
    margin: 12px 0 0;
    padding-left: 20px;
    color: rgba(243, 246, 254, 0.9);
}

.page-service-list li {
    margin-bottom: 6px;
    line-height: 1.7;
}

.page-service-values {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.page-service-value-item {
    border-left: 3px solid rgba(255, 255, 255, 0.45);
    padding-left: 14px;
}

.page-service-value-title {
    margin: 0 0 4px;
    color: #f2f4fa;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.page-service-value-copy {
    margin: 0;
    color: rgba(243, 246, 254, 0.88);
    line-height: 1.7;
}

.page-service-cta {
    margin-top: 70px;
    border: 1px solid rgba(236, 240, 250, 0.35);
    background: rgba(255, 255, 255, 0.05);
    padding: 28px 22px;
    text-align: left;
}

.page-service-cta-title {
    margin: 0;
    color: #ece8df;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    font-weight: 800;
}

.page-service-cta-copy {
    margin: 10px 0 0;
    max-width: 700px;
    color: rgba(242, 244, 252, 0.9);
    line-height: 1.7;
}

.page-service-cta-button {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    padding: 12px 28px;
    color: #ffffff;
    text-decoration: none;
    text-transform: lowercase;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.page-service-cta-button:hover {
    background: #ffffff;
    color: #4157d8;
    transform: translateY(-2px);
}

@media (min-width: 900px) {
    .page-service {
        padding: 104px 28px 110px;
    }

    .page-service-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .page-service-values {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .page-service-cta {
        padding: 34px 30px;
    }
}