/* =========================================================
   SIMBA CEMENT
   MAIN STYLE SHEET
   FOR contacts.html
   ========================================================= */


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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #111111;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: none;
    background: none;
}


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

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


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

.header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    z-index: 1000;
}

.nav-container {
    min-height: 82px;

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

    gap: 30px;
}


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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-title {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-subtitle {
    margin-top: 4px;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 3px;

    color: #d71920;
}


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

.navbar {
    margin-left: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;

    list-style: none;
}

.nav-links a {
    position: relative;

    padding: 8px 0;

    color: #333333;

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

    text-decoration: none;

    transition: 0.25s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #d71920;

    transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #d71920;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}


/* =========================================================
   NAV ACTIONS
   ========================================================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 5px;

    background: #111111;
    color: #ffffff;

    text-decoration: none;

    transition: 0.25s ease;
}

.nav-icon:hover {
    background: #d71920;
    transform: translateY(-2px);
}


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

.menu-toggle {
    width: 38px;
    height: 38px;

    display: none;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;

    background: #111111;

    display: block;

    transition: 0.25s ease;
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page {
    min-height: calc(100vh - 82px);

    display: flex;
    align-items: center;

    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #0b0b0b 0%,
            #151515 50%,
            #242424 100%
        );

    color: #ffffff;
}


/* =========================================================
   CONTACT CONTENT
   ========================================================= */

.contact-page-content {
    width: 100%;
    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}

.contact-label {
    display: inline-block;

    margin-bottom: 18px;

    padding: 8px 14px;

    border-radius: 3px;

    background: #d71920;

    color: #ffffff;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.contact-page-content h1 {
    margin-bottom: 20px;

    font-family: "Montserrat", sans-serif;

    font-size: clamp(40px, 7vw, 72px);

    font-weight: 900;

    line-height: 1.05;
}

.contact-page-content h1 span {
    display: block;

    color: #d71920;
}

.contact-page-content > p {
    max-width: 620px;

    margin: 0 auto 40px;

    color: #aaaaaa;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   CONTACT OPTIONS
   ========================================================= */

.contact-options {
    width: 100%;
    max-width: 650px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


/* =========================================================
   CONTACT OPTION
   ========================================================= */

.contact-option {
    min-height: 105px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px;

    border: 1px solid #333333;

    border-radius: 8px;

    background: #191919;

    color: #ffffff;

    text-align: left;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);

    background: #202020;

    border-color: #555555;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3);
}


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

.contact-option-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    font-size: 22px;
}


/* WHATSAPP */

.contact-option.whatsapp .contact-option-icon {
    background: #25d366;

    color: #ffffff;

    box-shadow:
        0 5px 20px rgba(37, 211, 102, 0.2);
}


/* PHONE */

.contact-option.phone .contact-option-icon {
    background: #d71920;

    color: #ffffff;

    box-shadow:
        0 5px 20px rgba(215, 25, 32, 0.2);
}


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

.contact-option-text {
    flex: 1;

    display: flex;

    flex-direction: column;
}

.contact-option-text span {
    margin-bottom: 3px;

    color: #999999;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.contact-option-text strong {
    color: #ffffff;

    font-size: 13px;

    font-weight: 700;
}


/* =========================================================
   CONTACT ARROW
   ========================================================= */

.contact-arrow {
    color: #777777;

    font-size: 13px;

    transition: 0.25s ease;
}

.contact-option:hover .contact-arrow {
    color: #ffffff;

    transform: translateX(4px);
}


/* =========================================================
   ENCOURAGING MESSAGE
   ========================================================= */

.contact-message {
    width: 100%;
    max-width: 650px;

    margin: 30px auto 0;

    padding: 22px 25px;

    display: flex;

    align-items: center;

    gap: 15px;

    border: 1px solid #333333;

    border-radius: 8px;

    background: rgba(255, 255, 255, 0.04);

    text-align: left;
}

.contact-message > i {
    flex-shrink: 0;

    color: #d71920;

    font-size: 25px;
}

.contact-message p {
    color: #aaaaaa;

    font-size: 11px;

    line-height: 1.7;
}


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

.footer {
    padding: 60px 0 0;

    background: #080808;

    color: #ffffff;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.2fr;

    gap: 45px;

    padding-bottom: 45px;
}


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

.footer-brand .logo {
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 300px;

    color: #888888;

    font-size: 11px;

    line-height: 1.7;
}


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

.footer-column h3 {
    margin-bottom: 18px;

    font-family: "Montserrat", sans-serif;

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;
}

.footer-column ul {
    display: grid;

    gap: 10px;

    list-style: none;
}

.footer-column li {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #888888;

    font-size: 10px;
}

.footer-column a {
    color: #888888;

    text-decoration: none;

    transition: 0.25s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-column i {
    color: #d71920;
}


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

.footer-bottom {
    padding: 20px 0;

    border-top: 1px solid #222222;

    text-align: center;
}

.footer-bottom p {
    color: #666666;

    font-size: 9px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .navbar {
        position: absolute;

        top: 82px;

        left: 0;
        right: 0;

        display: none;

        padding: 20px;

        background: #ffffff;

        border-bottom: 1px solid #eeeeee;

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

    .navbar.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;

        align-items: stretch;

        gap: 0;
    }

    .nav-links li {
        border-bottom: 1px solid #eeeeee;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;

        padding: 14px 5px;
    }

    .menu-toggle {
        display: flex;
    }

    .contact-options {
        grid-template-columns: 1fr;

        max-width: 500px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .container {
        width: 90%;
    }

    .nav-container {
        min-height: 72px;
    }

    .navbar {
        top: 72px;
    }

    .logo img {
        width: 42px;
        height: 42px;
    }

    .logo-title {
        font-size: 17px;
    }

    .logo-subtitle {
        font-size: 7px;
    }

    .nav-icon {
        width: 35px;
        height: 35px;
    }

    .menu-toggle {
        width: 35px;
        height: 35px;
    }

    .contact-page {
        min-height: auto;

        padding: 70px 0;
    }

    .contact-page-content h1 {
        font-size: 42px;
    }

    .contact-page-content > p {
        font-size: 12px;

        margin-bottom: 30px;
    }

    .contact-options {
        gap: 12px;
    }

    .contact-option {
        min-height: 90px;

        padding: 16px;
    }

    .contact-option-icon {
        width: 46px;
        height: 46px;

        font-size: 19px;
    }

    .contact-option-text strong {
        font-size: 12px;
    }

    .contact-arrow {
        font-size: 11px;
    }

    .contact-message {
        align-items: flex-start;

        padding: 18px;
    }

    .contact-message > i {
        font-size: 21px;
    }

    .contact-message p {
        font-size: 10px;
    }

    .footer {
        padding-top: 45px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .logo {
        gap: 7px;
    }

    .logo img {
        width: 38px;
        height: 38px;
    }

    .logo-title {
        font-size: 15px;
    }

    .nav-actions {
        gap: 7px;
    }

    .contact-page-content h1 {
        font-size: 36px;
    }

    .contact-option {
        gap: 10px;

        padding: 13px;
    }

    .contact-option-icon {
        width: 42px;
        height: 42px;

        font-size: 17px;
    }
}