/* =========================================
   GOOGLE FONT
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* =========================================
   VARIABLES
========================================= */

:root {

    --primary: #1F2937;
    --secondary: #374151;

    --accent: #F59E0B;
    --accent-hover: #D97706;

    --white: #ffffff;
    --black: #111827;

    --light: #F8FAFC;

    --border: #E5E7EB;

    --container: 1400px;

    --radius: 10px;
    --radius-lg: 16px;

    --transition: .35s ease;

    --shadow-sm:
        0 5px 15px rgba(0, 0, 0, .08);

    --shadow-md:
        0 15px 40px rgba(0, 0, 0, .12);
}


/* =========================================
   RESET
========================================= */

*,
*::before,
*::after {

    box-sizing: border-box;

}


html {

    width: 100%;

    overflow-x: hidden;

}


body {

    margin: 0;

    width: 100%;

    overflow-x: hidden;

    font-family: 'Poppins', sans-serif;

    color: var(--primary);

}


body.menu-open {

    overflow: hidden;

    height: 100vh;

}


/* =========================================
   CONTAINER
========================================= */

.container {

    width: 100%;

    max-width: var(--container);

    margin: auto;

    padding-left: 20px;
    padding-right: 20px;

}


/* =========================================
   TOP HEADER
========================================= */

.top-header {

    background:
        linear-gradient(90deg,
            #1F2937,
            #2B3442);

    color: #fff;

    border-bottom:
        1px solid rgba(255, 255, 255, .08);

}


.top-header .container {

    min-height: 60px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.top-left {

    display: flex;

    align-items: center;

    gap: 18px;

}


.top-left a,
.location {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #fff;

    font-size: 15px;

    font-weight: 500;

    text-decoration: none;

}


.top-left a:hover {

    color: var(--accent);

}


.top-left i,
.location i {

    width: 30px;
    height: 30px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: var(--accent);

    color: #fff;

    border-radius: 6px;

    font-size: 13px;

}


.divider {

    width: 1px;

    height: 24px;

    background:
        rgba(255, 255, 255, .18);

}


/* =========================================
   SOCIAL
========================================= */

.top-right {

    display: flex;

    align-items: center;

    gap: 15px;

}


.top-right span {

    font-size: 15px;

    color: #fff;

    font-weight: 500;

}


.top-right a {

    width: 36px;
    height: 36px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    color: #fff;

    background:
        rgba(255, 255, 255, .08);

    transition: var(--transition);

    text-decoration: none;

}


.top-right a:hover {

    background: var(--accent);

    transform: translateY(-3px);

}


/* =========================================
   MAIN HEADER
========================================= */

.main-header {

    background: #fff;

    position: sticky;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 9000;

    box-shadow: var(--shadow-sm);

}


.nav-container {

    height: 95px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


/* =========================================
   LOGO
========================================= */

.logo {

    flex-shrink: 0;

    display: flex;

    align-items: center;

    text-decoration: none;

}


.logo img {

    height: 70px;

    width: auto;

    display: block;

}


/* =========================================
   NAVIGATION
========================================= */

.navbar {

    margin-left: auto;

    margin-right: 40px;

}


.navbar>ul {

    display: flex;

    align-items: center;

    gap: 38px;

    margin: 0;

    padding: 0;

    list-style: none;

}


.navbar>ul>li {

    position: relative;

}


.navbar>ul>li>a {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--black);

    font-size: 16px;

    font-weight: 600;

    text-transform: uppercase;

    position: relative;

    padding: 35px 0;

    text-decoration: none;

    transition: var(--transition);

}


.navbar>ul>li>a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 26px;

    width: 0;

    height: 3px;

    border-radius: 50px;

    background: var(--accent);

    transition: var(--transition);

}


.navbar>ul>li>a:hover,
.navbar>ul>li>a.active {

    color: var(--accent);

}


.navbar>ul>li>a:hover::after,
.navbar>ul>li>a.active::after {

    width: 100%;

}


.navbar>ul>li>a i {

    font-size: 12px;

    transition: .3s ease;

}


.navbar>ul>li:hover>a i {

    transform: rotate(180deg);

}


/* =========================================
   DROPDOWN
========================================= */

.dropdown {

    position: absolute;

    top: 100%;

    left: 0;

    min-width: 280px;

    margin: 0;

    padding: 12px 0;

    list-style: none;

    background: #fff;

    border-radius: 14px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .12);

    border:
        1px solid rgba(0, 0, 0, .05);

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease;

    z-index: 9999;

}


