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

html,
body {
  margin: 0;
  padding: 0;
}



/* =========================================
   PREMIUM VIRTUE KONSULT NAVBAR
========================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 92px;
    z-index: 9999;

    background: transparent;

    transition:
        background 0.4s ease,
        height 0.4s ease,
        box-shadow 0.4s ease,
        backdrop-filter 0.4s ease;
}


/* SCROLLED STATE */

.site-header.scrolled {
    height: 76px;

    background: rgba(12, 18, 16, 0.94);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.12);
}


/* CONTAINER */

.nav-container {
    width: min(1400px, 92%);

    height: 100%;

    margin: 0 auto;

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

    gap: 40px;
}


/* =========================================
   LOGO
========================================= */

.nav-brand {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}


.nav-logo {
    width: 150px;
    height: auto;

    display: block;

    object-fit: contain;

    transition: transform 0.3s ease;
}


.nav-brand:hover .nav-logo {
    transform: translateY(-1px);
}


/* =========================================
   MAIN NAV
========================================= */
.nav-actions a {
    background-color: #ffae00;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    align-items: center;

    gap: 6px;

    margin-left: auto;
}


/* NAV LINKS */

.nav-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 15px;

    border: none;
    background: transparent;

    color: #ffffff;

    font-family: inherit;
    font-size: 13px;
    font-weight: 500;

    letter-spacing: 0.02em;

    text-decoration: none;

    cursor: pointer;

    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}


.nav-link::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 5px;

    height: 1px;

    background: #ffffff;

    transform: scaleX(0);
    transform-origin: right;

    transition: transform 0.35s ease;
}


.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}


.nav-link:hover {
    color: rgba(255, 255, 255, 0.75);
}


/* DROPDOWN CHEVRON */

.dropdown-trigger i {
    font-size: 9px;

    transition: transform 0.3s ease;
}


.nav-dropdown:hover .dropdown-trigger i,
.nav-dropdown.open .dropdown-trigger i {
    transform: rotate(180deg);
}


/* =========================================
   DROPDOWN
========================================= */

.nav-dropdown {
    position: relative;
}


.dropdown-menu {
    position: static;
    width: 100%;
    display: none;
    margin: 0;
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
}

.nav-dropdown.open .dropdown-menu {
    display: block;
    transform: none;
}


.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;


}


/* DROPDOWN POINTER */

.dropdown-menu::before {
    content: "";

    position: absolute;

    top: -6px;
    left: 50%;

    width: 12px;
    height: 12px;

    background: #ffffff;

    transform: translateX(-50%) rotate(45deg);

    border-left: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}


/* DROPDOWN HEADING */

.dropdown-heading {
    padding: 20px 20px 14px;

    border-bottom: 1px solid #eeeeee;
}


.dropdown-heading span {
    display: block;

    margin-bottom: 5px;

    color: #888888;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.18em;
}


.dropdown-heading p {
    margin: 0;

    color: #222222;

    font-size: 13px;
}


/* DROPDOWN ITEM */

.dropdown-item {
    position: relative;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 15px 12px;

    text-decoration: none;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.dropdown-item:hover {
    background: #f5f6f4;

    transform: translateX(3px);
}


/* ICON */

.dropdown-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

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

    background: #f1f3f0;

    color: #17251d;

    font-size: 14px;
}


.dropdown-text {
    flex: 1;
}


.dropdown-text strong {
    display: block;

    margin-bottom: 3px;

    color: #172019;

    font-size: 12px;
    font-weight: 600;
}


.dropdown-text small {
    display: block;

    color: #8a8f8b;

    font-size: 10px;

    line-height: 1.4;
}


.dropdown-arrow {
    color: #777777;

    font-size: 15px;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}


.dropdown-item:hover .dropdown-arrow {
    color: #17251d;

    transform: translate(2px, -2px);
}





/* =========================================
   MOBILE MENU BUTTON
========================================= */

/* =========================================
   MOBILE MENU BUTTON
========================================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;
    margin: 0;

    border: 1px solid rgba(255, 255, 255, 0.45);

    background: transparent;

    cursor: pointer;

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

    flex-direction: column;

    gap: 6px;

    position: relative;

    z-index: 10001;
}

.menu-toggle span {
    display: block;

    width: 21px;
    height: 2px;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* HAMBURGER → X */

.menu-toggle.active span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle.active span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}


/* =========================================
   MOBILE NAVIGATION
========================================= */

