﻿/* ---------------------------------------------fonts/PlusJakar
   Variables
---------------------------------------------- */
:root {
    /* Colors */
    --black: #000000;
    --white: #ffffff;
    --primary: #0c419a;
    --secondary: #e2681e;
    --accent-color: #e2681e;
    --blue-dark: #04193b;
    --blue-black: #051636;
    --yellow-green: #8dc63f;
    --gray: #f6f6f6;
    /* Background Colors */
    --gray-1: #434343;
    --gray-2: #aaaaaa;
    --gray-3: #959595;
    --gray-4: #cccccc;
    --gray-5: #707070;
    --gray-6: #f4f4f4;
    --gray-7: #c7c7c7;
    --gray-dark: #051636;
    /* Font Sizes */
    --font-size-base: 19px;
    --font-size-large: 22px;
    --font-size-small: 16px;
}

/* ---------------------------------------------
   1. Fonts
---------------------------------------------- */

/*
@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Plus Jakarta Sans";
    src: url("../fonts/PlusJakartaSans-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
*/

/* ---------------------------------------------
   2. Base Styles
---------------------------------------------- */
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    margin: 0;
    color: var(--gray-1);
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary);
    font-family: "Plus Jakarta Sans", sans-serif;
    margin: 0 0 38px;
    font-weight: 700;
}

h1 {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.2em;
}

h2 {
    font-size: clamp(30px, 4.5vw, 60px);
    line-height: 1.2222em;
}

h3 {
    font-size: clamp(20px, 2.5vw, 30px);
    line-height: 1.3333em;
}

h4 {
    font-size: clamp(16px, 1.4vw, 22px);
    line-height: 1.4166em;
}

h5 {
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.5em;
}

h6 {
    font-size: clamp(12px, 1.2vw, 16px);
    line-height: 1.5em;
}

a {
    /*font-size: 19px;*/
    font-weight: 400;
    color: #00f;
    text-decoration: underline;
    outline: none !important;
}

p,
a,
label {
    line-height: 1.5454em;
}

/* ---------------------------------------------
   2. Buttons
---------------------------------------------- */
.btn {
    margin-top: 64.95px;
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--white);
    padding: 12.5px 16px;
    font-size: 17px;
    cursor: pointer;
    min-width: 210px;
    transition: all 0.3s ease;
}

    .btn:hover {
        background-color: transparent;
        border: 1px solid var(--accent-color);
        color: var(--accent-color);
    }

/* ---------------------------------------------
   3. Layout Containers
---------------------------------------------- */
.container {
    max-width: 1370px;
    padding: 0 25px;
    margin: 0 auto;
}

.content {
    max-width: 1100px;
    padding: 96px 0 92.62px;
}

/* ---------------------------------------------
   4. Top Bar
---------------------------------------------- */
.top-bar {
    background-color: var(--primary);
    padding: 8.58px 0 9.1px;
}

    .top-bar p,
    .top-bar span,
    .top-bar a {
        color: var(--white);
        font-size: clamp(13px, 1.2vw, 15px);
        font-family: "Outfit", sans-serif;
    }

.top-bar__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 25px;
}

    .top-bar__content a {
        text-transform: uppercase;
        text-decoration: none;
        font-weight: 500;
    }

.top-bar__locations {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--white);
}

    .top-bar__locations span {
        display: inline-flex;
        gap: 4px;
    }

.top-bar__content a.client-login {
    text-decoration: underline;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 400;
}

/* ---------------------------------------------
   5. Navigation
---------------------------------------------- */
.main-nav {
    background-color: var(--white);
    position: sticky;
    z-index: 10000;
    top: 0;
    transition: all 0.3s ease;
    padding: 12px 0;
}

    .main-nav.scrolled {
        width: 100%;
        background: var(--white);
        padding: 5px 0;
        box-shadow: 0px 0px 10px rgba(3, 40, 44, 0.204);
    }

.main-nav__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    padding: 8 25px;
}

