﻿/* No Coding Needed Page Styles */

body {
    font-family: var(--font-family-wb) !important;
}



/*******************************************
                  Header
*******************************************/

.wb-header {
    background: var(--primary-wb);
    padding: 12px 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: 50px;
    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: 10px 40px;
    }

    .header-logo img {
        height: 40px;
    }

    .back-home-btn {
        font-size: 14px;
        padding: 8px 18px;
    }
}

@media (max-width: 480px) {

    .wb-header {
        padding: 10px 30px;
    }

    .header-logo img {
        height: 30px;
    }

    .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 35px 0;
}

.contact-us-title {
    color: var(--primary-wb);
    font-size: 50px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-align: center;
}

.contact-us-intro {
    margin-bottom: 40px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

    .contact-us-intro p {
        color: var(--primary-wb);
        font-size: 16px;
        line-height: 1.6;
        margin: 0;
    }

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 30px;
}

/* Form Section */
.contact-form-section {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        color: var(--primary-wb);
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 3px;
    }

.ct-required {
    color: red;
    padding-left: 2px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 15px;
    font-family: var(--font-family-wb);
    color: var(--primary-wb);
    background-color: var(--white);
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

    .form-input:focus,
    .form-textarea:focus {
        outline: none;
        border-color: var(--primary-wb-2);
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
        color: #999;
    }

.form-textarea {
    resize: vertical;
    min-height: 120px;
    margin-bottom: -6px;
}

.send-message-btn {
    background-color: var(--primary-wb);
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 20px;
}

    .send-message-btn:hover {
        background-color: var(--primary-wb-2);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(119, 70, 255, 0.3);
    }

    .send-message-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

        .send-message-btn:disabled:hover {
            background-color: var(--primary-wb);
            transform: none;
            box-shadow: none;
        }

.input-error {
    border-color: #dc3545 !important;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    font-weight: 500;
    margin-top: 3px;
    display: block;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #c3e6cb;
    font-size: 14px;
}

.error-message-box {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #f5c6cb;
    font-size: 14px;
}

.need-help-box {
    padding: 20px 0;
    border-radius: 6px;
}

    .need-help-box h3 {
        color: var(--primary-wb);
        font-size: 20px;
        font-weight: 600;
        margin: 0 0 12px 0;
    }

    .need-help-box p {
        color: var(--primary-wb);
        font-size: 15px;
        line-height: 1.6;
        margin: 0;
    }

    .need-help-box a {
        color: var(--primary-wb-2);
        text-decoration: none;
        font-weight: 600;
    }

        .need-help-box a:hover {
            text-decoration: underline;
        }

/* Info and Map Section */
.contact-info-map-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.company-info-box {
    padding: 0 0 10px 0;
    border-radius: 8px;
}

    .company-info-box h3 {
        margin: 0 0 15px 0;
    }

        .company-info-box h3 a {
            color: var(--primary-wb-2);
            font-size: 20px;
            font-weight: 600;
            text-decoration: none;
        }

            .company-info-box h3 a:hover {
                text-decoration: underline;
            }

    .company-info-box .company-address {
        color: var(--primary-wb);
        font-size: 15px;
        line-height: 1.8;
        margin: 0 0 15px 0;
    }

    .company-info-box .company-phone {
        color: var(--primary-wb);
        font-size: 15px;
        margin: 0;
        display: flex;
        align-items: center;
    }

        .company-info-box .company-phone a {
            color: var(--primary-wb);
            text-decoration: none;
            font-weight: 600;
        }

            .company-info-box .company-phone a:hover {
                color: var(--primary-wb);
                text-decoration: underline;
            }

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    .map-container iframe {
        display: block;
        width: 100%;
        height: 100%;
    }

/* Responsive */

@media (max-width: 1000px) {
    .contact-us-container {
        padding: 30px 0 15px 0;
    }

    .contact-main-grid {
        gap: 70px
    }
}

@media (max-width: 930px) {
    .send-message-btn {
        margin-bottom: 10px
    }
}

@media (max-width: 800px) {
    .contact-us-content {
        padding: 0 40px;
    }

    .contact-us-title {
        font-size: 36px;
    }

    .contact-us-intro {
        margin-bottom: 25px;
    }

        .contact-us-intro p {
            font-size: 15px;
        }

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .map-container {
        height: 350px;
    }

    .contact-dv-line {
        display: block;
        margin: 12px 0;
    }

    .contact-info-map-section {
        gap: 0;
    }

    .company-info-box {
        padding: 20px 0 10px 0;
        text-align: center
    }

        .company-info-box .company-phone {
            display: none;
        }
}

@media (min-width: 801px) {
    .contact-dv-line {
        display: none;
    }
}

@media (max-width: 480px) {
    .contact-us-content {
        padding: 0 30px;
    }

    .contact-us-container {
        padding: 20px 0 2px 0;
    }

    .contact-us-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .contact-us-intro p {
        font-size: 14px;
    }

    .form-group label {
        font-size: 15px;
    }

    .form-input,
    .form-textarea {
        padding: 10px 14px;
        font-size: 14px;
    }

    .send-message-btn {
        font-size: 15px;
        padding: 11px 0;
    }

    .need-help-box h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .need-help-box p {
        font-size: 14px;
    }

    .company-info-box h3 a {
        font-size: 18px;
    }

    .company-info-box .company-address,
    .company-info-box .company-phone {
        font-size: 14px;
    }

    .map-container {
        height: 300px;
    }
}

/*******************************************
                 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: 55px;
        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
*******************************************/