@media (max-width: 850px) {

    .site-header {
        height: 78px;
    }

    .nav-container {
        width: 92%;
    }


    /* SHOW HAMBURGER */

    .menu-toggle {
        display: flex;
    }


    /* HIDE DESKTOP CTA */

    .nav-cta {
        display: none;
    }


    /* MOBILE NAV */

    .main-nav {
        position: fixed;

        top: 78px;
        left: 0;

        width: 100%;
        height: calc(100vh - 78px);

        padding: 25px 6% 50px;

        background: rgba(15, 22, 18, 0.98);

        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        overflow-y: auto;

        opacity: 0;
        visibility: hidden;

        pointer-events: none;

        transform: translateY(-15px);

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }


    /* OPEN STATE */

    .main-nav.active {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);
    }


    /* LINKS */

    .nav-link {
        width: 100%;

        min-height: 60px;

        padding: 18px 5px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        color: #ffffff;

        border-bottom: 1px solid rgba(255, 255, 255, 0.1);

        font-size: 15px;
    }


    .nav-link::after {
        display: none;
    }


    /* DROPDOWN */

    .nav-dropdown {
        width: 100%;
    }


    .dropdown-trigger {
        width: 100%;
    }


    .dropdown-menu {
        position: static;

        width: 100%;

        display: none;

        margin: 0;

        padding: 5px 0;

        background: rgba(255, 255, 255, 0.04);

        border: none;

        box-shadow: none;

        transform: none;

        opacity: 1;

        visibility: visible;
    }


    .nav-dropdown.open .dropdown-menu {
        display: block;
    }


    .dropdown-menu::before {
        display: none;
    }


    .dropdown-heading {
        padding: 15px 10px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }


    .dropdown-heading span {
        color: rgba(255, 255, 255, 0.45);
    }


    .dropdown-heading p {
        color: rgba(255, 255, 255, 0.7);
    }


    .dropdown-item {
        padding: 13px 8px;

        background: transparent;
    }


    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.06);

        transform: none;
    }


    .dropdown-icon {
        background: rgba(255, 255, 255, 0.08);

        color: #ffffff;
    }


    .dropdown-text strong {
        color: #ffffff;
    }


    .dropdown-text small {
        color: rgba(255, 255, 255, 0.5);
    }


    .dropdown-arrow {
        color: rgba(255, 255, 255, 0.6);
    }


    .dropdown-footer {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }


    .dropdown-footer a {
        color: #ffffff;
    }

}



/* =========================
   HERO
========================= */
/* the styling for the construction hero begins here */

/* =====================================================
   ABOUT HERO
===================================================== */
/* ==========================================================
   VIRTUE KONSULT
   CONTACT PAGE
========================================================== */

.contact-page {
    --contact-green: #18251d;
    --contact-green-light: #2b392f;
    --contact-muted: #707a73;
    --contact-line: #d8dbd6;
    --contact-background: #f1f2ee;
    --contact-gold: #b79a62;

    background: var(--contact-background);
    color: var(--contact-green);
}


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

.contact-hero {
    position: relative;

    min-height: 570px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #142019;

    color: #fff;
}


.contact-hero-image {
    position: absolute;
    inset: 0;
}


.contact-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.contact-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(12,22,16,.94) 0%,
            rgba(12,22,16,.76) 42%,
            rgba(12,22,16,.35) 100%
        );
}


.contact-hero-content {
    position: relative;
    z-index: 2;

    width: min(1200px, 88%);

    margin: auto;

    padding-top: 80px;
}


.contact-hero-content > span {
    display: block;

    margin-bottom: 22px;

    color: #a4afa7;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .2em;
}


.contact-hero-content h1 {
    max-width: 850px;

    margin: 0 0 25px;

    font-size: clamp(55px, 7vw, 95px);

    font-weight: 400;

    line-height: .88;

    letter-spacing: -.065em;
}


.contact-hero-content h1 em {
    display: block;

    color: #aeb9b1;

    font-style: italic;
}


.contact-hero-content p {
    max-width: 510px;

    margin: 0;

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

    font-size: 14px;

    line-height: 1.8;
}



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

.contact-section {
    position: relative;

    padding: 0 0 120px;

    background: var(--contact-background);
}


.contact-card {
    position: relative;
    z-index: 3;

    width: min(1120px, 88%);

    margin: -80px auto 0;

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    background: #fff;

    box-shadow:
        0 20px 60px rgba(20,35,27,.10);
}



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

.contact-information {
    padding: 55px 48px;

    background: #edf0eb;

    border-right: 1px solid #dce0db;
}


.contact-label {
    display: block;

    margin-bottom: 18px;

    color: #737d76;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .18em;
}