.container-logo {
    max-width: 340px;
    width: 100%;
    transition: all 0.3s ease;
}

    .container-logo a {
        display: inline-block;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .container-logo img {
        width: 100%;
        height: auto;
        display: block;
    }

.main-nav__menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    align-items: center;
}

    .main-nav__menu li {
        display: inline-block;
        padding: 0 11px;
    }

        .main-nav__menu li:last-child {
            padding-right: 0;
        }

    .main-nav__menu a {
        font-weight: 500;
        line-height: 50px;
        height: 50px;
        display: block;
        color: var(--gray-dark);
        text-decoration: none;
        font-family: "Plus Jakarta Sans";
        font-size: clamp(14px, 1.2vw, 15px);
    }

        .main-nav__menu a:hover {
            color: var(--primary);
        }

        .main-nav__menu a.contact-btn {
            padding: 10.5px 12px;
            color: var(--white);
            background-color: var(--secondary);
            border: 1px solid var(--secondary);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            height: auto;
        }

            .main-nav__menu a.contact-btn:hover {
                background-color: transparent;
                color: var(--accent-color);
            }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

    .menu-toggle span {
        width: 24px;
        height: 2px;
        background: var(--primary);
        display: block;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -5px);
    }

/* ---------------------------------------------
   6. Page Header & Tabs & Contact
---------------------------------------------- */
.page-header {
    margin-bottom: 30px;
}

    .page-header .section-label {
        color: var(--secondary);
        font-size: clamp(14px, 1.2vw, 16px);
        text-transform: uppercase;
        margin: 0 0 48.41px;
        font-weight: 700;
    }

    .page-header p {
        color: var(--gray-1);
        font-size: clamp(16px, 1.4vw, 22px);
    }

    .page-header a {
        color: #0C419A;
        text-decoration: underline;
        font-size: clamp(16px, 1.4vw, 22px);
    }

.view-label {
    font-size: 14px;
    font-weight: 600;
    color: #434343;
    margin-top: 10px;
}

.tabs {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin: 15px 0 48px;
    flex-wrap: wrap;
    border-bottom: 3px solid var(--gray-5);
}

.tab {
    background-color: var(--gray-2);
    border: none;
    font-size: clamp(14px, 1.4vw, 17px);
    padding: 11px 18px;
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    line-height: 27px;
}

    .tab.active,
    .tab:hover {
        background-color: var(--primary);
        color: var(--white);
    }

section,
footer {
    overflow: hidden;
}

.contact-section h3 {
    margin-bottom: 10px;
}

.info-table {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

    .info-table ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

        .info-table ul li {
            position: relative;
            display: grid;
            gap: 15px;
            grid-template-columns: 160px max-content 1fr;
            font-size: clamp(16px, 1.4vw, 22px);
            font-weight: 500;
        }

            .info-table ul li::after {
                content: "";
                position: absolute;
                bottom: -6px;
                left: 0;
                width: 100%;
                border-bottom: 1px dotted var(--gray-5);
            }

            .info-table ul li a {
                font-size: clamp(16px, 1.4vw, 22px);
                font-weight: 500;
                color: #0C419A;
                text-decoration: none;
            }

            .info-table ul li label {
                color: #555555;
            }

            .info-table ul li .lid {
                display: flex;
                justify-content: center;
                align-items: flex-end;
                height: 100%;
                font-weight: 600;
                line-height: 1.5454em;
            }

hr {
    margin: 50px 0;
    border: none;
    border-top: 1px solid var(--gray-5);
}

/* ---------------------------------------------
   7. Location Table
---------------------------------------------- */
.locations-content {
    padding-bottom: 141px;
}

.header-locations {
    margin-bottom: 80.41px;
}

.tabs-loactions {
    border-bottom: 3px solid #707070;
}

.locations-section {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table.data {
    border-collapse: collapse;
    border: 1px solid gray;
    width: 100%;
}

    table.data td,
    table.data th {
        padding: 4px 4px;
        border: 1px solid gray;
        /*font-size: clamp(14px, 1.4vw, var(--font-size-large));*/
        font-weight: bold;
    }

    table.data thead th {
        background-color: var(--primary);
        font-weight: bold;
        color: var(--gray-4);
        white-space: nowrap;
        text-align: center;
        /*font-size: clamp(14px, 1.4vw, var(--font-size-large));*/
    }

    table.data tfoot td {
        font-weight: bold;
    }

table.equipment {
    font-size: 0.8em;
}

.link-table {
    text-decoration: none;
    cursor: pointer;
    color: #00f;
    font-weight: bold;
    font-size: clamp(14px, 1.4vw, var(--font-size-large));
}

/* ---------------------------------------------
   8. Footer
---------------------------------------------- */
.site-footer {
    background: var(--white);
    border-top: 1px solid var(--gray-4);
    padding: 40px 0 20px;
    font-size: 14px;
    color: var(--gray-1);
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 80px;
}

.footer-links .footer-links-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    text-align: left;
}

.footer-links .footer-title {
    font-size: clamp(17px, 1.4vw, 20px);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-dark);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-top: 8px;
}

