/* =========================================================
   UBARIKIWE MULTISERVICES
   PREMIUM CORPORATE COMING SOON WEBSITE
   ========================================================= */


/* =========================================================
   ROOT / BRAND SYSTEM
   ========================================================= */

:root {

    /* Primary Corporate Palette */
    --navy-950: #050B12;
    --navy-900: #07111D;
    --navy-800: #0B1F33;
    --navy-700: #102C45;

    /* Brand Accent */
    --gold: #C9A45C;
    --gold-light: #E3C47D;
    --gold-dark: #92733A;

    /* Supporting Accent */
    --blue: #2F6F95;
    --blue-light: #5C9FC2;

    /* Text */
    --white: #FFFFFF;
    --text: #E8EDF2;
    --text-muted: #91A0AF;
    --text-dark: #18232D;

    /* Borders */
    --border: rgba(255, 255, 255, 0.09);
    --border-gold: rgba(201, 164, 92, 0.35);

    /* Effects */
    --shadow: 0 25px 80px rgba(0, 0, 0, 0.35);

    /* Typography */
    --font-heading: "Manrope", sans-serif;
    --font-body: "DM Sans", sans-serif;

    /* Layout */
    --container: 1200px;

}


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--navy-950);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}


img {
    max-width: 100%;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   GLOBAL CONTAINER
   ========================================================= */

.container {
    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   PAGE LOADER
   ========================================================= */

.page-loader {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: var(--navy-950);

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;

}


.page-loader.loaded {

    opacity: 0;

    visibility: hidden;

}


.loader-logo {

    width: 180px;

    animation:
        loaderPulse 1.6s ease-in-out infinite;

}


.loader-logo img {

    width: 100%;

}


.loader-line {

    width: 120px;

    height: 2px;

    margin-top: 30px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );

    animation:
        loaderLine 1.4s ease-in-out infinite;

}


@keyframes loaderPulse {

    0%,
    100% {
        opacity: .5;
        transform: scale(.96);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

}


@keyframes loaderLine {

    0% {
        transform: scaleX(.2);
        opacity: .2;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }

    100% {
        transform: scaleX(.2);
        opacity: .2;
    }

}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 100;

    padding: 28px 0;

}


.nav-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.brand {

    display: flex;

    align-items: center;

}


.brand-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(47, 111, 149, .22));
}

.brand-name {
    display: flex;
    flex-direction: column;
    margin-left: 12px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.05;
}

.brand-name small {
    margin-top: 5px;
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .22em;
}


.main-nav {

    display: flex;

    align-items: center;

    gap: 42px;

}


.main-nav a {

    position: relative;

    color: rgba(255,255,255,.72);

    font-size: 14px;

    font-weight: 500;

    transition:
        color .3s ease;

}


.main-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 1px;

    background: var(--gold);

    transition:
        width .3s ease;

}


.main-nav a:hover {

    color: var(--white);

}


.main-nav a:hover::after {

    width: 100%;

}


/* =========================================================
   BUTTONS
   ========================================================= */

.primary-button {

    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 15px 20px 15px 25px;

    border: 1px solid var(--gold);

    border-radius: 4px;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    color: var(--navy-950);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .04em;

    text-transform: uppercase;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.primary-button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px
        rgba(201,164,92,.22);

}


.button-arrow {

    display: grid;

    place-items: center;

    width: 30px;

    height: 30px;

    border-radius: 50%;

    background: var(--navy-950);

    color: var(--gold-light);

    font-size: 17px;

}


.secondary-button {

    display: inline-flex;

    align-items: center;

    padding: 15px 5px;

    color: rgba(255,255,255,.75);

    font-size: 13px;

    font-weight: 600;

    letter-spacing: .03em;

    transition:
        color .3s ease;

}


.secondary-button:hover {

    color: var(--gold-light);

}


.nav-button {

    padding: 11px 20px;

    border: 1px solid var(--border-gold);

    color: var(--gold-light);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .06em;

    text-transform: uppercase;

    transition:
        background .3s ease,
        color .3s ease;

}