.contact-information h2 {
    margin: 0 0 22px;

    font-size: 35px;

    font-weight: 400;

    line-height: .98;

    letter-spacing: -.045em;
}


.contact-information h2 span {
    display: block;

    color: #758077;

    font-style: italic;
}


.contact-intro {
    margin: 0 0 40px;

    color: #707971;

    font-size: 12px;

    line-height: 1.8;
}



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

.contact-detail {
    display: flex;

    align-items: center;

    gap: 16px;

    padding: 18px 0;

    border-top: 1px solid #d9ddd8;
}


.contact-detail-icon {
    flex-shrink: 0;

    width: 38px;
    height: 38px;

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

    border-radius: 50%;

    background: var(--contact-green);

    color: #fff;

    font-size: 11px;
}


.contact-detail span {
    display: block;

    margin-bottom: 6px;

    color: #89918b;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: .14em;
}


.contact-detail p,
.contact-detail a {
    display: block;

    margin: 0;

    color: #26342c;

    font-size: 11px;

    line-height: 1.5;

    text-decoration: none;
}


.contact-detail a:hover {
    color: var(--contact-gold);
}



/* ==========================================================
   SOCIAL
========================================================== */

.contact-social {
    margin-top: 25px;

    padding-top: 22px;

    border-top: 1px solid #d9ddd8;
}


.contact-social > span {
    display: block;

    margin-bottom: 13px;

    color: #89918b;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: .14em;
}


.contact-social > div {
    display: flex;

    gap: 8px;
}


.contact-social a {
    width: 31px;
    height: 31px;

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

    border: 1px solid #ccd1cc;

    border-radius: 50%;

    color: var(--contact-green);

    font-size: 10px;

    text-decoration: none;

    transition: .25s ease;
}


.contact-social a:hover {
    background: var(--contact-green);

    border-color: var(--contact-green);

    color: #fff;

    transform: translateY(-3px);
}



/* ==========================================================
   FORM
========================================================== */

.contact-form-wrapper {
    padding: 55px 55px 50px;
}


.contact-form-wrapper h2 {
    margin: 0 0 12px;

    font-size: 35px;

    font-weight: 400;

    line-height: 1;

    letter-spacing: -.045em;
}


.form-intro {
    max-width: 480px;

    margin: 0 0 30px;

    color: #7a827c;

    font-size: 11px;

    line-height: 1.7;
}


.contact-form {
    width: 100%;
}


.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.form-group {
    margin-bottom: 20px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #626c65;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;
}


.form-group input,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 13px 14px;

    border: 1px solid #dce0dc;

    outline: none;

    background: #f8f9f7;

    color: #1b2920;

    font-family: inherit;

    font-size: 11px;

    transition:
        border-color .25s ease,
        background .25s ease;
}


.form-group input {
    height: 45px;
}


.form-group textarea {
    min-height: 115px;

    resize: vertical;
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: #647168;

    background: #fff;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a7ada8;
}


.contact-submit {
    display: inline-flex;

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

    gap: 15px;

    width: 100%;

    padding: 15px 20px;

    border: none;

    background: var(--contact-green);

    color: #fff;

    cursor: pointer;

    font-family: inherit;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .13em;

    text-transform: uppercase;

    transition: .3s ease;
}


.contact-submit span {
    font-size: 13px;

    transition: transform .3s ease;
}


.contact-submit:hover {
    background: #2c3b31;
}


.contact-submit:hover span {
    transform: translate(3px,-3px);
}



/* ==========================================================
   LOCATION
========================================================== */

.contact-location {
    padding: 110px 0 0;

    background: #fff;
}


.location-heading {
    width: min(1120px, 88%);

    margin: auto auto 50px;

    display: grid;

    grid-template-columns: 1fr .8fr;

    align-items: end;

    gap: 80px;
}


.location-heading h2 {
    margin: 0;

    font-size: clamp(45px, 5vw, 65px);

    font-weight: 400;

    line-height: .9;

    letter-spacing: -.055em;
}


.location-heading h2 em {
    color: #737e76;

    font-style: italic;
}


.location-heading > p {
    max-width: 390px;

    margin: 0;

    color: #717a74;

    font-size: 12px;

    line-height: 1.8;
}



/* ==========================================================
   MAP
========================================================== */

.location-map {
    width: 100%;

    height: 430px;

    overflow: hidden;

    background: #dce1db;
}


