/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #191919;
}


/* =========================
   HEADER
========================= */

.header {
    width: 100%;
    height: 90px;

    background: #ffffff;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}


/* =========================
   NAVBAR
========================= */

.navbar {
    width: 90%;
    max-width: 1400px;
    height: 100%;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 125px;
    height: 70px;

    object-fit: contain;
    display: block;
}


/* =========================
   NAVIGATION MENU
========================= */

.nav-menu {
    display: flex;
    align-items: center;

    gap: 42px;

    list-style: none;
}


/* =========================
   NAV LINKS
========================= */

.nav-link {
    position: relative;

    color: #222222;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 0.7px;

    padding: 34px 0;

    transition: color 0.3s ease;
}


/* Hover */

.nav-link:hover {
    color: #efa800;
}


/* Underline Effect */

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 24px;

    width: 0;
    height: 2px;

    background: #efa800;

    transition: width 0.3s ease;
}


.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


.nav-link.active {
    color: #efa800;
}


/* =========================
   GET A QUOTE
========================= */

.quote-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    min-width: 145px;
    height: 46px;

    padding: 0 25px;

    background: #efa800;
    color: #111111;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.5px;

    border: 2px solid #efa800;

    border-radius: 4px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.quote-btn:hover {
    background: #111111;
    border-color: #111111;
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.18);
}


/* =========================
   MOBILE BUTTON
========================= */

.menu-toggle {
    width: 35px;
    height: 28px;

    display: none;

    flex-direction: column;
    justify-content: space-between;

    background: transparent;

    border: none;

    cursor: pointer;

    padding: 0;
}


.menu-toggle span {
    width: 100%;
    height: 3px;

    background: #181818;

    border-radius: 3px;

    transition: all 0.3s ease;
}


/* Hamburger -> X */

.menu-toggle.active span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}


.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}


.menu-toggle.active span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}


/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

    .navbar {
        width: 92%;
    }

    .nav-menu {
        gap: 25px;
    }

    .nav-link {
        font-size: 13px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .header {
        height: 75px;
    }

    .logo img {
        width: 100px;
        height: 60px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
        transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    }

    .nav-menu.active {
        max-height: 450px;
        opacity: 1;
        padding: 15px 0 30px;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 18px 20px;
    }

    .nav-link::after {
        display: none;
    }

    .quote-btn {
        margin-top: 12px;
    }

}









/* ========================================
   CONTACT PAGE SUB BANNER
======================================== */

.contact-banner {
    position: relative;

    width: 100%;
    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image: url("contact-banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 140px 10% 90px;
}


/* ========================================
   DARK OVERLAY
======================================== */

.contact-banner-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, 0.96) 0%,
            rgba(8, 8, 8, 0.88) 42%,
            rgba(8, 8, 8, 0.58) 72%,
            rgba(8, 8, 8, 0.40) 100%
        );
}


/* ========================================
   GRID LINES
======================================== */

.contact-banner-grid {
    position: absolute;
    inset: 0;

    z-index: 2;

    pointer-events: none;

    background-image:
        linear-gradient(
            to right,
            rgba(255,255,255,0.05) 1px,
            transparent 1px
        );

    background-size: 20% 100%;
}


/* ========================================
   CONTENT
======================================== */

.contact-banner-content {
    position: relative;

    z-index: 3;

    width: 100%;
    max-width: 900px;
}


/* Small heading */

.contact-banner-kicker {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 34px;

    color: #e2b327;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 5px;
}


.contact-banner-line {
    width: 48px;
    height: 1px;

    background: #e2b327;
}


/* ========================================
   MAIN TITLE
======================================== */

.contact-banner-title {
    margin: 0;

    display: flex;
    flex-direction: column;

    line-height: 0.95;
}


.contact-banner-title span {
    display: block;
}


.contact-banner-white {
    color: #ffffff;

    font-size: clamp(70px, 7vw, 115px);

    font-weight: 900;

    letter-spacing: -3px;
}


.contact-banner-gold {
    color: #e2b327;

    font-size: clamp(70px, 7vw, 115px);

    font-weight: 900;

    letter-spacing: -3px;

    margin-top: 8px;
}


/* ========================================
   DESCRIPTION
======================================== */

