/* =====================================================
                    GOOGLE FONT
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


html {
    scroll-behavior: smooth;
}


body {
    background: #f5f7fb;
    color: #333;
    overflow-x: hidden;
}


a {
    text-decoration: none;
}


/* =====================================================
                    COLORS
===================================================== */

:root {

    --navy: #0B2D5C;

    --dark-navy: #071F40;

    --yellow: #FFC107;

    --white: #ffffff;

    --light: #f5f7fb;

    --gray: #666;

}


/* ===========================
   TOP BAR
=========================== */


.top-bar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:45px;

    background:#0b1d39;

    color:#fff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 80px;

    z-index:1001;

    transition:.4s;

}



.top-left{

    display:flex;

    gap:25px;

}

.top-left span{

    display:flex;

    align-items:center;

    gap:8px;

}

.top-right{

    display:flex;

    gap:18px;

}

.top-right i{

    cursor:pointer;

    transition:.3s;

}

.top-right i:hover{

    color:#f4c542;

}

/* ===========================
   NAVBAR
=========================== */

header{

    position:fixed;

    top:45px;

    left:0;

    width:100%;

    padding:1px 80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:#fff;

    z-index:1000;

    transition:all .4s ease;

}



 .logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo img{
    position: relative;
    left: 10%;

    width:80px;

}

.logo h2{
    position: absolute;
    left: 10.5%;
    top:6%;

    color:#0b1d39;

    font-size:35px;

    font-weight:1000;
    letter-spacing: 5px;
}

.logo1{
    position:absolute;
    bottom: -10px;
    color:#0b1d39;

    font-size:16px;

    font-weight:500;
    letter-spacing: 0;

} 


nav ul{

    display:flex;

    list-style:none;

    gap:35px;

}


nav ul li a{

    color:black;

    text-decoration:none;

    font-size:17px;

    font-weight:500;

    transition:.3s;

}

nav ul li a:hover{

color:#f4c542;


}

nav ul li a.active {

    color: #f4c542;

}




nav ul li a.active::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 100%;

    height: 3px;

    background: #FFD54F;

}

nav {
    margin-left: auto;
}

.menu-button {
    display: none;
}

/* ===========================
   STICKY NAVBAR
=========================== */

header.sticky{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    padding:1px 80px;

    background:white;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

    z-index:1000;

    transition:.4s;

}

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

.logo img{

    transition:.4s;

}

.logo img:hover{

    transform:rotate(-5deg) scale(1.08);

}

/* ===========================
   NAV LINK EFFECT
=========================== */

nav ul li{

    position:relative;

}

nav ul li::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#FFD54F;

    transition:.4s;

}

nav ul li:hover::after{

    width:100%;

}






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

.menu-button {

    display: none;

    border: none;

    background: none;

    font-size: 25px;

    color: var(--navy);

    cursor: pointer;

}


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

.contact-hero {

    width: 100%;

    height: 700px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

}


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

.contact-hero-image {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    background-image:
        url("../images/contact-hero.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    z-index: 1;

    transition: transform 1s ease;

}


/* =====================================================
                    OVERLAY
===================================================== */

.contact-hero-overlay {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            rgba(7,31,64,.97) 0%,
            rgba(11,45,92,.90) 0%,
            rgba(11,45,92,.65) 0%,
            rgba(11,45,92,.25) 50%
        );

    z-index: 2;

}


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

.contact-hero-content {

    width: 88%;

    max-width: 1400px;

    margin: auto;

    position: relative;

    z-index: 3;

    color: white;

}


.contact-small-title {

    display: block;

    color: var(--yellow);

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 18px;

}


.contact-hero-content h1 {

    font-size: 68px;

    font-weight: 800;

    line-height: 1.1;

    color: white;

    margin-bottom: 25px;

}


.contact-breadcrumb {

    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 17px;

}


.contact-breadcrumb a {

    color: white;

    transition: .3s;

}


.contact-breadcrumb a:hover {

    color: var(--yellow);

}


.contact-breadcrumb span {

    color: var(--yellow);

    font-size: 22px;

}


.contact-breadcrumb strong {

    color: var(--yellow);

}


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

.contact-hero:hover .contact-hero-image {

    transform: scale(1.04);

}


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

.contact-section {

    padding: 100px 6%;

    background: var(--light);

}


.contact-container {

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1.15fr;

    gap: 80px;

    align-items: center;

}


/* =====================================================
                LEFT INFORMATION
===================================================== */

.section-small-title {

    color: var(--yellow);

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 2px;

}


.contact-information h2 {

    color: var(--navy);

    font-size: 42px;

    line-height: 1.2;

    margin: 15px 0 20px;

}


.contact-information h2 span {

    color: var(--yellow);

}


.contact-information > p {

    color: var(--gray);

    font-size: 16px;

    line-height: 30px;

    margin-bottom: 35px;

}


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

.contact-item {

    display: flex;

    align-items: center;

    gap: 20px;

    margin-bottom: 25px;

}


.contact-icon {

    width: 58px;

    height: 58px;

    min-width: 58px;

    background: var(--yellow);

    color: var(--navy);

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 21px;

    transition: .3s;

}


.contact-item:hover .contact-icon {

    background: var(--navy);

    color: var(--yellow);

    transform: translateY(-5px);

}


.contact-item h3 {

    color: var(--navy);

    font-size: 17px;

    margin-bottom: 4px;

}


.contact-item p {

    color: #777;

    font-size: 14px;

}


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

.social-section {

    margin-top: 35px;

}


.social-section h3 {

    color: var(--navy);

    font-size: 17px;

    margin-bottom: 15px;

}


.social-icons {

    display: flex;

    gap: 12px;

}


.social-icons a {

    width: 42px;

    height: 42px;

    background: white;

    color: var(--navy);

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 8px;

    box-shadow:
        0 5px 15px rgba(0,0,0,.08);

    transition: .3s;

}


.social-icons a:hover {

    background: var(--yellow);

    transform: translateY(-5px);

}


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

.contact-form-box {

    background: white;

    padding: 45px;

    border-radius: 20px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);

}


.form-small-title {

    color: var(--yellow);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

}


.contact-form-box h2 {

    color: var(--navy);

    font-size: 36px;

    margin: 10px 0;

}


.form-description {

    color: #777;

    line-height: 27px;

    font-size: 14px;

    margin-bottom: 25px;

}


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

.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

}


.form-group {

    margin-bottom: 18px;

}


.form-group label {

    display: block;

    color: var(--navy);

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 7px;

}


.form-group input,
.form-group textarea {

    width: 100%;

    border: 1px solid #ddd;

    outline: none;

    padding: 13px 15px;

    border-radius: 6px;

    font-size: 14px;

    color: #333;

    transition: .3s;

}


.form-group textarea {

    resize: vertical;

}


