﻿/* No Coding Needed Page Styles */

body {
    font-family: var(--font-family-wb) !important;
}



/*******************************************
                  Header
*******************************************/

.wb-header {
    background: var(--primary-wb);
    padding: 25px 60px;
    box-shadow: 0 4px 20px rgba(39, 4, 93, 0.15);
    position: relative;
    top: 0;
    z-index: 100;
}

.wb-header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 35px;
    transition: transform 0.3s ease;
}

.header-logo:hover img {
    transform: scale(1.05);
}

.back-home-btn {
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

    .back-home-btn:hover {
        border: 1px solid rgba(255, 255, 255, 0.7);
        color: var(--white);
    }

@media (max-width: 768px) {

    .wb-header {
        padding: 18px 40px;
    }

    .header-logo img {
        height: 30px;
    }

    .back-home-btn {
        font-size: 14px;
        padding: 8px 18px;
    }
}

@media (max-width: 480px) {

    .wb-header {
        padding: 18px 30px;
    }

    .header-logo img {
        height: 28px;
    }

    .back-home-btn {
        font-size: 13px;
        padding: 7px 14px;
    }
}

/*******************************************
                  Header
*******************************************/



/*******************************************
                 Contact Us
*******************************************/

.no-coding-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
}

.contact-us-content {
    padding: 0 60px;
}

.contact-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 30px 0;
}

.contact-us-title {
    color: var(--primary-wb);
    font-size: 50px;
    font-weight: 700;
    margin: 0 0 40px 0;
    line-height: 1.2;
}

.contact-us-intro {
    margin-bottom: 50px;
}

    .contact-us-intro p {
        color: var(--primary-wb);
        font-size: 18px;
        line-height: 1.8;
        margin: 0;
    }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info-section h2,
.contact-map-section h2 {
    color: var(--primary-wb);
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 30px 0;
}

.contact-item {
    margin-bottom: 30px;
}

    .contact-item h3 {
        color: var(--primary-wb);
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 10px 0;
    }

    .contact-item p {
        color: var(--primary-wb);
        font-size: 17px;
        line-height: 1.7;
        margin: 0;
    }

    .contact-item a {
        color: var(--primary-wb-2);
        text-decoration: none;
        font-weight: 600;
    }

        .contact-item a:hover {
            text-decoration: underline;
        }

.social-links {
    display: flex;
    position: relative;
    left: -11px
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .social-link:hover {
    }

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    .map-container iframe {
        display: block;
    }

.divider {
    height: 1px;
    background: #e5e5e5;
    margin: 50px 0;
}

.contact-support-section {
    margin-bottom: 40px;
}

    .contact-support-section h2 {
        color: var(--primary-wb);
        font-size: 32px;
        font-weight: 600;
        margin: 0 0 20px 0;
    }

    .contact-support-section p {
        color: var(--primary-wb);
        font-size: 18px;
        line-height: 1.8;
        margin: 0;
    }

    .contact-support-section a {
        color: var(--primary-wb-2);
        text-decoration: none;
        font-weight: 600;
    }

        .contact-support-section a:hover {
            text-decoration: underline;
        }

/* Responsive */
@media (max-width: 768px) {
    .contact-us-content {
        padding: 0 40px;
    }

    .contact-us-title {
        font-size: 36px;
    }

    .contact-us-intro p {
        font-size: 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-section h2,
    .contact-map-section h2 {
        font-size: 26px;
    }

    .contact-item h3 {
        font-size: 18px;
    }

    .contact-item p {
        font-size: 16px;
    }

    .contact-support-section h2 {
        font-size: 26px;
    }

    .contact-support-section p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-us-content {
        padding: 0 30px;
    }

    .contact-us-title {
        font-size: 28px;
    }

    .contact-us-intro p {
        font-size: 15px;
    }

    .contact-grid {
        gap: 30px;
    }

    .contact-info-section h2,
    .contact-map-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .contact-item {
        margin-bottom: 25px;
    }

        .contact-item h3 {
            font-size: 17px;
        }

        .contact-item p {
            font-size: 15px;
        }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

        .social-link svg {
            width: 20px;
            height: 20px;
        }

    .map-container iframe {
        height: 300px;
    }

    .divider {
        margin: 40px 0;
    }

    .contact-support-section h2 {
        font-size: 22px;
    }

    .contact-support-section p {
        font-size: 15px;
    }
}

/*******************************************
                 Contact Us
*******************************************/



/*******************************************
                   Footer
*******************************************/

#wb-footer {
    background-color: var(--primary-wb);
    color: var(--white);
    padding: 60px;
    font-family: var(--font-family-wb);
    font-size: 14px;
    line-height: 1.6;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Left section */
.footer-left {
    max-width: 450px;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .footer-logo.animate {
        opacity: 1;
        transform: translateY(0);
    }

    .footer-logo img {
        height: 40px;
        display: block;
        border: none;
        margin-bottom: 3px;
    }

.footer-desc {
    color: var(--light);
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

/* Right section */
.footer-right {
    text-align: left;
    min-width: 150px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: var(--light);
        text-decoration: none;
        font-size: 16px;
        transition: all 0.3s ease;
    }

        .footer-links a:hover {
            color: var(--secondary-wb-2);
        }

/* Social media icons */
.footer-social {
    position: relative;
    top: 58px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    color: var(--light);
    font-size: 22px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .social-icon:hover {
        color: var(--secondary-wb-2);
        transform: translateY(-1px);
    }

    .social-icon i {
        line-height: 1;
    }

/* Bottom copyright */
.footer-bottom {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 30px;
    color: var(--light);
    font-size: 15px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 35px;
}

.footer-bottom-left {
    display: flex;
    gap: 40px;
}

/* Responsive adjustments */
@media (max-width: 920px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 17px;
        padding-top: 0px;
    }

    .footer-social {
        position: relative;
        top: 62px;
    }
}

@media (max-width: 768px) {

    #wb-footer {
        padding: 40px;
    }
}

@media (max-width: 658px) {

    .footer-bottom {
        padding-top: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 25px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-social {
        position: static;
        top: 0;
        padding-top: 10px;
        justify-content: left;
    }

    .social-icon {
        font-size: 20px;
    }
}

@media (max-width: 688px) {

    .footer-bottom-left {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {

    #wb-footer {
        padding: 30px;
    }
}


@media (max-width: 436px) {

    .footer-desc {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 13px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .social-icon {
        font-size: 17px;
    }
}

/*******************************************
                   Footer
*******************************************/