.footer-links a {
    text-decoration: none;
    color: var(--gray-1);
}

.footer-links ul li a {
    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: 400;
}

    .footer-links ul li a:hover:not(.footer-title) {
        color: var(--primary);
    }

/* Footer Bottom Section */
.footer-logo-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo-addresses {
    display: flex;
    justify-content: space-between;
    gap: 27px;
    flex: 1;
}

.footer-logo {
    flex-shrink: 0;
}

    .footer-logo img {
        max-width: 272px;
        height: auto;
    }

.footer-logo-mobile {
    display: none;
    margin-bottom: 18px;
}

    .footer-logo-mobile img {
        max-width: 194px;
        height: auto;
    }


.footer-addresses {
    display: flex;
    gap: clamp(10px, 2vw, 80px);
    flex-wrap: wrap;
}

    .footer-addresses > div {
        flex-shrink: 0;
    }

    .footer-addresses p {
        margin: 0;
        line-height: 24px;
        font-size: clamp(13px, 1.2vw, 15px);
        color: var(--gray-1);
    }

    .footer-addresses p {
        white-space: nowrap;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 400;
    }

.footer-logo-addresses .footer-logo {
    margin-right: 20px;
}

.footer-top hr {
    margin: 30px 0;
    border: none;
    border-top: 1px solid var(--gray-4);
}

/* Footer Actions */
.footer-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: end;
}

.footer-text {
    padding: 0;
    margin: 0;
    font-size: clamp(11px, 1.2vw, 13px);
    color: var(--gray-3);
    line-height: 20px;
}

    .footer-text a {
        color: var(--gray-3);
        text-decoration: none;
        font-size: clamp(11px, 1.2vw, 13px);
    }

.client-login-footer {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 10px 0 39px 0;
}

.linkedin-icon {
    display: inline-block;
    transition: opacity 0.3s ease;
    margin-bottom: 7px;
}

    .linkedin-icon img {
        width: 20px;
        height: 20px;
    }

        .linkedin-icon img:hover {
            filter: invert(42%) sepia(42%) saturate(5322%) hue-rotate(346deg) brightness(99%) contrast(96%);
        }

/* ---------------------------------------------
   9. Page log-off
---------------------------------------------- */
.page-log-off .content {
    width: 100%;
    max-width: 872px;
}

    .page-log-off .content .page-header .section-label {
        font-size: 16px;
        line-height: 21px;
        letter-spacing: 0;
        text-transform: uppercase;
        font-weight: bold !important;
    }

    .page-log-off .content .page-header a {
        color: var(--primary);
    }

    .page-log-off .content .page-header h1 {
        margin-bottom: 32px;
    }

    .page-log-off .content .page-header p {
        font-size: clamp(16px, 4vw, 22px);
        line-height: clamp(26px, 4vw, 32px);
    }