.nav-button:hover {

    background: var(--gold);

    color: var(--navy-950);

}


/* =========================================================
   HERO
   ========================================================= */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 75% 50%,
            rgba(47,111,149,.13),
            transparent 35%
        ),

        radial-gradient(
            circle at 15% 70%,
            rgba(201,164,92,.06),
            transparent 28%
        ),

        var(--navy-950);

}


/* subtle architectural grid */

.hero-grid {

    position: absolute;

    inset: 0;

    opacity: .18;

    background-image:

        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size:
        80px 80px;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent 85%
        );

}


/* ambient glows */

.hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;

}


.hero-glow-one {

    width: 500px;

    height: 500px;

    right: -150px;

    top: 10%;

    background:
        rgba(47,111,149,.12);

}


.hero-glow-two {

    width: 350px;

    height: 350px;

    left: -150px;

    bottom: -100px;

    background:
        rgba(201,164,92,.07);

}


.hero-container {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    gap: 70px;

    align-items: center;

    padding-top: 90px;

}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {

    max-width: 650px;

}


.eyebrow {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 28px;

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .2em;

}


.eyebrow-line {

    width: 38px;

    height: 1px;

    background: var(--gold);

}


.hero h1 {

    max-width: 700px;

    margin-bottom: 28px;

    font-family: var(--font-heading);

    font-size:
        clamp(48px, 6vw, 82px);

    line-height: 1.02;

    letter-spacing: -.055em;

    font-weight: 800;

    color: var(--white);

}


.hero h1 span {

    display: block;

    color: transparent;

    background:
        linear-gradient(
            100deg,
            var(--gold-light),
            var(--gold),
            #F0DCA6
        );

    -webkit-background-clip: text;

    background-clip: text;

}


.hero-description {

    max-width: 580px;

    margin-bottom: 25px;

    color: var(--text-muted);

    font-size: 17px;

    line-height: 1.8;

}


.hero-industries {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 35px;

    color: rgba(255,255,255,.75);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .08em;

    text-transform: uppercase;

}


.hero-industries .dot {

    width: 3px;

    height: 3px;

    border-radius: 50%;

    background: var(--gold);

}


.hero-actions {

    display: flex;

    align-items: center;

    gap: 28px;

    margin-bottom: 35px;

}


.launch-status {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--text-muted);

    font-size: 11px;

}


.status-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #7FAF84;

    box-shadow:
        0 0 12px
        rgba(127,175,132,.7);

}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {

    position: relative;

    min-height: 600px;

    display: grid;

    place-items: center;

}


.visual-ring {

    position: absolute;

    border: 1px solid
        rgba(201,164,92,.18);

    border-radius: 50%;

}


.ring-one {

    width: 500px;

    height: 500px;

}


.ring-two {

    width: 680px;

    height: 680px;

    border-color:
        rgba(47,111,149,.12);

}


.visual-card {

    position: relative;

    z-index: 3;

    width: min(390px, 70vw);

    aspect-ratio: 4 / 5;

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border: 1px solid
        rgba(201,164,92,.28);

    background:

        linear-gradient(
            145deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.015)
        );

    box-shadow:
        var(--shadow);

    backdrop-filter:
        blur(20px);

}


.visual-card::before {

    content: "";

    position: absolute;

    inset: 10px;

    border: 1px solid
        rgba(255,255,255,.045);

    pointer-events: none;

}


.card-top,
.card-bottom {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.card-label {

    color: var(--gold-light);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .2em;

}


.card-number {

    color: rgba(255,255,255,.3);

    font-size: 12px;

}


.visual-symbol {

    position: relative;

    z-index: 2;

    display: grid;

    place-items: center;

    padding: 35px;

}


.visual-symbol img {

    width: 210px;

    max-height: 220px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 20px 35px
            rgba(0,0,0,.4)
        );

}