.contact-banner-text {
    max-width: 760px;

    margin: 42px 0 0;

    color: rgba(255,255,255,0.72);

    font-size: 18px;

    line-height: 1.8;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

    .contact-banner {
        min-height: 560px;

        padding:
            130px
            7%
            80px;
    }


    .contact-banner-text {
        max-width: 650px;

        font-size: 17px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 700px) {

    .contact-banner {
        min-height: 520px;

        padding:
            120px
            22px
            65px;

        background-position: 65% center;
    }


    .contact-banner-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(8,8,8,0.97) 0%,
                rgba(8,8,8,0.88) 62%,
                rgba(8,8,8,0.64) 100%
            );
    }


    .contact-banner-grid {
        background-size: 50% 100%;
    }


    .contact-banner-kicker {
        margin-bottom: 28px;

        font-size: 9px;

        letter-spacing: 4px;
    }


    .contact-banner-line {
        width: 35px;
    }


    .contact-banner-white,
    .contact-banner-gold {
        font-size: clamp(48px, 15vw, 70px);

        letter-spacing: -2px;
    }


    .contact-banner-text {
        margin-top: 30px;

        font-size: 15px;

        line-height: 1.7;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 420px) {

    .contact-banner {
        padding-left: 16px;
        padding-right: 16px;
    }


    .contact-banner-white,
    .contact-banner-gold {
        font-size: 45px;
    }


    .contact-banner-text {
        font-size: 14px;
    }

}










/* ========================================
   CONTACT MAIN SECTION
======================================== */

.contact-main-section {
    width: 100%;

    padding: 100px 8%;

    background:
        radial-gradient(
            circle at 25% 25%,
            rgba(226, 179, 39, 0.025),
            transparent 32%
        ),
        #121212;
}


.contact-main-container {
    width: 100%;
    max-width: 1380px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 120px;

    align-items: start;
}


/* ========================================
   LEFT SIDE
======================================== */

.contact-info-kicker {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 32px;

    color: #e2b327;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 5px;
}


.contact-info-kicker span {
    width: 45px;
    height: 1px;

    background: #e2b327;
}


/* Main heading */

.contact-info h2 {
    margin: 0 0 35px;

    color: #ffffff;

    font-size: clamp(52px, 5vw, 82px);

    font-weight: 900;

    line-height: 0.95;

    letter-spacing: -2px;
}


.contact-info h2 span {
    display: block;

    color: #e2b327;
}


/* Intro */

.contact-info-intro {
    max-width: 520px;

    margin: 0 0 55px;

    color: rgba(255,255,255,0.48);

    font-size: 16px;

    line-height: 1.8;
}


/* ========================================
   CONTACT DETAILS
======================================== */

.contact-detail {
    display: grid;

    grid-template-columns: 65px 1fr;

    gap: 22px;

    padding: 28px 0;

    border-top:
        1px solid
        rgba(255,255,255,0.10);
}


.contact-detail:last-child {
    border-bottom:
        1px solid
        rgba(255,255,255,0.10);
}


.contact-detail-number {
    color: rgba(226,179,39,0.55);

    font-size: 11px;

    letter-spacing: 3px;
}


.contact-detail h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 4px;
}


.contact-detail p,
.contact-detail a {
    margin: 0;

    color: rgba(255,255,255,0.5);

    font-size: 15px;

    line-height: 1.75;

    text-decoration: none;
}


.contact-detail a:hover {
    color: #e2b327;
}


/* ========================================
   FORM WRAPPER
======================================== */

.contact-form-wrap {
    border:
        1px solid
        rgba(255,255,255,0.12);
}


/* Form header */

.contact-form-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 28px 32px;

    border-bottom:
        1px solid
        rgba(255,255,255,0.12);
}


.contact-form-header span {
    color: #e2b327;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 4px;
}


.contact-form-header p {
    margin: 0;

    color: rgba(255,255,255,0.3);

    font-size: 11px;
}


/* ========================================
   FORM
======================================== */

.contact-form {
    padding: 35px 32px;
}


.contact-form-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}


.contact-field {
    margin-bottom: 28px;
}


.contact-field label {
    display: block;

    margin-bottom: 12px;

    color: rgba(255,255,255,0.55);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 3px;
}


/* Inputs */

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;

    border: none;

    border-bottom:
        1px solid
        rgba(255,255,255,0.18);

    outline: none;

    padding: 12px 0;

    background: transparent;

    color: #ffffff;

    font-family: inherit;

    font-size: 15px;

    transition:
        border-color 0.3s ease;
}


.contact-field textarea {
    resize: vertical;

    min-height: 130px;
}


.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: #e2b327;
}


/* Placeholder */

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(255,255,255,0.25);
}


/* Select */

.contact-field select {
    color: rgba(255,255,255,0.7);
}