.form-group input:focus,
.form-group textarea:focus {

    border-color: var(--yellow);

    box-shadow:
        0 0 0 3px rgba(255,193,7,.12);

}


/* =====================================================
                SUBMIT BUTTON
===================================================== */

.submit-button {

    border: none;

    background: var(--yellow);

    color: var(--navy);

    padding: 14px 25px;

    border-radius: 6px;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    transition: .3s;

}


.submit-button:hover {

    background: var(--navy);

    color: white;

    transform: translateY(-3px);

}


.form-message {

    margin-top: 15px;

    font-size: 14px;

    font-weight: 500;

}


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

.map-section {

    width: 100%;

    height: 500px;

}


.map-section iframe {

    width: 100%;

    height: 100%;

    border: 0;

}


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

.main-footer {

    background: #071d3a;

    padding: 70px 8% 25px;

    color: white;

}


.footer-container {

    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        1.2fr
        1.3fr
        1.2fr;

    gap: 40px;

}


.footer-column p {

    color: #d7d7d7;

    line-height: 1.8;

    font-size: 15px;

}


.footer-column h3 {

    margin-bottom: 22px;

    font-size: 22px;

}


.footer-column ul {

    list-style: none;

}


.footer-column ul li {

    margin-bottom: 14px;

}


.footer-column ul li a {

    color: #d7d7d7;

    text-decoration: none;

    transition: .3s;

}


.footer-column ul li a:hover {

    color: #f4ae19;

    padding-left: 6px;

}


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

.footer-social {

    display: flex;

    gap: 12px;

    margin-top: 25px;

}


.footer-social a {

    width: 42px;

    height: 42px;

    background: #0e2c55;

    color: white;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: .3s;

}


.footer-social a:hover {

    background: #f4ae19;

    color: #102947;

}


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

.contact-list li {

    display: flex;

    gap: 14px;

    align-items: flex-start;

    color: #d7d7d7;

}


.contact-list i {

    color: #f4ae19;

    margin-top: 4px;

}


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

.footer-form {

    display: flex;

    flex-direction: column;

    gap: 15px;

}


.footer-form input {

    height: 48px;

    border: none;

    outline: none;

    padding: 0 15px;

    border-radius: 5px;

}


.footer-form button {

    height: 48px;

    border: none;

    background: #f4ae19;

    color: #102947;

    font-weight: 700;

    cursor: pointer;

    border-radius: 5px;

    transition: .3s;

}


.footer-form button:hover {

    background: white;

}


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

.footer-brand {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;

}


.footer-brand img {

    position: relative;

    right: 8%;

    width: 120px;

    height: 120px;

    object-fit: contain;

}


.brand-text {

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.brand-text h2 {

    position: relative;

    right: 25%;

    margin: 0;

    color: #ffffff;

    font-size: 38px;

    font-weight: 900;

    letter-spacing: 4px;

    line-height: 1;

    text-transform: uppercase;

}


.brand-text p {

    position: relative;

    right: 24%;

    margin: 6px 0 0;

    color: #f4ae19;

    font-size: 11px;

    font-weight: 400;

    letter-spacing: 2px;

    text-transform: uppercase;

}


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

.footer-bottom {

    width: 100%;

    background: #05152d;

    padding: 18px 8%;

}


.footer-bottom-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

}


.copyright {

    color: #d8d8d8;

    font-size: 14px;

}


.footer-policy {

    display: flex;

    align-items: center;

    gap: 15px;

}


.footer-policy a {

    color: #d8d8d8;

    text-decoration: none;

    transition: .3s;

}


.footer-policy a:hover {

    color: #f4ae19;

}


.footer-policy span {

    color: #777;

}


/* =====================================================
                    RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .top-bar {

        padding: 0 40px;

    }


    header {

        padding: 1px 40px;

    }


    nav ul {

        gap: 20px;

    }


    .contact-container {

        gap: 40px;

    }


    .footer-container {

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

    }

}


@media (max-width: 768px) {

    .top-bar {

        padding: 0 20px;

        font-size: 12px;

    }


    .top-left {

        gap: 12px;

    }


    .top-right {

        gap: 10px;

    }


    header {

        padding: 5px 20px;

    }


    .logo img {

        width: 65px;

    }


    .logo h2 {

        left: 16%;

        font-size: 25px;

    }


    .logo1 {

        font-size: 12px;

    }


    nav {

        display: none;

    }


    .menu-button {

        display: block;

    }


    .contact-hero {

        height: 600px;

    }


    .contact-hero-content h1 {

        font-size: 48px;

    }


    .contact-container {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .contact-information h2 {

        font-size: 34px;

    }


    .form-row {

        grid-template-columns: 1fr;

    }


    .contact-form-box {

        padding: 30px 25px;

    }


    .footer-container {

        grid-template-columns: 1fr;

    }

}


@media (max-width: 480px) {

    .top-left span:first-child {

        display: none;

    }


    .top-bar {

        padding: 0 15px;

    }


    header {

        padding: 5px 15px;

    }


    .contact-hero-content {

        width: 90%;

    }


    .contact-hero-content h1 {

        font-size: 40px;

    }


    .contact-small-title {

        font-size: 14px;

    }


    .contact-section {

        padding: 70px 5%;

    }


    .contact-form-box {

        padding: 25px 18px;

    }


    .map-section {

        height: 350px;

    }


    .footer-bottom-container {

        flex-direction: column;

        text-align: center;

    }

}




/* =========================================================
   TOP BAR - MOBILE VIEW 300px TO 500px
========================================================= */

@media screen and (min-width: 300px) and (max-width: 500px) {

    .top-bar {
        position: relative !important;

        width: 100% !important;
        max-width: 100% !important;

        height: 38px !important;
        min-height: 38px !important;

        padding: 0 8px !important;

        display: flex !important;
        flex-direction: row !important;

        align-items: center !important;

        box-sizing: border-box !important;

        overflow: hidden !important;
    }


    /* =========================================
       LEFT - PHONE + EMAIL
    ========================================= */

    .top-left {
        width: calc(100% - 75px) !important;

        display: flex !important;
        flex-direction: row !important;

        align-items: center !important;

        justify-content: flex-start !important;

        gap: 7px !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow: hidden !important;

        white-space: nowrap !important;
    }


    .top-left span {
        display: flex !important;

        align-items: center !important;

        gap: 3px !important;

        font-size: 7px !important;

        line-height: 10px !important;

        white-space: nowrap !important;

        flex-shrink: 1 !important;
    }


    .top-left i {
        font-size: 8px !important;

        flex-shrink: 0 !important;
    }


    /* =========================================
       RIGHT - SOCIAL ICONS
    ========================================= */

    .top-right {
        position: absolute !important;

        right: 8px !important;
        top: 0 !important;

        width: 65px !important;
        height: 38px !important;

        display: flex !important;

        flex-direction: row !important;

        align-items: center !important;

        justify-content: flex-end !important;

        gap: 9px !important;

        margin: 0 !important;
        padding: 0 !important;

        box-sizing: border-box !important;

        z-index: 10 !important;
    }


    .top-right i {
        display: block !important;

        font-size: 10px !important;

        flex-shrink: 0 !important;
    }

}