.card-bottom {

    color: rgba(255,255,255,.45);

    font-size: 9px;

    letter-spacing: .25em;

}


.card-line {

    width: 70px;

    height: 1px;

    background: var(--gold);

}


/* =========================================================
   FLOATING CARDS
   ========================================================= */

.floating-card {

    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 14px 18px;

    border: 1px solid var(--border);

    background:
        rgba(7,17,29,.85);

    backdrop-filter:
        blur(16px);

    box-shadow:
        0 20px 45px
        rgba(0,0,0,.3);

}


.floating-card-one {

    top: 20%;

    right: -20px;

}


.floating-card-two {

    bottom: 18%;

    left: -15px;

}


.floating-icon {

    display: grid;

    place-items: center;

    width: 32px;

    height: 32px;

    border: 1px solid var(--border-gold);

    color: var(--gold);

}


.floating-card strong {

    display: block;

    color: var(--white);

    font-size: 11px;

    font-weight: 600;

}


.floating-card small {

    display: block;

    margin-top: 2px;

    color: var(--text-muted);

    font-size: 9px;

}


/* =========================================================
   SECTION COMMON
   ========================================================= */

.about-section,
.services-section,
.contact-section {

    position: relative;

    padding: 130px 0;

}


.section-heading {

    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 55px;

}


.section-number {

    color: var(--gold);

    font-family: var(--font-heading);

    font-size: 12px;

    font-weight: 700;

}


.section-label {

    color: var(--text-muted);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .2em;

}


.section-heading::after {

    content: "";

    width: 70px;

    height: 1px;

    margin-left: 5px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            transparent
        );

}


/* =========================================================
   ABOUT
   ========================================================= */

.about-section {

    background:
        linear-gradient(
            180deg,
            var(--navy-950),
            var(--navy-900)
        );

}


.about-grid {

    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    gap: 100px;

    align-items: start;

}


.about-grid h2,
.contact-grid h2 {

    font-family: var(--font-heading);

    font-size:
        clamp(38px, 4vw, 60px);

    line-height: 1.08;

    letter-spacing: -.045em;

    color: var(--white);

}


.about-grid h2 span,
.contact-grid h2 span {

    display: block;

    color: var(--gold);

}


.about-text {

    padding-top: 8px;

}


.about-text p {

    margin-bottom: 22px;

    color: var(--text-muted);

    font-size: 16px;

    line-height: 1.9;

}


/* =========================================================
   SERVICES
   ========================================================= */

.services-section {

    background: var(--navy-900);

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 1px;

    background:
        rgba(255,255,255,.08);

    border: 1px solid
        rgba(255,255,255,.08);

}


.service-card {

    position: relative;

    min-height: 330px;

    padding: 35px;

    background: var(--navy-900);

    transition:
        background .4s ease,
        transform .4s ease;

}


.service-card:hover {

    z-index: 2;

    background:
        linear-gradient(
            145deg,
            var(--navy-700),
            var(--navy-900)
        );

    transform:
        translateY(-6px);

}


.service-number {

    position: absolute;

    top: 30px;

    right: 30px;

    color: rgba(255,255,255,.2);

    font-size: 10px;

    font-weight: 700;

}


.service-icon {

    display: grid;

    place-items: center;

    width: 50px;

    height: 50px;

    margin-bottom: 70px;

    border: 1px solid
        var(--border-gold);

    color: var(--gold);

    font-size: 20px;

}


.service-card h3 {

    margin-bottom: 12px;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 21px;

}


.service-card p {

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.75;

}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {

    padding: 100px 0;

    background:
        var(--navy-950);

}


.cta-box {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;

    padding: 70px;

    overflow: hidden;

    border: 1px solid
        var(--border-gold);

    background:

        radial-gradient(
            circle at 90% 50%,
            rgba(201,164,92,.09),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            var(--navy-800),
            var(--navy-900)
        );

}


.cta-box::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    right: -150px;

    bottom: -180px;

    border-radius: 50%;

    border: 1px solid
        rgba(201,164,92,.12);

}


