/* =========================================================
   A1 CONSTRUCTIONS
   GLOBAL WEBSITE STYLES
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    font-family: "DM Sans", Arial, sans-serif;

    background: #ffffff;

    color: #111111;

    line-height: 1.6;

    overflow-x: hidden;
}


img {
    max-width: 100%;

    display: block;
}


a {
    color: inherit;

    text-decoration: none;
}


button {
    font-family: inherit;
}


/* =========================================================
   BRAND COLORS
========================================================= */

:root {

    --black: #111111;

    --dark-black: #0c0c0c;

    --gold: #c99a32;

    --gold-light: #d9ae4c;

    --white: #ffffff;

    --light-grey: #f5f5f5;

    --border: #e9e9e9;

    --text-grey: #777777;

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    width: 100%;

    background: var(--white);

    position: relative;

    z-index: 1000;

    border-bottom: 1px solid #eeeeee;

}


.header-container {

    width: min(1660px, 92%);

    min-height: 128px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 30px;

}


/* =========================================================
   BRAND
========================================================= */

.brand {

    display: flex;

    align-items: center;

    flex-shrink: 0;

}


.brand-logo {

    width: 108px;

    height: 108px;

    object-fit: contain;

}


.brand-text {

    margin-left: 24px;

}


.brand-text h1 {

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 28px;

    font-weight: 800;

    letter-spacing: 0.3px;

    color: var(--black);

    line-height: 1.1;

}


.brand-text p {

    margin-top: 7px;

    color: var(--gold);

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 1.4px;

}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.desktop-navigation {

    display: flex;

    align-items: center;

    gap: 36px;

    margin-left: auto;

}


.nav-link {

    position: relative;

    padding: 8px 0;

    color: #111111;

    font-size: 16px;

    font-weight: 600;

    transition: color 0.3s ease;

}


.nav-link::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 2px;

    background: var(--gold);

    transition: width 0.3s ease;

}


.nav-link:hover,

.nav-link.active {

    color: #000000;

}


.nav-link:hover::after,

.nav-link.active::after {

    width: 100%;

}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-left: 28px;

}


/* =========================================================
   GET QUOTE BUTTON
========================================================= */

.quote-button {

    height: 54px;

    padding: 0 27px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: var(--gold);

    color: var(--white);

    border-radius: 30px;

    font-size: 15px;

    font-weight: 700;

    transition:
        background 0.3s ease,
        transform 0.3s ease;

}


.quote-button:hover {

    background: #ae8121;

    transform: translateY(-2px);

}


/* =========================================================
   HEADER ROUND ICONS
========================================================= */

.header-icon {

    width: 54px;

    height: 54px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 23px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;

}


.header-icon:hover {

    transform: translateY(-3px);

    opacity: 0.9;

}


.phone-icon {

    background: #111111;

}


.whatsapp-icon {

    background: #20c96b;

}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-button {

    display: none;

    width: 46px;

    height: 46px;

    margin-left: auto;

    border: 1px solid #dddddd;

    background: #ffffff;

    cursor: pointer;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

}


.mobile-menu-button span {

    display: block;

    width: 23px;

    height: 2px;

    background: #111111;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;

}


.mobile-menu-button.active span:nth-child(1) {

    transform: translateY(7px) rotate(45deg);

}


.mobile-menu-button.active span:nth-child(2) {

    opacity: 0;

}


.mobile-menu-button.active span:nth-child(3) {

    transform: translateY(-7px) rotate(-45deg);

}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.mobile-navigation {

    display: none;

    background: #ffffff;

    border-top: 1px solid #eeeeee;

    padding: 15px 5% 25px;

}


.mobile-navigation.active {

    display: block;

}


.mobile-nav-link {

    display: block;

    padding: 15px 0;

    border-bottom: 1px solid #eeeeee;

    color: #111111;

    font-size: 15px;

    font-weight: 600;

}


.mobile-nav-link.active {

    color: var(--gold);

}