/* =========================================================
   SMALL PHONES - 300px TO 360px
========================================================= */

@media screen and (min-width: 300px) and (max-width: 360px) {

    .top-bar {
        height: 36px !important;
        min-height: 36px !important;

        padding: 0 6px !important;
    }


    .top-left {
        width: calc(100% - 65px) !important;

        gap: 5px !important;
    }


    .top-left span {
        font-size: 6px !important;
    }


    .top-left i {
        font-size: 7px !important;
    }


    .top-right {
        right: 6px !important;

        width: 58px !important;
        height: 36px !important;

        gap: 7px !important;
    }


    .top-right i {
        font-size: 9px !important;
    }

}

/* =========================================================
   MOBILE NAVBAR
   300px - 500px
========================================================= */

@media screen and (min-width: 300px) and (max-width: 500px) {
 header,
    header.sticky {

        position: relative;

        top: 0;
        left: 0;

        width: 100%;

        height: 72px;

        padding: 0 14px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        background: #ffffff;

        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

        z-index: 1000;
    }


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

    .logo {

        position: static !important;

        display: flex;

        align-items: center;

        gap: 7px;

        height: 72px;

        flex-shrink: 0;
    }


    /* LOGO IMAGE */

    .logo img {

        position: static !important;

        left: auto !important;

        top: auto !important;

        width: 50px;

        height: 50px;

        object-fit: contain;

        margin: 0 !important;

        padding: 0 !important;

        transform: none !important;
    }


    /* COMPANY NAME */

    .logo h2 {

        position: static !important;
        

        left: auto !important;

        top: auto !important;

        bottom: auto !important;

        margin: 0 !important;

        padding: 0 !important;

        color: #0b1d39;

        font-size: 22px;

        line-height: 20px;

        font-weight: 900;

        letter-spacing: 3px;

        white-space: nowrap;
    }


    /* ELECTRICAL SERVICES */

    .logo1 {

        position: static !important;

        display: block;

        color: #0b1d39;

        font-size: 8px;

        line-height: 10px;

        font-weight: 500;

        letter-spacing: 0;

        white-space: nowrap;
    }


    /* =====================================================
       DESKTOP NAV
       ===================================================== */

    nav#mobileNav {

        position: absolute;

        top: 72px;

        right: -230px;

        width: 220px;

        background: #ffffff;

        box-shadow: -5px 8px 20px rgba(0, 0, 0, 0.20);

        display: block;

        z-index: 2500;

        transition: right 0.4s ease;
    }


    /* =====================================================
       NAV OPEN
       ===================================================== */

    nav#mobileNav.mobile-active {

        right: 0;
    }


    /* =====================================================
       NAV UL
       ===================================================== */

    nav#mobileNav ul {

        display: flex;

        flex-direction: column;

        width: 100%;

        margin: 0;

        padding: 8px 0;

        gap: 0;

        list-style: none;
    }


    /* =====================================================
       NAV LI
       ===================================================== */

    nav#mobileNav ul li {

        width: 100%;

        margin: 0;

        padding: 0;

        position: relative;
    }


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

    nav#mobileNav ul li a {

        display: block;

        width: 100%;

        padding: 15px 20px;

        color: #0b1d39;

        background: #ffffff;

        font-size: 16px;

        font-weight: 500;

        line-height: 1.2;

        text-decoration: none;

        transition: 0.3s;
    }


    /* HOVER */

    nav#mobileNav ul li a:hover {

        background: #f7f7f7;

        color: #f4c542;
    }


    /* ACTIVE */

    nav#mobileNav ul li a.active {

        color: #f4c542;

        background: #fafafa;
    }


    /* REMOVE DESKTOP UNDERLINES */

    nav#mobileNav ul li::after {

        display: none !important;

        content: none;
    }


    nav#mobileNav ul li a.active::after {

        display: none !important;

        content: none;
    }


    /* =====================================================
       HAMBURGER BUTTON
       ===================================================== */

    .menu-button {

        display: flex !important;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        gap: 5px;

        width: 40px;

        height: 40px;

        padding: 0;

        margin: 0;

        background: #ffffff;

        border: 1px solid #222222;

        border-radius: 3px;

        cursor: pointer;

        flex-shrink: 0;

        z-index: 3000;
    }


    /* HAMBURGER LINES */

    .menu-button span {

        display: block;

        width: 24px;

        height: 3px;

        background: #111111;

        border-radius: 2px;

        transition: all 0.3s ease;
    }


    /* =====================================================
       HAMBURGER → X
       ===================================================== */

    .menu-button.active span:nth-child(1) {

        transform: translateY(8px) rotate(45deg);
    }


    .menu-button.active span:nth-child(2) {

        opacity: 0;
    }


    .menu-button.active span:nth-child(3) {

        transform: translateY(-8px) rotate(-45deg);
    }

}


/* =====================================================
   CONTACT HERO - MOBILE RESPONSIVE
   300px to 500px
===================================================== */

@media screen and (min-width: 300px) and (max-width: 500px) {

    .contact-hero {

        position: relative;

        width: 100%;

        height: 300px;

        min-height: 300px;

        overflow: hidden;

    }


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

    .contact-hero-image {

        position: absolute;

        top: 0;
        left: 0;

        width: 100%;
        height: 100%;

        background-size: cover;

        background-position: center center;

        background-repeat: no-repeat;

    }


    /* =================================================
       DARK OVERLAY
    ================================================= */

    .contact-hero-overlay {

        position: absolute;

        top: 0;
        left: 0;

        width: 100%;
        height: 100%;

        background: rgba(5, 25, 55, 0.60);

        z-index: 1;

    }


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

    .contact-hero-content {

        position: absolute;

        top: 50%;

        left: 0;

        width: 100%;

        transform: translateY(-50%);

        padding: 0 24px;

        z-index: 2;

        text-align: left;

    }


    /* =================================================
       SMALL TITLE
    ================================================= */

    .contact-small-title {

        display: block;

        margin-bottom: 10px;

        color: #f4b400;

        font-size: 11px;

        line-height: 1.2;

        font-weight: 800;

        letter-spacing: 2px;

        text-transform: uppercase;

    }


    /* =================================================
       MAIN HEADING
    ================================================= */

    .contact-hero-content h1 {

        margin: 0;

        color: #ffffff;

        font-size: 28px;

        line-height: 1.1;

        font-weight: 800;

        letter-spacing: -1px;

    }


    /* =================================================
       BREADCRUMB
    ================================================= */

    .contact-breadcrumb {

        display: flex;

        align-items: center;

        flex-wrap: wrap;

        gap: 10px;

        margin-top: 18px;

        font-size: 12px;

        line-height: 1.4;

    }


    .contact-breadcrumb a {

        color: #ffffff;

        text-decoration: none;

        font-weight: 500;

    }


    .contact-breadcrumb span {

        color: #f4b400;

        font-size: 18px;

        font-weight: 700;

    }


    .contact-breadcrumb strong {

        color: #f4b400;

        font-weight: 700;

    }

}