.cta-content {

    position: relative;

    z-index: 2;

    max-width: 680px;

}


.cta-label {

    display: block;

    margin-bottom: 18px;

    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .2em;

}


.cta-content h2 {

    margin-bottom: 18px;

    color: var(--white);

    font-family: var(--font-heading);

    font-size:
        clamp(35px, 4vw, 55px);

    line-height: 1.1;

    letter-spacing: -.04em;

}


.cta-content h2 span {

    color: var(--gold);

}


.cta-content p {

    max-width: 570px;

    color: var(--text-muted);

    font-size: 15px;

}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {

    background: var(--navy-900);

}


.contact-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    align-items: end;

}


.contact-grid .section-heading {

    margin-bottom: 35px;

}


.contact-details {

    padding-left: 40px;

    border-left:
        1px solid var(--border-gold);

}


.contact-details a {

    display: inline-block;

    margin-bottom: 20px;

    color: var(--gold-light);

    font-family: var(--font-heading);

    font-size: 22px;

    font-weight: 600;

    transition:
        color .3s ease;

}


.contact-details a:hover {

    color: var(--white);

}


.contact-details p {

    color: var(--text-muted);

    font-size: 14px;

    margin-bottom: 4px;

}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {

    padding: 30px 0;

    border-top:
        1px solid var(--border);

    background: var(--navy-950);

}


.footer-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.footer-brand img {

    width: 145px;

}


.site-footer p {

    color: var(--text-muted);

    font-size: 10px;

}


.footer-tagline {

    color: rgba(255,255,255,.35);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .18em;

}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1000px) {


    .container {

        width:
            min(
                calc(100% - 50px),
                var(--container)
            );

    }


    .main-nav {

        display: none;

    }


    .hero-container {

        grid-template-columns: 1fr;

        gap: 30px;

        padding-top: 130px;

    }


    .hero-content {

        max-width: 750px;

    }


    .hero-visual {

        min-height: 500px;

    }


    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .about-grid,
    .contact-grid {

        gap: 50px;

    }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 650px) {


    .container {

        width:
            calc(100% - 36px);

    }


    .site-header {

        padding: 20px 0;

    }


    .brand-logo {

        width: 145px;

    }


    .nav-button {

        padding: 9px 13px;

        font-size: 9px;

    }


    .hero {

        min-height: auto;

        padding-bottom: 80px;

    }


    .hero-container {

        padding-top: 125px;

    }


    .hero h1 {

        font-size:
            clamp(42px, 13vw, 60px);

    }


    .hero-description {

        font-size: 15px;

    }


    .hero-actions {

        align-items: flex-start;

        flex-direction: column;

        gap: 15px;

    }


    .hero-industries {

        gap: 8px;

        font-size: 9px;

    }


    .hero-visual {

        min-height: 440px;

    }


    .ring-one {

        width: 330px;

        height: 330px;

    }


    .ring-two {

        width: 450px;

        height: 450px;

    }


    .visual-card {

        width: 270px;

        padding: 22px;

    }


    .visual-symbol img {

        width: 150px;

    }


    .floating-card {

        padding: 10px 12px;

    }


    .floating-card-one {

        right: -5px;

        top: 12%;

    }


    .floating-card-two {

        left: -5px;

        bottom: 10%;

    }


    .about-section,
    .services-section,
    .contact-section {

        padding: 90px 0;

    }


    .about-grid,
    .contact-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .about-grid h2,
    .contact-grid h2 {

        font-size: 42px;

    }


    .services-grid {

        grid-template-columns: 1fr;

    }


    .service-card {

        min-height: 280px;

    }


    .cta-section {

        padding: 70px 0;

    }


    .cta-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 40px 28px;

        gap: 30px;

    }


    .contact-details {

        padding-left: 20px;

    }


    .contact-details a {

        font-size: 18px;

    }


    .footer-container {

        flex-direction: column;

        align-items: flex-start;

    }


}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior: auto !important;

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

    }

}