.mobile-quote-button {

    display: block;

    margin-top: 18px;

    padding: 15px;

    background: var(--gold);

    color: #ffffff;

    text-align: center;

    border-radius: 4px;

    font-size: 14px;

    font-weight: 700;

}


/* =========================================================
   TEMPORARY HOME SECTION
========================================================= */

.temporary-home {

    min-height: 650px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7f7f7 55%,
            #eeeeee 100%
        );

    overflow: hidden;

}


.temporary-home::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    right: -200px;

    top: -180px;

    border: 1px solid rgba(201, 154, 50, 0.25);

    border-radius: 50%;

}


.temporary-home::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    left: -170px;

    bottom: -180px;

    border: 1px solid rgba(201, 154, 50, 0.25);

    border-radius: 50%;

}


.temporary-content {

    position: relative;

    z-index: 1;

    width: min(900px, 90%);

    text-align: center;

}


.temporary-label {

    color: var(--gold);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 18px;

}


.temporary-content h2 {

    font-family: "Montserrat", Arial, sans-serif;

    font-size: clamp(42px, 6vw, 80px);

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 800;

}


.temporary-content h2 span {

    color: var(--gold);

}


.temporary-content > p:not(.temporary-label) {

    max-width: 650px;

    margin: 25px auto 35px;

    color: #666666;

    font-size: 18px;

}


.temporary-button {

    display: inline-flex;

    padding: 16px 28px;

    background: #111111;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;

}


.temporary-button:hover {

    background: var(--gold);

    transform: translateY(-3px);

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    background: var(--dark-black);

    color: #ffffff;

}


/* =========================================================
   FOOTER MAIN
========================================================= */

.footer-main {

    padding: 70px 0 60px;

}