.contact-field select option {
    background: #151515;

    color: #ffffff;
}


/* ========================================
   BUTTON
======================================== */

.contact-submit {
    width: 100%;

    min-height: 58px;

    margin-top: 8px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 0 25px;

    border: 1px solid #e2b327;

    background: #e2b327;

    color: #111111;

    cursor: pointer;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 4px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


.contact-submit span {
    font-size: 20px;

    transition:
        transform 0.3s ease;
}


.contact-submit:hover {
    background: #ffffff;

    border-color: #ffffff;
}


.contact-submit:hover span {
    transform: translateX(6px);
}


/* ========================================
   REVEAL
======================================== */

.contact-info,
.contact-form-wrap {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.contact-info.show,
.contact-form-wrap.show {
    opacity: 1;

    transform: translateY(0);
}


.contact-form-wrap {
    transition-delay: 0.12s;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

    .contact-main-section {
        padding: 80px 6%;
    }


    .contact-main-container {
        gap: 70px;
    }


    .contact-form-row {
        grid-template-columns: 1fr;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 750px) {

    .contact-main-section {
        padding: 65px 20px;
    }


    .contact-main-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .contact-info h2 {
        font-size: 50px;
    }


    .contact-info-intro {
        margin-bottom: 40px;

        font-size: 15px;
    }


    .contact-form-header {
        align-items: flex-start;

        flex-direction: column;

        padding: 24px 22px;
    }


    .contact-form {
        padding: 30px 22px;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 420px) {

    .contact-main-section {
        padding: 55px 16px;
    }


    .contact-info h2 {
        font-size: 43px;
    }


    .contact-detail {
        grid-template-columns: 45px 1fr;
    }


    .contact-form-wrap {
        margin-left: 0;
        margin-right: 0;
    }

}






/* ========================================
   LOCATION SECTION
======================================== */

.location-section {
    width: 100%;

    padding: 100px 8%;

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(226, 179, 39, 0.025),
            transparent 30%
        ),
        #151515;
}


.location-container {
    width: 100%;
    max-width: 1380px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 110px;

    align-items: center;
}


/* ========================================
   LEFT CONTENT
======================================== */

.location-kicker {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 32px;

    color: #e2b327;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 5px;
}


.location-kicker span {
    width: 45px;
    height: 1px;

    background: #e2b327;
}


.location-content h2 {
    margin: 0 0 35px;

    color: #ffffff;

    font-size: clamp(52px, 5vw, 82px);

    font-weight: 900;

    line-height: 0.95;

    letter-spacing: -2px;
}


.location-content h2 span {
    display: block;

    color: #e2b327;
}


.location-intro {
    max-width: 520px;

    margin: 0 0 50px;

    color: rgba(255,255,255,0.48);

    font-size: 16px;

    line-height: 1.8;
}


/* ========================================
   DETAILS
======================================== */

.location-details {
    width: 100%;
}


.location-detail {
    display: grid;

    grid-template-columns: 60px 1fr;

    gap: 20px;

    padding: 24px 0;

    border-top:
        1px solid rgba(255,255,255,0.10);
}


.location-detail:last-child {
    border-bottom:
        1px solid rgba(255,255,255,0.10);
}


.location-number {
    color: rgba(226,179,39,0.55);

    font-size: 10px;

    letter-spacing: 3px;
}


.location-detail h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 4px;
}


.location-detail p,
.location-detail a {
    margin: 0;

    color: rgba(255,255,255,0.5);

    font-size: 14px;

    line-height: 1.7;

    text-decoration: none;
}


.location-detail a:hover {
    color: #e2b327;
}


/* ========================================
   MAP
======================================== */

.location-map-wrap {
    position: relative;

    width: 100%;
    height: 540px;

    overflow: hidden;

    border:
        1px solid rgba(255,255,255,0.10);

    background: #0f0f0f;
}


.location-map-wrap iframe {
    width: 100%;
    height: 100%;

    border: 0;

    filter:
        grayscale(1)
        invert(0.9)
        contrast(1.1)
        brightness(0.75);

    opacity: 0.9;
}


/* Label */

.location-map-label {
    position: absolute;

    left: 0;
    bottom: 0;

    padding: 14px 18px;

    background: rgba(10,10,10,0.94);

    color: #e2b327;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 3px;
}


/* ========================================
   REVEAL
======================================== */

.location-content,
.location-map-wrap {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.location-content.show,
.location-map-wrap.show {
    opacity: 1;

    transform: translateY(0);
}


.location-map-wrap {
    transition-delay: 0.12s;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

    .location-section {
        padding: 80px 6%;
    }

    .location-container {
        gap: 70px;
    }

    .location-map-wrap {
        height: 480px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 760px) {

    .location-section {
        padding: 65px 20px;
    }

    .location-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .location-content h2 {
        font-size: 50px;
    }

    .location-map-wrap {
        height: 380px;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 420px) {

    .location-section {
        padding: 55px 16px;
    }

    .location-content h2 {
        font-size: 43px;
    }

    .location-detail {
        grid-template-columns: 45px 1fr;
    }

    .location-map-wrap {
        height: 320px;
    }

}







































































/* ========================================
   FOOTER
======================================== */

.site-footer {
    width: 100%;
    background: #121212;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* ========================================
   MAIN FOOTER CONTAINER
======================================== */

.footer-container {
    width: 100%;
    max-width: 1520px;

    margin: 0 auto;

    padding: 80px 8% 70px;

    display: grid;
    grid-template-columns: 1.3fr 0.6fr 1fr;

    gap: 100px;

    align-items: start;
}


/* ========================================
   BRAND AREA
======================================== */

.footer-brand {
    max-width: 430px;
}


/* Logo */

.footer-logo-image {
    display: inline-block;

    margin-bottom: 28px;

    text-decoration: none;
}


.footer-logo-image img {
    display: block;

    width: 180px;
    height: auto;

    object-fit: contain;
    object-position: left center;
}


/* Brand Description */

.footer-brand p {
    margin: 0;

    max-width: 420px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 15px;

    line-height: 1.8;
}


/* ========================================
   FOOTER HEADINGS
======================================== */

.footer-nav h4,
.footer-contact h4 {
    margin: 0 0 32px;

    color: #e2b327;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 5px;

    text-transform: uppercase;
}


/* ========================================
   NAVIGATION
======================================== */

.footer-nav {
    display: flex;
    flex-direction: column;

    align-items: flex-start;
}


.footer-nav a {
    position: relative;

    width: fit-content;

    margin-bottom: 17px;

    color: rgba(255, 255, 255, 0.68);

    text-decoration: none;

    font-size: 15px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.footer-nav a:hover {
    color: #e2b327;

    transform: translateX(5px);
}


/* ========================================
   CONTACT
======================================== */

.footer-contact {
    max-width: 480px;
}


.footer-contact p {
    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 15px;

    line-height: 1.7;
}


.footer-contact a {
    display: inline-block;

    color: rgba(255, 255, 255, 0.75);

    text-decoration: none;

    font-size: 15px;

    transition: color 0.3s ease;
}


.footer-contact a:hover {
    color: #e2b327;
}


/* ========================================
   FOOTER BOTTOM
======================================== */

.footer-bottom {
    width: 100%;

    padding: 28px 10%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);
}


.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.3);

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* ========================================
   WEBSPIRELABS
======================================== */

.webspire-link {
    margin-left: 5px;

    color: #e2b327;

    text-decoration: none;

    transition: color 0.3s ease;
}


.webspire-link:hover {
    color: #ffffff;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

    .footer-container {
        padding: 70px 6% 60px;

        grid-template-columns: 1fr 1fr;

        gap: 55px 70px;
    }


    .footer-brand {
        grid-column: 1 / -1;

        max-width: 500px;
    }


    .footer-logo-image img {
        width: 170px;
    }


    .footer-bottom {
        padding: 26px 6%;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 650px) {

    .footer-container {
        padding: 55px 20px;

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .footer-brand {
        grid-column: auto;
    }


    .footer-logo-image {
        margin-bottom: 22px;
    }


    .footer-logo-image img {
        width: 150px;
    }


    .footer-brand p {
        font-size: 14px;
    }


    .footer-nav h4,
    .footer-contact h4 {
        margin-bottom: 24px;

        font-size: 9px;

        letter-spacing: 4px;
    }


    .footer-nav a {
        margin-bottom: 14px;

        font-size: 14px;
    }


    .footer-contact p,
    .footer-contact a {
        font-size: 14px;
    }


    .footer-bottom {
        padding: 24px 20px;

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }


    .footer-bottom p {
        font-size: 8px;

        line-height: 1.7;

        letter-spacing: 2px;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 400px) {

    .footer-container {
        padding:
            45px
            16px;
    }


    .footer-logo-image img {
        width: 135px;
    }


    .footer-brand p {
        font-size: 13px;
    }


    .footer-bottom {
        padding:
            22px
            16px;
    }

}