/* =====================================================
   CONTACT SECTION - MOBILE
   300px TO 500px
===================================================== */

@media screen and (min-width: 300px) and (max-width: 500px) {

    .contact-section {

        width: 100%;

        padding: 45px 15px;

        background: #f5f7fb;

        overflow: hidden;

    }


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

    .contact-container {

        width: 100%;

        max-width: 100%;

        margin: 0 auto;

        display: flex;

        flex-direction: column;

        gap: 35px;

    }


    /* =================================================
       LEFT INFORMATION
    ================================================= */

    .contact-information {

        width: 100%;

        padding: 0 5px;

        order: 1;

    }


    /* SMALL TITLE */

    .section-small-title {

        display: block;

        margin-bottom: 10px;

        font-size: 13px;

        line-height: 1.3;

        letter-spacing: 2px;

        font-weight: 800;

        color: #ffb800;

    }


    /* MAIN HEADING */

    .contact-information h2 {

        margin: 0 0 18px 0;

        font-size: 32px;

        line-height: 1.15;

        font-weight: 800;

        color: #0b2d63;

    }


    .contact-information h2 span {

        display: block;

        color: #ffb800;

    }


    /* DESCRIPTION */

    .contact-information > p {

        margin: 0 0 30px 0;

        font-size: 15px;

        line-height: 1.7;

        color: #667085;

    }


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

    .contact-item {

        display: flex;

        align-items: center;

        gap: 15px;

        width: 100%;

        margin-bottom: 22px;

    }


    /* ICON */

    .contact-icon {

        width: 55px;

        height: 55px;

        min-width: 55px;

        display: flex;

        align-items: center;

        justify-content: center;

        background: #ffb800;

        border-radius: 10px;

    }


    .contact-icon i {

        font-size: 20px;

        color: #0b2d63;

    }


    /* ITEM HEADING */

    .contact-item h3 {

        margin: 0 0 4px 0;

        font-size: 17px;

        line-height: 1.3;

        color: #0b2d63;

    }


    /* ITEM TEXT */

    .contact-item p {

        margin: 0;

        font-size: 14px;

        line-height: 1.4;

        color: #667085;

        word-break: break-word;

    }


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

    .social-section {

        margin-top: 25px;

    }


    .social-section h3 {

        margin: 0 0 12px 0;

        font-size: 18px;

        color: #0b2d63;

    }


    .social-icons {

        display: flex;

        align-items: center;

        gap: 10px;

    }


    .social-icons a {

        width: 40px;

        height: 40px;

        display: flex;

        align-items: center;

        justify-content: center;

        background: #0b2d63;

        color: #ffffff;

        border-radius: 6px;

        text-decoration: none;

    }


    .social-icons i {

        font-size: 15px;

    }


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

    .contact-form-box {

        width: 100%;

        order: 2;

        padding: 25px 20px;

        background: #ffffff;

        border-radius: 16px;

        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

    }


    /* FORM SMALL TITLE */

    .form-small-title {

        display: block;

        margin-bottom: 10px;

        font-size: 13px;

        line-height: 1.3;

        letter-spacing: 2px;

        font-weight: 800;

        color: #ffb800;

    }


    /* FORM HEADING */

    .contact-form-box h2 {

        margin: 0 0 12px 0;

        font-size: 29px;

        line-height: 1.2;

        font-weight: 800;

        color: #0b2d63;

    }


    /* FORM DESCRIPTION */

    .form-description {

        margin: 0 0 25px 0;

        font-size: 14px;

        line-height: 1.6;

        color: #667085;

    }


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

    .form-row {

        display: flex;

        flex-direction: column;

        gap: 18px;

        width: 100%;

    }


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

    .form-group {

        width: 100%;

        margin-bottom: 18px;

    }


    .form-group label {

        display: block;

        margin-bottom: 7px;

        font-size: 14px;

        font-weight: 700;

        color: #0b2d63;

    }


    /* =================================================
       INPUTS
    ================================================= */

    .form-group input {

        width: 100%;

        height: 48px;

        padding: 0 14px;

        border: 1px solid #d8dce3;

        border-radius: 7px;

        background: #ffffff;

        font-size: 14px;

        color: #333333;

        outline: none;

        box-sizing: border-box;

    }


    .form-group textarea {

        width: 100%;

        min-height: 130px;

        padding: 12px 14px;

        border: 1px solid #d8dce3;

        border-radius: 7px;

        background: #ffffff;

        font-size: 14px;

        color: #333333;

        resize: vertical;

        outline: none;

        box-sizing: border-box;

    }


    /* =================================================
       BUTTON
    ================================================= */

    .submit-button {

        width: 100%;

        min-height: 48px;

        padding: 12px 18px;

        border: none;

        border-radius: 7px;

        background: #0b2d63;

        color: #ffffff;

        font-size: 14px;

        font-weight: 700;

        cursor: pointer;

    }


    .submit-button i {

        margin-right: 7px;

    }

}


/* ================================
   MAP - MOBILE 300px TO 500px
================================ */