.map-placeholder {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;

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

    background:
        linear-gradient(
            35deg,
            transparent 48%,
            rgba(255,255,255,.7) 49%,
            rgba(255,255,255,.7) 51%,
            transparent 52%
        ),
        linear-gradient(
            110deg,
            transparent 48%,
            rgba(255,255,255,.65) 49%,
            rgba(255,255,255,.65) 51%,
            transparent 52%
        ),
        #d9ded8;

    background-size:
        260px 180px,
        320px 220px,
        auto;
}


.map-marker {
    width: 48px;
    height: 48px;

    display: flex;

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

    border-radius: 50% 50% 50% 0;

    transform: rotate(-45deg);

    background: var(--contact-green);

    color: #fff;

    box-shadow:
        0 8px 20px rgba(20,35,27,.2);
}


.map-marker i {
    transform: rotate(45deg);

    font-size: 15px;
}


.map-label {
    position: absolute;

    margin-top: 120px;

    padding: 14px 20px;

    background: #fff;

    box-shadow:
        0 8px 25px rgba(0,0,0,.1);
}


.map-label strong {
    display: block;

    margin-bottom: 4px;

    color: var(--contact-green);

    font-size: 11px;
}


.map-label span {
    color: #7b847e;

    font-size: 9px;
}



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

.contact-bottom {
    padding: 120px 0;

    background: var(--contact-green);

    color: #fff;
}


.contact-bottom-content {
    width: min(1120px, 88%);

    margin: auto;
}


.contact-bottom-content > span {
    display: block;

    margin-bottom: 25px;

    color: #96a29a;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .18em;
}


.contact-bottom-content h2 {
    max-width: 850px;

    margin: 0 0 35px;

    font-size: clamp(55px, 7vw, 90px);

    font-weight: 400;

    line-height: .87;

    letter-spacing: -.065em;
}


.contact-bottom-content h2 em {
    display: block;

    color: #a7b3aa;

    font-style: italic;
}


.contact-bottom-content > a {
    display: inline-flex;

    align-items: center;

    gap: 17px;

    padding: 15px 20px;

    background: #fff;

    color: var(--contact-green);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .1em;

    text-decoration: none;

    text-transform: uppercase;
}



/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 850px) {

    .contact-card {
        grid-template-columns: 1fr;
    }


    .contact-information {
        border-right: none;

        border-bottom: 1px solid #dce0db;
    }


    .location-heading {
        grid-template-columns: 1fr;

        gap: 25px;
    }

}



/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 600px) {

    .contact-hero {
        min-height: 600px;
    }


    .contact-hero-content {
        padding-top: 90px;
    }


    .contact-hero-content h1 {
        font-size: 52px;
    }


    .contact-card {
        width: 92%;

        margin-top: -50px;
    }


    .contact-information,
    .contact-form-wrapper {
        padding: 40px 25px;
    }


    .contact-information h2,
    .contact-form-wrapper h2 {
        font-size: 31px;
    }


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .contact-location {
        padding-top: 80px;
    }


    .location-map {
        height: 350px;
    }


    .contact-bottom {
        padding: 90px 0;
    }


    .contact-bottom-content h2 {
        font-size: 52px;
    }

}


/* the footer starts here */

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

.site-footer {
    position: relative;

    width: 100%;

    background: #061b3b;

    color: #ffffff;

    overflow: hidden;
}


/* =========================================
   BACKGROUND IMAGE
========================================= */

.footer-bg {
    position: absolute;

    inset: 0;

    background-image:
        url("images/footer-bg.jpg");

    background-size: cover;

    background-position: center;

    opacity: .18;

    transform: scale(1.02);
}


.footer-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 20, 43, .97),
            rgba(6, 27, 59, .94)
        );
}


/* =========================================
   MAIN CONTAINER
========================================= */

.footer-container {
    position: relative;
    z-index: 2;

    width: min(1100px, 90%);

    margin: 0 auto;

    padding: 95px 0 75px;

    display: grid;

    grid-template-columns:
        1.35fr
        .75fr
        1fr
        1fr;

    gap: 55px;
}


/* =========================================
   COMPANY
========================================= */

.footer-company {
    max-width: 290px;
}


/* =========================================
   LOGO
========================================= */

.footer-logo {
    display: inline-flex;

    flex-direction: column;

    text-decoration: none;

    margin-bottom: 25px;
}


.logo-main {
    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 30px;

    font-weight: 600;

    letter-spacing: 4px;

    line-height: 1;
}


.logo-sub {
    margin-top: 7px;

    color: #d8a928;

    font-family: Arial, sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;
}


/* =========================================
   DESCRIPTION
========================================= */