.navbar li:hover>.dropdown {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.dropdown li {

    width: 100%;

}


.dropdown li a {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 15px 25px;

    color: var(--secondary);

    font-size: 15px;

    font-weight: 500;

    text-decoration: none;

    transition: .3s ease;

}


.dropdown li a:hover {

    background: #F8FAFC;

    color: var(--accent);

    padding-left: 35px;

}


/* =========================================
   HEADER RIGHT
========================================= */

.header-right {

    display: flex;

    align-items: center;

    gap: 20px;

}


/* =========================================
   CALL BOX
========================================= */

.call-box {

    display: flex;

    align-items: center;

    gap: 14px;

    text-decoration: none;

}


.call-icon {

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: #FFF7E8;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: .35s ease;

}


.call-icon i {

    font-size: 18px;

    color: var(--accent);

}


.call-text {

    display: flex;

    flex-direction: column;

}


.call-text span {

    font-size: 13px;

    color: #6B7280;

}


.call-text h5 {

    margin: 0;

    font-size: 15px;

    color: var(--black);

    font-weight: 700;

}


.call-box:hover .call-icon {

    background: var(--accent);

    transform: rotate(-15deg);

}


.call-box:hover .call-icon i {

    color: #fff;

}


/* =========================================
   QUOTE BUTTON
========================================= */

.quote-btn {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    background: var(--accent);

    color: #fff;

    border-radius: 10px;

    font-weight: 600;

    letter-spacing: .3px;

    overflow: hidden;

    position: relative;

    box-shadow:
        0 18px 35px rgba(245, 158, 11, .28);

    text-decoration: none;

    transition: .35s ease;

}


.quote-btn i {

    transition: .35s ease;

}


.quote-btn:hover {

    background: var(--accent-hover);

    transform: translateY(-4px);

    box-shadow:
        0 25px 45px rgba(245, 158, 11, .40);

}


.quote-btn:hover i {

    transform: translateX(6px);

}


/* =========================================
   MOBILE TOGGLE
========================================= */

.mobile-toggle {

    display: none;

    width: 48px;
    height: 48px;

    padding: 0;

    border: 0;

    border-radius: 12px;

    background: #F1F5F9;

    color: var(--primary);

    align-items: center;

    justify-content: center;

    font-size: 21px;

    cursor: pointer;

    transition: .3s ease;

    position: relative;

    z-index: 10002;

}


.mobile-toggle:hover {

    background: var(--accent);

    color: #fff;

}


.mobile-toggle i {

    transition: transform .3s ease;

}


/* =========================================
   MOBILE MENU HEADER
========================================= */

.mobile-menu-header {

    display: none;

}


.mobile-menu-logo {

    display: inline-flex;

    align-items: center;

    text-decoration: none;

}


.mobile-menu-logo img {

    width: 155px;

    height: auto;

    max-width: 100%;

    display: block;

}


/* =========================================
   MENU OVERLAY
========================================= */

.menu-overlay {

    position: fixed;

    inset: 0;

    width: 100vw;

    height: 100vh;

    background:
        rgba(15, 23, 42, .55);

    backdrop-filter: blur(3px);

    -webkit-backdrop-filter: blur(3px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .35s ease,
        visibility .35s ease;

    z-index: 8999;

}


.menu-overlay.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

}


/* =========================================
   STICKY HEADER
========================================= */

.main-header.sticky {

    background:
        rgba(255, 255, 255, .96);

    backdrop-filter: blur(16px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .12);

}


.main-header.sticky .nav-container {

    height: 82px;

}


.main-header.sticky .logo img {

    height: 60px;

}