@media (min-width: 300px) and (max-width: 500px) {

    .map-section {
        width: 100%;
        height: 280px;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .map-section iframe {
        width: 100%;
        height: 100%;
        display: block;
        border: none;
    }

}


/* =========================================================
   FOOTER - MOBILE VIEW 300px TO 500px
========================================================= */

@media screen and (min-width: 300px) and (max-width: 500px) {

    .main-footer {
        width: 100%;
        padding: 30px 30px;
        box-sizing: border-box;
    }

    .footer-container {
        width: 100%;
        max-width: 390px;
        margin: 0 auto;

        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 25px;

        box-sizing: border-box;
    }


    /* =========================================
       ALL FOOTER COLUMNS
    ========================================= */

    .footer-column {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }


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

    .footer-column:first-child {
        text-align: left;
    }

    .footer-brand {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 15px;
    }

    .footer-brand img {
        width: 38px;
        height: 50px;
    }

    .brand-text h2 {
        font-size: 22px;
        line-height: 20px;
        margin: 0;
    }

    .brand-text p {
        font-size: 7px;
        margin: 3px 0 0;
    }

    .footer-column:first-child > p {
        font-size: 12px;
        line-height: 18px;
        margin: 0;
        max-width: 180px;
    }


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

    .footer-social {
        display: flex;
        align-items: center;
        gap: 9px;
        margin-top: 15px;
    }

    .footer-social a {
        width: 30px;
        height: 30px;

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

        border-radius: 50%;
    }

    .footer-social i {
        font-size: 13px;
    }


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

    .footer-column h3 {

        position: relative;
        font-size: 22px;
        line-height: 20px;

        margin: 0 0 15px 0;

        white-space: nowrap;
        top: 10px;
        left: 10px;
    }


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

    .footer-column:nth-child(2) ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .footer-column:nth-child(2) li {
        margin-bottom: 10px;
    }

    .footer-column:nth-child(2) a {
        position: relative;
        font-size: 15px;
        text-decoration: none;
        top: 10px;
        left: 50px;
    }


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

    .footer-column:nth-child(3) {
        grid-column: 1;
    }

    .footer-column:nth-child(3) ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .footer-column:nth-child(3) li {
        margin-bottom: 10px;
    }

    .footer-column:nth-child(3) a {
        position: relative;
        font-size: 12px;
        line-height: 17px;
        text-decoration: none;
        top: 10px;
        left: 18px;
    }


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

    .footer-column:nth-child(4) {
        grid-column: 2;
    }

    .contact-list {
        position: relative;
        margin: 0;
        padding: 0;
        list-style: none;
        margin-top: 35px;
        left: 10px;
    }

    .contact-list li {
        display: flex;
        align-items: flex-start;

        gap: 8px;

        font-size: 11px;
        line-height: 17px;

        margin-bottom: 12px;
        
    }

    .contact-list i {
        min-width: 15px;
        font-size: 12px;
        margin-top: 2px;
    }


    /* =========================================
       GET A FREE QUOTE
       5TH COLUMN - CENTER
    ========================================= */

    .footer-column:nth-child(5) {
        grid-column: 1 / 3;

        width: 100%;
        max-width: 280px;

        justify-self: center;

        text-align: center;

        margin-top: 5px;
    }

    .footer-column:nth-child(5) h3 {
        text-align: center;
        font-size: 17px;
        margin-bottom: 15px;
    }


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

    .footer-form {
        width: 100%;
    }

    .footer-form input {
        width: 100%;
        height: 42px;

        margin-bottom: 10px;

        padding: 0 12px;

        box-sizing: border-box;

        font-size: 12px;
    }

    .footer-form button {
        width: 100%;
        height: 44px;

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

        border: none;
        border-radius: 5px;
    }

}


/* =========================================================
   SMALL PHONES 300px - 360px
========================================================= */

@media screen and (min-width: 300px) and (max-width: 360px) {

    .main-footer {
        padding: 25px 15px;
    }

    .footer-container {
        gap: 27px 18px;
    }

    .footer-column:first-child > p {
        font-size: 11px;
        line-height: 16px;
    }

    .footer-column h3 {
        font-size: 15px;
    }

    .footer-column:nth-child(2) a,
    .footer-column:nth-child(3) a {
        font-size: 11px;
    }

    .contact-list li {
        font-size: 10px;
        line-height: 15px;
    }

}


/* =========================================================
   361px - 500px
========================================================= */

@media screen and (min-width: 361px) and (max-width: 500px) {

    .footer-container {
        max-width: 420px;
        gap: 32px 28px;
    }

    .footer-column:first-child > p {
        font-size: 13px;
        line-height: 19px;
    }

    .footer-column:nth-child(2) a,
    .footer-column:nth-child(3) a {
        font-size: 13px;
    }

    .contact-list li {
        font-size: 12px;
        line-height: 18px;
    }

}


/* =========================================================
   FOOTER BOTTOM - MOBILE VIEW
========================================================= */

@media screen and (min-width: 300px) and (max-width: 500px) {

    .footer-bottom {
        width: 100%;
        padding: 15px 10px;
        box-sizing: border-box;
    }

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

        display: flex;
        flex-direction: column;

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

        gap: 10px;

        text-align: center;
    }

    /* Copyright */

    .copyright {
        width: 100%;

        font-size: 11px;
        line-height: 16px;

        text-align: center;
    }

    /* Privacy + Terms */

    .footer-policy {
        width: 100%;

        display: flex;

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

        gap: 10px;

        font-size: 11px;
        line-height: 16px;

        text-align: center;
    }

    .footer-policy a {
        font-size: 11px;

        text-decoration: none;

        white-space: nowrap;
    }

    .footer-policy span {
        font-size: 11px;
    }
}


/* =========================================================
   CONTACT PAGE RESPONSIVE
   800px - 1080px
========================================================= */