.page-log-off .form .form-group {
    display: flex;
    flex-direction: column;
}

    .page-log-off .form .form-group.form-group-style2 {
        flex-direction: row;
        align-items: center;
        gap: 7px;
    }

    .page-log-off .form .form-group .check {
        appearance: none;
        -webkit-appearance: none;
        width: 18px;
        height: 18px;
        border: 2px solid #aaaaaa !important;
        border-radius: 3px;
        margin: 0;
        position: relative;
    }

        .page-log-off .form .form-group .check:checked {
            border: none;
            outline: none;
        }

            .page-log-off .form .form-group .check:checked::before {
                content: "✓";
                color: var(--primary) !important;
                font-size: 20px;
                font-weight: bolder;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -88%);
                width: 100%;
                height: 100%;
                border: initial;
            }

    .page-log-off .form .form-group .label-name {
        display: flex;
        font-size: clamp(18px, 4vw, 22px);
        font-weight: 600;
    }

    .page-log-off .form .form-group .input-form {
        font-size: 18px;
        background-color: #e9f0fd;
        border: 1px solid #aaaaaa;
        padding: 5px 4px;
        width: 100%;
        max-width: 264px;
        color: var(--gray-1);
        font-weight: 500;
    }

    .page-log-off .form .form-group .error-message {
        display: none;
        color: red;
    }

    .page-log-off .form .form-group .input-submit {
        width: 100%;
        max-width: 126px;
        background-color: var(--secondary);
        border: 1px solid var(--secondary) !important;
        color: var(--white) !important;
        text-transform: capitalize;
        letter-spacing: 0;
        font-weight: 500 !important;
        font-size: 17px;
        line-height: 27px;
        border: initial;
        padding: 11px 23px 11px;
        margin-top: clamp(30px, 4vw, 41px);
        cursor: pointer;
    }

        .page-log-off .form .form-group .input-submit:hover {
            background-color: transparent !important;
            color: var(--secondary) !important;
        }

/* ---------------------------------------------
   10. Responsive Media Queries
---------------------------------------------- */

@media (max-width: 991px) {
    .container-logo {
        max-width: 182px;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav__menu {
        display: none;
        flex-direction: column;
        background: var(--white);
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        padding: 30px 0 36px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

        .main-nav__menu.active {
            display: flex;
            align-items: flex-start;
        }

    .main-nav__content {
        position: relative;
    }

    .main-nav__menu li {
        padding: 0 36px;
    }

        .main-nav__menu li a {
            height: 40px;
            line-height: 40px;
        }

        .main-nav__menu li:last-child {
            margin-top: 15px;
        }

    .tabs {
        gap: 5px;
    }

        .tabs .tab {
            padding: 6px 12px;
        }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-logo-addresses {
        flex-direction: column;
        gap: 20px;
    }

    .footer-addresses {
        margin-bottom: 23px;
    }

    .footer-actions {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .content {
        padding: 45px 0;
    }

    .page-header .section-label {
        margin: 0 0 20px;
    }

    .top-bar__content .client-login {
        display: none;
    }

    .tabs {
        justify-content: flex-start;
    }

    .info-table ul {
        width: 100%;
    }

        .info-table ul li {
            grid-template-columns: auto auto 1fr;
        }

    .footer-top hr {
        display: none;
    }

    .footer-logo {
        display: none;
    }

    .footer-links .footer-links-list {
        grid-template-columns: 1fr;
    }

    .footer-logo-mobile {
        display: block;
    }
}

@media (max-width: 575px) {

    .top-bar__content,
    .main-nav__content {
        padding: 0 12px;
    }

        .top-bar__content .top-bar__locations {
            gap: 5px;
        }

            .top-bar__content .top-bar__locations .phone-number:last-child img {
                display: none;
            }

            .top-bar__content .top-bar__locations span {
                gap: 2px;
            }

    .header-locations {
        margin-bottom: 40px;
    }
}

@media (max-width: 375px) {

    .top-bar__content .top-bar__locations,
    .top-bar__content .top-bar__locations span,
    .top-bar__content .top-bar__locations a {
        font-size: 12px;
    }
}