.footer-description {
    margin: 0;

    color: #c8d0dc;

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================
   OFFICE HOURS
========================================= */

.footer-hours {
    margin-top: 28px;

    display: flex;

    flex-direction: column;

    gap: 7px;
}


.footer-hours span {
    color: #d8a928;

    font-size: 12px;

    font-weight: 600;
}


.footer-hours strong {
    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 500;
}


/* =========================================
   COLUMN HEADINGS
========================================= */

.footer-column h3 {
    position: relative;

    margin: 0 0 25px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;

    font-weight: 500;
}


.footer-column h3::after {
    content: "";

    display: block;

    width: 35px;

    height: 2px;

    margin-top: 12px;

    background: #d8a928;
}


/* =========================================
   LINKS
========================================= */

.footer-links {
    list-style: none;

    padding: 0;
    margin: 0;

    display: flex;

    flex-direction: column;

    gap: 13px;
}


.footer-links li {
    margin: 0;
}


.footer-links a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #c8d0dc;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 12px;

    line-height: 1.5;

    transition:
        color .3s ease,
        transform .3s ease;
}


.footer-links a i {
    color: #d8a928;

    font-size: 8px;

    transition:
        transform .3s ease;
}


.footer-links a:hover {
    color: #ffffff;

    transform: translateX(4px);
}


.footer-links a:hover i {
    transform: translateX(3px);
}


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

.contact-list {
    list-style: none;

    padding: 0;
    margin: 0;

    display: flex;

    flex-direction: column;

    gap: 18px;
}


.contact-list li {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    color: #c8d0dc;

    font-family: Arial, sans-serif;

    font-size: 12px;

    line-height: 1.6;
}


.contact-list li > i {
    width: 18px;

    margin-top: 3px;

    color: #d8a928;

    font-size: 13px;
}


.contact-list a {
    display: block;

    color: #c8d0dc;

    text-decoration: none;

    transition: color .3s ease;
}


.contact-list a:hover {
    color: #ffffff;
}


/* =========================================
   SOCIALS
========================================= */

.footer-socials {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;
}


.footer-socials a {
    width: 35px;
    height: 35px;

    display: flex;

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

    border: 1px solid rgba(216, 169, 40, .45);

    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


.footer-socials a:hover {
    background: #d8a928;

    border-color: #d8a928;

    color: #061b3b;

    transform: translateY(-4px);
}


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

.footer-bottom {
    position: relative;

    z-index: 2;

    border-top:
        1px solid rgba(255,255,255,.1);
}


.footer-bottom-container {
    width: min(1100px, 90%);

    margin: 0 auto;

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.footer-bottom p {
    margin: 0;

    color: #8f9aaa;

    font-family: Arial, sans-serif;

    font-size: 11px;
}


.footer-legal {
    display: flex;

    align-items: center;

    gap: 25px;
}


.footer-legal a {
    color: #8f9aaa;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 11px;

    transition: color .3s ease;
}


.footer-legal a:hover {
    color: #d8a928;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 55px 45px;
    }

    .footer-company {
        max-width: 360px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .footer-container {
        width: 90%;

        padding: 70px 0 55px;

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .footer-company {
        max-width: 100%;
    }

    .footer-bottom-container {
        width: 90%;

        padding: 20px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

    .footer-legal {
        flex-wrap: wrap;

        gap: 15px;
    }

}

/* =========================================================
   FINAL CLEANUP / RESPONSIVE FIXES
   ========================================================= */

/* Keep navigation above the hero without affecting layout */
.navbar {
    top: 0;
    left: 0;
}

/* Logo image should not inherit text-logo sizing */
.logo-img {
    display: block;
    width: 150px;
    height: auto;
    object-fit: contain;
}

/* Hero content: centered consistently on desktop and mobile */
.hero-content {
    top: 0;
    width: min(1100px, 84%);
    margin: 0 auto;
    padding-top: clamp(170px, 24vh, 250px);
    text-align: center;
}

.hero-content h1,
.hero-content p {
    margin-left: auto;
    margin-right: auto;
}

.hero-content p {
    max-width: 720px;
}

/* Make the service icon a real, consistent component */
.service-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border: 1px solid rgba(9, 40, 93, .08);
}

/* Prevent shared labels from fighting each other */
.about-section .section-label {
    color: #ffae00;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.intro-section .section-label {
    color: #555;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.about-section .section-label::before,
.intro-section .section-label::before {
    display: none;
}

/* Better image sizing */
.videocontainer {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.videocontainer img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

/* Improve marquee image consistency */
.partner-logo img {
    display: block;
    max-width: 100%;
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* Prevent long text from causing horizontal overflow */