@media screen and (min-width: 800px) and (max-width: 1080px) {

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

    * {
        box-sizing: border-box;
    }

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }


    /* =====================================================
       TOP BAR
    ===================================================== */

    .top-bar {
        position: fixed !important;

        top: 0;
        left: 0;

        width: 100%;
        height: 40px;

        padding: 0 25px !important;

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

        z-index: 1001;

        transition:
            transform .4s ease,
            opacity .4s ease;
    }

    .top-left {
        display: flex;

        align-items: center;

        gap: 18px;

        font-size: 12px;
    }

    .top-left span {
        display: flex;

        align-items: center;

        gap: 6px;

        white-space: nowrap;
    }

    .top-right {
        display: flex;

        align-items: center;

        gap: 14px;

        font-size: 13px;
    }

    .top-bar.hide-topbar {
        transform: translateY(-100%);
        opacity: 0;

        pointer-events: none;
    }


    /* =====================================================
       NAVBAR
    ===================================================== */

    header,
    header.sticky {
        position: fixed !important;

        left: 0;

        width: 100%;

        height: 65px;

        padding: 0 25px !important;

        display: flex;

        align-items: center;

        justify-content: space-between;

        background: #fff;

        z-index: 1000;

        transition:
            top .4s ease,
            box-shadow .4s ease;
    }

    header {
        top: 40px;
    }

    header.sticky {
        top: 0;

        box-shadow:
            0 8px 20px rgba(0,0,0,.15);
    }


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

    .logo {
        position: static !important;

        display: flex !important;

        align-items: center;

        gap: 8px;

        height: 76px;

        flex-shrink: 0;
    }

    .logo img {
        position: static !important;

        left: auto !important;
        top: auto !important;

        width: 58px !important;
        height: 58px !important;

        object-fit: contain;

        margin: 0 !important;

        padding: 0 !important;

        transform: none !important;
    }

    .logo h2 {
        position: static !important;

        left: auto !important;
        top: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        font-size: 25px !important;

        line-height: 23px;

        letter-spacing: 3px;

        white-space: nowrap;
    }

    .logo1 {
        position: static !important;

        display: block;

        font-size: 10px !important;

        line-height: 13px;

        letter-spacing: 0;

        white-space: nowrap;
    }


    /* =====================================================
       NAVIGATION
       NO HAMBURGER
    ===================================================== */

    nav#mobileNav {
        position: static !important;

        display: block !important;

        width: auto !important;

        margin-left: auto;

        background: transparent !important;

        box-shadow: none !important;

        transition: none !important;
    }

    nav#mobileNav ul {
        display: flex !important;

        flex-direction: row !important;

        align-items: center;

        justify-content: flex-end;

        gap: 17px !important;

        margin: 0 !important;

        padding: 0 !important;

        list-style: none;
    }

    nav#mobileNav ul li {
        width: auto !important;

        margin: 0 !important;

        padding: 0 !important;
    }

    nav#mobileNav ul li a {
        display: inline-block;

        padding: 7px 0 !important;

        font-size: 13px !important;

        line-height: 1.2;

        white-space: nowrap;

        color: #000;

        background: transparent !important;
    }

    nav#mobileNav ul li a:hover {
        color: #f4c542;
    }

    nav#mobileNav ul li a.active {
        color: #f4c542;
    }

    nav#mobileNav ul li::after {
        bottom: -3px;

        height: 2px;
    }

    .menu-button {
        display: none !important;

        visibility: hidden !important;

        pointer-events: none !important;
    }


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

    .contact-hero {
        position: relative;

        width: 100%;

        height: 400px !important;

        min-height: 400px;

        overflow: hidden;
    }

    .contact-hero-image {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        background-size: cover !important;

        background-position: center !important;

        background-repeat: no-repeat;
    }

    .contact-hero-overlay {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        background: rgba(5, 24, 55, .58);

        z-index: 1;
    }

    .contact-hero-content {
        position: relative;

        z-index: 2;

        width: 100%;
        height: 100%;

        padding: 0 7%;

        display: flex;

        flex-direction: column;

        justify-content: center;

        align-items: flex-start;

        text-align: left;
    }

    .contact-small-title {
        font-size: 13px !important;

        line-height: 1.4;

        letter-spacing: 1.5px;

        margin-bottom: 10px;
    }

    .contact-hero-content h1 {
        font-size: 46px !important;

        line-height: 1.15 !important;

        margin: 0 0 15px !important;
    }

    .contact-breadcrumb {
        display: flex;

        align-items: center;

        gap: 8px;

        font-size: 13px !important;

        line-height: 1.4;
    }


   /* =====================================================
   FINAL CONTACT FIX
   800px - 1080px
===================================================== */


/* =====================================================
   CONTACT MAIN CONTAINER
   FORM MUST COME BELOW INFORMATION
===================================================== */

.contact-section .contact-container {
    width: 100% !important;

    display: flex !important;

    flex-direction: column !important;

    align-items: center !important;

    gap: 55px !important;

    margin: 0 auto !important;
}


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

.contact-section .contact-information {
    width: 100% !important;

    max-width: 950px !important;

    margin: 0 auto !important;

    padding: 0 !important;

    display: grid !important;

    grid-template-columns:
        repeat(3, minmax(0, 1fr)) !important;

    column-gap: 35px !important;

    row-gap: 0 !important;

    text-align: center !important;
}


/* =====================================================
   CONNECT WITH US
===================================================== */

.contact-section .section-small-title {
    grid-column: 1 / -1 !important;

    width: 100% !important;

    margin: 0 0 12px !important;

    text-align: center !important;

    font-size: 13px !important;

    letter-spacing: 1.8px !important;
}


/* =====================================================
   MAIN TITLE
===================================================== */

.contact-section .contact-information > h2 {
    grid-column: 1 / -1 !important;

    width: 100% !important;

    max-width: 850px !important;

    margin: 0 auto 18px !important;

    text-align: center !important;

    font-size: 38px !important;

    line-height: 1.25 !important;
}


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

.contact-section .contact-information > p {
    grid-column: 1 / -1 !important;

    width: 100% !important;

    max-width: 750px !important;

    margin: 0 auto 40px !important;

    text-align: center !important;

    font-size: 13px !important;

    line-height: 1.75 !important;
}


/* =====================================================
   LOCATION / EMAIL / PHONE
===================================================== */

.contact-section .contact-information > .contact-item {
    width: 100% !important;

    min-width: 0 !important;

    display: flex !important;

    flex-direction: row !important;

    align-items: center !important;

    justify-content: flex-start !important;

    gap: 12px !important;

    margin: 0 !important;

    padding: 0 !important;

    text-align: left !important;

    box-sizing: border-box !important;
}


/* =====================================================
   ICON
===================================================== */

.contact-section .contact-information > .contact-item .contact-icon {
    width: 52px !important;

    height: 52px !important;

    min-width: 52px !important;

    flex-shrink: 0 !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    border-radius: 50% !important;
}


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

.contact-section .contact-information > .contact-item h3 {
    margin: 0 0 4px !important;

    padding: 0 !important;

    font-size: 15px !important;

    line-height: 1.3 !important;

    text-align: left !important;

    white-space: nowrap !important;
}

.contact-section .contact-information > .contact-item p {
    margin: 0 !important;

    padding: 0 !important;

    font-size: 11px !important;

    line-height: 1.5 !important;

    text-align: left !important;

    white-space: nowrap !important;
}


/* =====================================================
   FOLLOW US
===================================================== */

.contact-section .social-section {
    grid-column: 1 / -1 !important;

    width: 100% !important;

    margin: 38px auto 0 !important;

    text-align: center !important;

    clear: both !important;
}

.contact-section .social-section h3 {
    margin: 0 0 14px !important;

    font-size: 16px !important;

    text-align: center !important;
}


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

.contact-section .social-icons {
    width: 100% !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 14px !important;

    margin: 0 !important;
}

.contact-section .social-icons a {
    width: 42px !important;

    height: 42px !important;

    min-width: 42px !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;
}


/* =====================================================
   SEND US A MESSAGE
   MUST BE BELOW
===================================================== */

.contact-section .contact-form-box {
    width: 100% !important;

    max-width: 900px !important;

    margin: 0 auto !important;

    flex-shrink: 0 !important;
}


/* =====================================================
   EXTRA TOP SPACE
   PREVENT FIXED NAVBAR FROM COVERING TITLE
===================================================== */

.contact-section {
    padding-top: 100px !important;
}


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

    .map-section {
        width: 100%;

        height: 350px !important;

        overflow: hidden;

        margin: 0;

        padding: 0;
    }

    .map-section iframe {
        display: block;

        width: 100% !important;

        height: 100% !important;

        border: 0;
    }


    /* =====================================================
   FOOTER - 800px TO 1080px
===================================================== */

.footer-container {
    width: 100% !important;

    padding: 10px 0% !important;

    display: grid !important;

    /* 6 equal columns */
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;

    column-gap: 25px !important;

    row-gap: 50px !important;

    align-items: start !important;

    overflow: visible !important;
}