.footer-container {

    width: min(1660px, 86%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.5fr
        0.8fr
        1.05fr
        1.3fr;

    gap: 70px;

}


/* =========================================================
   FOOTER COMPANY
========================================================= */

.footer-company {

    max-width: 430px;

}


.footer-brand {

    display: inline-flex;

    align-items: center;

}


.footer-logo-wrapper {

    width: 85px;

    height: 85px;

    padding: 5px;

    background: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

}


.footer-logo-wrapper img {

    width: 100%;

    height: 100%;

    object-fit: contain;

}


.footer-brand-name {

    margin-left: 18px;

}


.footer-brand-name h2 {

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 25px;

    font-weight: 800;

    color: var(--gold);

    line-height: 1.1;

}


.footer-brand-name p {

    margin-top: 6px;

    color: #ffffff;

    font-size: 14px;

    font-weight: 500;

}


.footer-description {

    margin-top: 25px;

    color: #d0d0d0;

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================================
   SOCIAL LINKS
========================================================= */

.social-links {

    display: flex;

    gap: 13px;

    margin-top: 27px;

}


.social-link {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: #1d1d1d;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 19px;

    font-weight: 700;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;

}


.social-link:hover {

    background: var(--gold);

    color: #111111;

    transform: translateY(-3px);

}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-column h3 {

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 22px;

    font-weight: 700;

    color: #ffffff;

    line-height: 1.2;

}


.footer-heading-line {

    width: 62px;

    height: 3px;

    margin: 9px 0 21px;

    background: var(--gold);

}


.footer-column > a {

    margin-bottom: 13px;

    color: #d0d0d0;

    font-size: 15px;

    line-height: 1.5;

    transition:
        color 0.3s ease,
        transform 0.3s ease;

}


.footer-column > a:hover {

    color: var(--gold);

    transform: translateX(4px);

}


/* =========================================================
   FOOTER CONTACT
========================================================= */

.footer-contact-item {

    width: 100%;

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 25px;

}


.contact-icon {

    flex-shrink: 0;

    width: 23px;

    color: var(--gold);

    font-size: 18px;

    text-align: center;

}


.contact-label {

    display: block;

    margin-bottom: 5px;

    color: #888888;

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.footer-contact-item a,

.contact-value {

    display: block;

    color: #dddddd;

    font-size: 15px;

    line-height: 1.6;

}


.footer-contact-item a:hover {

    color: var(--gold);

}


/* =========================================================
   FOOTER LOCATION
========================================================= */

.footer-location {

    width: 100%;

    padding: 0 0 45px;

}


.location-container {

    width: min(1660px, 86%);

    margin: 0 auto;

    border-top: 1px solid #303030;

    padding-top: 35px;

}


.location-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 25px;

}


.location-small-title {

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.location-header h3 {

    margin-top: 6px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 25px;

    font-weight: 700;

}


.map-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 18px;

    background: #ffffff;

    color: #111111;

    font-size: 13px;

    font-weight: 700;

    transition:
        background 0.3s ease,
        color 0.3s ease;

}


.map-button:hover {

    background: var(--gold);

    color: #ffffff;

}


/* =========================================================
   LOCATION CARDS
========================================================= */

.location-cards {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

}


.location-card {

    min-height: 125px;

    padding: 28px;

    background: #181818;

    border: 1px solid #2c2c2c;

    display: flex;

    align-items: center;

    gap: 20px;

    transition:
        border-color 0.3s ease,
        transform 0.3s ease;

}


.location-card:hover {

    border-color: var(--gold);

    transform: translateY(-3px);

}


.location-card-icon {

    width: 50px;

    height: 50px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #222222;

    color: var(--gold);

    display: flex;

    align-items: center;

    justify-content: center;

}


.location-card span {

    font-size: 18px;

    font-weight: 700;

}


.location-card p {

    margin-top: 4px;

    color: #999999;

    font-size: 14px;

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    border-top: 1px solid #303030;

    padding: 22px 0;

}


.footer-bottom-container {

    width: min(1660px, 86%);

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.footer-bottom p {

    color: #8d8d8d;

    font-size: 12px;

}


.footer-bottom strong {

    color: #d0d0d0;

}


.footer-bottom-links {

    display: flex;

    align-items: center;

    gap: 12px;

}


.footer-bottom-links a {

    color: #8d8d8d;

    font-size: 12px;

    transition: color 0.3s ease;

}


.footer-bottom-links a:hover {

    color: var(--gold);

}


.footer-bottom-links span {

    color: #555555;

}


.developer-credit span {

    color: var(--gold);

}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1250px) {


    .header-container {

        width: 92%;

    }


    .brand-logo {

        width: 90px;

        height: 90px;

    }


    .brand-text {

        margin-left: 16px;

    }


    .brand-text h1 {

        font-size: 23px;

    }


    .desktop-navigation {

        gap: 24px;

    }


    .nav-link {

        font-size: 14px;

    }


    .header-actions {

        margin-left: 15px;

    }


    .quote-button {

        padding: 0 20px;

    }


    .footer-container {

        width: 90%;

        grid-template-columns:
            1.3fr
            0.8fr
            1fr;

    }


    .footer-contact {

        grid-column: span 3;

    }


    .footer-bottom-container {

        width: 90%;

    }


    .location-container {

        width: 90%;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {


    .header-container {

        min-height: 100px;

    }


    .brand-logo {

        width: 75px;

        height: 75px;

    }


    .brand-text h1 {

        font-size: 19px;

    }


    .brand-text p {

        font-size: 12px;

        letter-spacing: 1px;

    }


    .desktop-navigation {

        gap: 17px;

    }


    .nav-link {

        font-size: 13px;

    }


    .header-actions {

        gap: 7px;

    }


    .quote-button {

        height: 46px;

        padding: 0 15px;

        font-size: 12px;

    }


    .header-icon {

        width: 46px;

        height: 46px;

        font-size: 19px;

    }


}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {


    /* HEADER */

    .header-container {

        width: 90%;

        min-height: 82px;

    }


    .brand-logo {

        width: 66px;

        height: 66px;

    }


    .brand-text {

        margin-left: 12px;

    }


    .brand-text h1 {

        font-size: 17px;

        letter-spacing: 0;

    }


    .brand-text p {

        margin-top: 4px;

        font-size: 10px;

        letter-spacing: 0.8px;

    }


    .desktop-navigation,

    .header-actions {

        display: none;

    }


    .mobile-menu-button {

        display: flex;

    }


    /* TEMPORARY HOME */

    .temporary-home {

        min-height: 580px;

        padding: 80px 20px;

    }


    .temporary-content h2 {

        font-size: clamp(38px, 11vw, 58px);

        letter-spacing: -1.5px;

    }


    .temporary-content > p:not(.temporary-label) {

        font-size: 16px;

    }


    /* FOOTER */

    .footer-main {

        padding: 55px 0 45px;

    }


    .footer-container {

        width: 90%;

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .footer-company {

        max-width: 100%;

    }


    .footer-contact {

        grid-column: auto;

    }


    .footer-brand-name h2 {

        font-size: 21px;

    }


    .footer-description {

        font-size: 14px;

    }


    .footer-column h3 {

        font-size: 20px;

    }


    /* LOCATION */

    .location-container {

        width: 90%;

    }


    .location-header {

        align-items: flex-start;

        flex-direction: column;

    }


    .location-header h3 {

        font-size: 21px;

    }


    .location-cards {

        grid-template-columns: 1fr;

    }


    /* BOTTOM */

    .footer-bottom {

        padding: 25px 0;

    }


    .footer-bottom-container {

        width: 90%;

        flex-direction: column;

        align-items: flex-start;

    }


    .footer-bottom-links {

        flex-wrap: wrap;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {


    .header-container {

        min-height: 76px;

    }


    .brand-logo {

        width: 58px;

        height: 58px;

    }


    .brand-text {

        margin-left: 9px;

    }


    .brand-text h1 {

        font-size: 14px;

    }


    .brand-text p {

        font-size: 8px;

    }


    .mobile-menu-button {

        width: 42px;

        height: 42px;

    }


    .temporary-home {

        min-height: 520px;

    }


    .temporary-label {

        font-size: 10px;

        letter-spacing: 3px;

    }


    .temporary-content h2 {

        font-size: 38px;

    }


    .temporary-content > p:not(.temporary-label) {

        font-size: 15px;

        line-height: 1.7;

    }


    .footer-logo-wrapper {

        width: 70px;

        height: 70px;

    }


    .footer-brand-name {

        margin-left: 12px;

    }


    .footer-brand-name h2 {

        font-size: 18px;

    }


    .footer-brand-name p {

        font-size: 12px;

    }


    .location-card {

        padding: 20px;

    }

}


/* =========================================================
   GOOGLE MAP
========================================================= */

.map-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;

    border: 1px solid #303030;

    background: #181818;
}


.map-wrapper iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================================================
   MAP RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .map-wrapper {
        height: 320px;
    }

}


@media (max-width: 480px) {

    .map-wrapper {
        height: 280px;
    }

}



/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    border-top: 1px solid #303030;

    padding: 22px 0;
}


.footer-bottom-container {
    width: min(1660px, 86%);

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    color: #8d8d8d;

    font-size: 12px;
}


.footer-bottom strong {
    color: #d0d0d0;
}


.developer-credit a {
    color: #d0d0d0;

    font-weight: 600;

    transition: color 0.3s ease;
}


.developer-credit a:hover {
    color: var(--gold);
}


/* =========================================================
   MOBILE FOOTER BOTTOM
========================================================= */

@media (max-width: 768px) {

    .footer-bottom {
        padding: 22px 0;
    }


    .footer-bottom-container {
        width: 90%;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        text-align: center;

        gap: 10px;
    }

}


/* MOBILE HAMBURGER */

.mobile-menu-button {
    display: none;
    margin-left: auto;
    border: none;
    background: transparent;
    color: #111111;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 768px) {

    .desktop-navigation,
    .header-actions {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

}