/* =====================================================
   FIRST ROW - 3 COLUMNS
===================================================== */

/* COMPANY */

.footer-column:nth-child(1) {
    grid-column: 1 / 3 !important;

    grid-row: 1 !important;

    width: 100% !important;

    min-width: 0 !important;
}


/* QUICK LINKS */

.footer-column:nth-child(2) {
    grid-column: 3 / 5 !important;

    grid-row: 1 !important;

    width: 100% !important;

    min-width: 0 !important;
}


/* OUR SERVICES */

.footer-column:nth-child(3) {
    grid-column: 5 / 7 !important;

    grid-row: 1 !important;

    width: 100% !important;

    min-width: 0 !important;
}


/* =====================================================
   SECOND ROW
   EXACT CENTER
===================================================== */

/* CONTACT INFO */

.footer-column:nth-child(4) {
    grid-column: 2 / 4 !important;

    grid-row: 2 !important;

    width: 100% !important;

    min-width: 0 !important;

    justify-self: stretch !important;

    margin: 0 !important;
}


/* FREE QUOTE */

.footer-column:nth-child(5) {
    grid-column: 4 / 6 !important;

    grid-row: 2 !important;

    width: 100% !important;

    min-width: 0 !important;

    justify-self: stretch !important;

    margin: 0 !important;
}


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

.footer-brand {
    display: flex !important;

    align-items: center !important;

    gap: 8px !important;

    width: 100% !important;
}

.footer-brand img {
    width: 50px !important;

    height: 50px !important;

    flex-shrink: 0 !important;

    object-fit: contain !important;
}

.footer-brand .brand-text {
    min-width: 0 !important;
}

.footer-brand .brand-text h2 {
    font-size: 27px !important;

    line-height: 1 !important;

    letter-spacing: 3px !important;

    white-space: nowrap !important;

    margin: 0 !important;
}

.footer-brand .brand-text p {
    font-size: 8px !important;

    line-height: 1 !important;

    letter-spacing: 2px !important;

    white-space: nowrap !important;

    margin: 6px 0 0 !important;
}


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

.footer-column:nth-child(1) > p {
    width: 100% !important;

    max-width: 280px !important;

    margin: 28px 0 0 !important;

    font-size: 12px !important;

    line-height: 1.7 !important;
}


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

.footer-column h3 {
    font-size: 20px !important;

    line-height: 1.3 !important;

    margin: 0 0 20px !important;
}


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

.footer-column ul {
    position: relative;
    
    margin: 0 !important;

    padding: 0 !important;
}

.footer-column ul li {
    font-size: 14px !important;

    line-height: 1.6 !important;

    margin-bottom: 11px !important;
}


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

.footer-column:nth-child(4) .contact-list li {
    display: flex !important;

    align-items: flex-start !important;

    gap: 8px !important;

    font-size: 13px !important;

    line-height: 1.6 !important;

    margin-bottom: 12px !important;
}


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

.footer-social {
    display: flex !important;

    gap: 10px !important;

    margin-top: 25px !important;
}

.footer-social a {
    width: 38px !important;

    height: 38px !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;
}


/* =====================================================
   FREE QUOTE
===================================================== */

.footer-form {
    width: 100% !important;

    max-width: 260px !important;
}

.footer-form input {
    width: 100% !important;

    height: 42px !important;

    padding: 0 12px !important;

    margin-bottom: 12px !important;

    font-size: 12px !important;

    box-sizing: border-box !important;
}

.footer-form button {
    width: 100% !important;

    height: 42px !important;

    font-size: 12px !important;
}


   

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

    .footer-bottom {
        width: 100%;

        padding: 18px 5% !important;
    }

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

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 20px;
    }

    .copyright {
        font-size: 10px;
    }

    .footer-policy {
        display: flex;

        align-items: center;

        gap: 8px;

        font-size: 10px;
    }

}





/* =========================================================
   FINAL MOBILE NAV FIX
   300px - 1080px TOUCH DEVICES
   MENU MUST BE HIDDEN UNTIL ☰ IS CLICKED
========================================================= */

@media screen and (hover: none) and (pointer: coarse) and (max-width: 1080px) {

    /* =========================================
       NAV HIDDEN BY DEFAULT
       ========================================= */

    nav#mobileNav {
        position: fixed !important;

        top: 72px !important;
        right: -240px !important;
        left: auto !important;

        width: 220px !important;
        height: auto !important;

        display: block !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #ffffff !important;

        box-shadow: -5px 8px 20px rgba(0,0,0,0.20) !important;

        z-index: 9999 !important;

        opacity: 0 !important;
        visibility: hidden !important;

        pointer-events: none !important;

        transform: translateX(0) !important;

        transition:
            right 0.35s ease,
            opacity 0.2s ease,
            visibility 0.2s ease !important;
    }


    /* =========================================
       ONLY SHOW AFTER ☰ IS CLICKED
       ========================================= */

    nav#mobileNav.mobile-active {
        position: fixed !important;

        top: 72px !important;
        right: 0 !important;
        left: auto !important;

        width: 220px !important;

        display: block !important;

        opacity: 1 !important;
        visibility: visible !important;

        pointer-events: auto !important;

        z-index: 9999 !important;
    }


    /* =========================================
       MENU LIST
       ========================================= */

    nav#mobileNav ul {
        display: flex !important;

        flex-direction: column !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 8px 0 !important;

        gap: 0 !important;

        list-style: none !important;
    }


    /* =========================================
       MENU ITEMS
       ========================================= */

    nav#mobileNav ul li {
        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        position: relative !important;
    }


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

    nav#mobileNav ul li a {
        display: block !important;

        width: 100% !important;

        box-sizing: border-box !important;

        padding: 15px 20px !important;

        color: #0b1d39 !important;

        background: #ffffff !important;

        font-size: 16px !important;

        font-weight: 500 !important;

        line-height: 1.2 !important;

        text-decoration: none !important;

        white-space: nowrap !important;
    }


    /* =========================================
       ACTIVE LINK
       ========================================= */

    nav#mobileNav ul li a.active {
        color: #f4c542 !important;

        background: #fafafa !important;
    }


    /* =========================================
       REMOVE DESKTOP UNDERLINES
       ========================================= */

    nav#mobileNav ul li::after,
    nav#mobileNav ul li a::after,
    nav#mobileNav ul li a.active::after {
        display: none !important;

        content: none !important;
    }


    /* =========================================
       HAMBURGER
       ========================================= */

    .menu-button {
        display: flex !important;

        visibility: visible !important;

        opacity: 1 !important;

        pointer-events: auto !important;

        z-index: 10000 !important;
    }

}

/* =========================================================
   TABLET / DESKTOP VIEW
   800px - 1080px
   SHOW NAVIGATION HEADINGS
   HIDE HAMBURGER
========================================================= */

@media screen and (min-width: 800px) and (max-width: 1080px) {

    /* =========================================
       SHOW HOME / ABOUT / SERVICES / CONTACT
    ========================================= */

    nav#mobileNav {

        position: static !important;

        top: auto !important;
        right: auto !important;
        left: auto !important;

        width: auto !important;
        height: auto !important;

        display: block !important;

        margin-left: auto !important;
        padding: 0 !important;

        background: transparent !important;

        box-shadow: none !important;

        opacity: 1 !important;
        visibility: visible !important;

        pointer-events: auto !important;

        transform: none !important;

        transition: none !important;

        z-index: 1000 !important;
    }


    /* =========================================
       NAVIGATION ROW
    ========================================= */

    nav#mobileNav ul {

        display: flex !important;

        flex-direction: row !important;

        align-items: center !important;

        justify-content: flex-end !important;

        width: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        gap: 25px !important;

        list-style: none !important;
    }


    /* =========================================
       NAV ITEMS
    ========================================= */

    nav#mobileNav ul li {

        width: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        position: relative !important;
    }


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

    nav#mobileNav ul li a {

        display: inline-block !important;

        width: auto !important;

        padding: 8px 0 !important;

        color: #000000 !important;

        background: transparent !important;

        font-size: 14px !important;

        font-weight: 500 !important;

        line-height: 1.2 !important;

        text-decoration: none !important;

        white-space: nowrap !important;
    }


    /* =========================================
       HOVER
    ========================================= */

    nav#mobileNav ul li a:hover {

        color: #f4c542 !important;

        background: transparent !important;
    }


    /* =========================================
       ACTIVE PAGE
    ========================================= */

    nav#mobileNav ul li a.active {

        color: #f4c542 !important;

        background: transparent !important;
    }


    /* =========================================
       HAMBURGER MUST NOT SHOW
    ========================================= */

    .menu-button {

        display: none !important;

        visibility: hidden !important;

        opacity: 0 !important;

        pointer-events: none !important;
    }

}




/* =========================================================
   FINAL MOBILE WIDTH / HORIZONTAL OVERFLOW FIX
   300px - 500px
========================================================= */

@media screen and (min-width: 300px) and (max-width: 500px) {

    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow-x: hidden !important;
    }


    /* =========================================
       ALL MAIN ELEMENTS
    ========================================= */

    *,
    *::before,
    *::after {
        box-sizing: border-box !important;
    }


    section,
    header,
    footer,
    main,
    nav,
    div {
        max-width: 100% !important;
    }


    /* =========================================
       IMAGES
    ========================================= */

    img {
        max-width: 100% !important;
    }


    /* =========================================
       PREVENT WIDE TEXT
    ========================================= */

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p {
        max-width: 100% !important;
        overflow-wrap: break-word !important;
    }


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

    header,
    header.sticky {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }


    /* =========================================
       TOP BAR
    ========================================= */

    .top-bar {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }


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

    .about-hero,
    .about,
    .about-section,
    .services,
    .industries,
    .projects,
    .contact-section,
    .main-footer {
        width: 100% !important;
        max-width: 100% !important;
    }


    /* =========================================
       CONTAINERS
    ========================================= */

    .container,
    .about .container,
    .services .container,
    .contact-container,
    .footer-container {
        width: 100% !important;
        max-width: 100% !important;
    }


    /* =========================================
       PREVENT TABLE / GRID OVERFLOW
    ========================================= */

    .about *,
    .services *,
    .industries *,
    .projects *,
    .contact-section *,
    .main-footer * {
        max-width: 100%;
    }

}


/* =========================================================
   FINAL MOBILE WIDTH / ZOOM-OUT FIX
   TOUCH DEVICES ONLY
   KEEPS MOBILE CONTENT FITTED TO SCREEN
========================================================= */

@media screen and (hover: none) and (pointer: coarse) and (max-width: 799px) {

    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow-x: hidden !important;
    }


    /* =========================================
       IMPORTANT - PREVENT ANY ELEMENT
       FROM CREATING RIGHT-SIDE SPACE
    ========================================= */

    *,
    *::before,
    *::after {
        box-sizing: border-box !important;
    }


    /* =========================================
       MAIN PAGE ELEMENTS
    ========================================= */

    body > *,
    main,
    section,
    header,
    footer,
    nav,
    div {
        max-width: 100% !important;
    }


    /* =========================================
       IMAGES
    ========================================= */

    img {
        max-width: 100% !important;
    }


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

    header,
    header.sticky {
        width: 100% !important;
        max-width: 100% !important;

        left: 0 !important;
        right: 0 !important;
    }


    /* =========================================
       TOP BAR
    ========================================= */

    .top-bar {
        width: 100% !important;
        max-width: 100% !important;

        left: 0 !important;
        right: 0 !important;
    }


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

    .about-hero,
    .contact-hero,
    .projects-hero,
    .service-hero {
        width: 100% !important;
        max-width: 100% !important;

        margin-left: 0 !important;
        margin-right: 0 !important;
    }


    /* =========================================
       MAIN SECTIONS
    ========================================= */

    .about,
    .about-section,
    .services,
    .industries,
    .projects,
    .contact-section,
    .map-section,
    .main-footer {
        width: 100% !important;
        max-width: 100% !important;

        margin-left: 0 !important;
        margin-right: 0 !important;
    }


    /* =========================================
       COMMON CONTAINERS
    ========================================= */

    .container,
    .about .container,
    .services .container,
    .contact-container,
    .footer-container,
    .service-container,
    .industry-container {
        width: 100% !important;
        max-width: 100% !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    /* =========================================
       PREVENT TEXT FROM MAKING PAGE WIDER
    ========================================= */

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    a,
    span {
        max-width: 100% !important;

        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
    }


    /* =========================================
       FORMS
    ========================================= */

    input,
    textarea,
    select,
    button {
        max-width: 100% !important;
    }


    /* =========================================
       MOBILE NAV
       HIDDEN UNTIL MENU BUTTON IS CLICKED
    ========================================= */

    nav#mobileNav {
        position: fixed !important;

        top: 72px !important;
        right: -240px !important;
        left: auto !important;

        width: 220px !important;
        max-width: 220px !important;

        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;

        z-index: 9999 !important;

        transition:
            right 0.35s ease,
            opacity 0.2s ease,
            visibility 0.2s ease !important;
    }


    /* =========================================
       SHOW ONLY AFTER HAMBURGER CLICK
    ========================================= */

    nav#mobileNav.mobile-active {
        right: 0 !important;

        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;

        width: 220px !important;
        max-width: 220px !important;
    }


    /* =========================================
       HAMBURGER ALWAYS VISIBLE
    ========================================= */

    .menu-button {
        display: flex !important;

        visibility: visible !important;
        opacity: 1 !important;

        pointer-events: auto !important;
    }
}