﻿/* Cover Page Styles */

body {
    font-family: var(--font-family-wb) !important;
}



/*******************************************
           Site Disclaimer Banner
*******************************************/

.site-disclaimer-banner {
    background: linear-gradient(135deg, #FD5958 0%, #FF7B7A 100%);
    color: var(--white);
    padding: 12px 20px;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 6px 30px rgba(253, 89, 88, 0.4);
    overflow: hidden;
    user-select: none;
    cursor: default;
}

.disclaimer-stripes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient( 45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.1) 20px, rgba(255, 255, 255, 0.1) 40px );
    pointer-events: none;
}

.disclaimer-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.disclaimer-icon {
    font-size: 25px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.disclaimer-text {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.5;
}

    .disclaimer-text strong {
        color: var(--primary-wb);
        font-weight: 800;
        letter-spacing: 1px;
        padding-left: 3px;
        border-radius: 4px;
    }

/*******************************************
           Site Disclaimer Banner
*******************************************/



.cover-page {
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Scroll-Triggered Animations */
.animate-on-view {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .6s ease, transform .6s ease;
    animation-play-state: paused; /* stop animation until visible */
}

    .animate-on-view.active {
        opacity: 1;
        transform: translateY(0);
        animation-play-state: running; /* play animation when visible */
    }

/* Hero */
.cover-hero-container {
    min-width: 100%;
    min-height: 110vh;
    margin: 0 auto;
    padding: 3rem 5rem;
    display: flex;
    flex-direction: column;
    background-image: url(../images/SiteBuilder/homepage.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.cover-hero-header {
    position: relative;
    z-index: 100;
}

.hero-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-logo {
    display: flex;
    align-items: center;
}

.hero-logo-text {
    width: auto;
    height: 2rem;
    position: relative;
}

.hero-header-right {
    display: flex;
    gap: 1.5rem;
}

.hero-nav-links {
    align-content: center;
}

.hero-nav-link {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    display: block;
}

    .hero-nav-link:hover {
        color: white !important;
        transform: translateY(-2px) !important;
    }

.hero-sign-in-btn {
    background-color: var(--secondary-wb);
    width: auto;
    height: 2rem;
    color: white;
    padding: 0px 1rem 0px 1rem;
    border-radius: 6px;
    border: none;
}

    .hero-sign-in-btn:hover {
        transform: translateY(-2px);
    }

.cover-hero-content {
    max-width: 50vw;
}

.content-hero-logo {
    margin-top: 1.5rem;
    width: 8rem;
    max-height: 8rem;
}

    .content-hero-logo:hover {
        transform: rotateY(360deg);
        transition: 3s;
    }

.content-hero-title {
    margin-top: 1rem;
    color: var(--light);
    font-size: 4.5rem;
}

.content-hero-title-hightlight {
    background: linear-gradient(100deg, var(--secondary-wb-3),var(--secondary-wb-3),var(--primary-wb-2));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* For modern browsers */
    text-shadow: 0 0 0.5rem var(--secondary-wb-3);
    animation-name: gradientText;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

.content-hero-description {
    margin-top: 0.5rem;
    color: var(--light);
    font-size: 1rem;
    max-width: 30vw;
}

.hero-get-started-btn {
    margin-top: 0.5rem;
    background-color: var(--secondary-wb);
    color: var(--light);
    border-radius: 6px;
    border: none;
    padding: 0.5rem;
    max-width: 15vw;
}

.hero-free-notice {
    margin-top: 0.3rem;
    color: var(--light);
    font-size: 0.7rem;
}


/* Content */
.cover-content-container {
    background: var(--white);
}

.content-main-title {
    color: var(--primary-wb);
    font-size: 4rem;
    max-width: 50vw;
}

.content-title {
    color: var(--primary-wb);
}

.content-container {
    border: 1px solid var(--transgrey);
    margin-top: 3rem;
    max-width: 70vw;
    border-radius: 6px;
}

.content-image {
    width: 100%;
    animation-name: imagefloat;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.content-body {
    padding: 1.5rem;
}

.content-title {
    font-weight: 700;
    color: var(--primary-wb);
}

.content-description {
    color: var(--primary-wb);
}

.content-button {
    background-color: var(--secondary-wb);
    color: var(--light);
    border-radius: 6px;
    border: none;
    padding: 0.5rem;
    max-width: 15vw;
}

    .content-button:hover {
        transform: translateY(-2px);
    }

.content-divider {
    height: 3rem;
}


/* Gallery */
.cover-gallery-container {
    min-width: 100%;
    min-height: 80vh;
    margin: 0 auto;
    padding: 4rem 5rem 0 5rem;
    display: flex;
    flex-direction: column;
    background-image: url(../images/SiteBuilder/gallery-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.gallery-title {
    color: var(--light);
    font-size: 4rem;
}

.gallery-description-container {
    margin-top: 2rem;
    padding: 2.2rem;
    border-radius: 6px;
    max-width: 22vw;
    position: relative;
}

    .gallery-description-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 6px;
        padding: 3px;
        background: linear-gradient(var(--rotate), var(--primary-wb-2), var(--secondary-wb-3));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        animation: rotateGradient 6s linear infinite;
    }

.gallery-description-title {
    color: var(--light);
    font-size: 2rem;
}

.gallery-description {
    color: var(--light);
    margin-top: 1.2rem;
    font-size: 1.3rem;
    font-weight: 200;
}

.gallery-get-started-btn {
    margin-top: 10%;
    font-size: 1.5rem;
    background-color: var(--secondary-wb);
    color: var(--light);
    border-radius: 6px;
    border: none;
    padding: 0.5rem;
    max-width: 15vw;
}

.gallery-flex-end {
    justify-content: flex-end;
}

.gallery-logo {
    position: absolute;
    width: 16rem;
    top: 10rem;
    right: 6%;
    z-index: 0;
    animation-name: spinStar;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.gallery-image-container {
    display: flex;
    justify-content: flex-end;
    height: 100%;
}

.gallery-image {
    width: 100%;
    align-self: end;
    z-index: 1;
}

@media screen and (max-width:1224px) {
    .cover-hero-content {
        max-width: 100vw;
    }

    .content-hero-title {
        font-size: 3rem;
    }

    .content-hero-description {
        max-width: 40vw;
        font-size: 1.2rem;
    }

    .content-hero-logo {
        width: 7rem;
    }
}

@media screen and (max-width:1120px) {

    .gallery-image {
        height: 80%;
    }

    .gallery-description-title {
        font-size: 1.4rem;
    }

    .gallery-description {
        font-size: 1rem;
    }
}

@media screen and (max-width:768px) {
    .cover-hero-container {
        padding: 0;
    }

    .cover-hero-content {
        max-width: 100vw;
    }

    .content-main-title {
        max-width: 80vw;
    }

    .content-hero-title {
        font-size: 2rem;
    }

    .content-hero-description {
        max-width: 90vw;
        font-size: 1rem;
    }

    .hero-get-started-btn {
        max-width: 80vw;
    }

    .content-button {
        max-width: 40vw;
    }
}

@keyframes imagefloat {
    0% {
        transform: translateY(0rem);
    }

    25% {
        transform: translateY(1rem);
    }

    50% {
        transform: translateY(0rem);
    }

    75% {
        transform: translateY(-1rem);
    }

    100% {
        transform: translateY(0rem);
    }
}

@keyframes gradientText {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes spinStar {
    0% {
        transform: rotateY(0deg) translateY(0) scale(1.3,1.4);
    }

    25% {
        transform: rotateY(40deg) translateY(-0.5rem) scale(1.4,1.3);
    }

    50% {
        transform: rotateY(0deg) translateY(0) scale(1.3,1.4);
    }

    75% {
        transform: rotateY(40deg) translateY(-0.5rem) scale(1.4,1.3);
    }

    100% {
        transform: rotateY(0deg) translateY(0) scale(1.3,1.4);
    }
}

@keyframes rotateGradient {
    0% {
        --rotate: 0deg;
    }

    100% {
        --rotate: 360deg;
    }
}

@property --rotate {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}



/*******************************************
                  Pricing
*******************************************/

#wb-pricing {
    position: relative;
    background-color: var(--white);
    padding: 40px 20px 40px 20px;
    font-family: var(--font-family-wb);
    overflow: hidden;
}

/* --- Background light sphere positioning --- */
.wb-blob-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.wb-pricing-blob {
    position: absolute;
    opacity: 0.8; /* Background transparency */
}

/* Left-side light sphere: Position adjusted to the upper left, partially obscuring the title or Basic card. */
.blob-left {
    top: -23%;
    left: -17%;
    width: 900px;
    height: auto;
}

/* Right-side light sphere: Adjust its position to the bottom right corner. */
.blob-right {
    bottom: -15%;
    right: -15%;
    width: 800px;
    height: auto;
}

.wb-pricing-container {
    position: relative;
    margin: 0 auto;
    z-index: 2; /* Ensure the content is on the light sphere */
    text-align: center;
}

/* --- Header --- */
.wb-pricing-header {
    margin-bottom: 50px;
}

    .wb-pricing-header h2 {
        color: var(--primary-wb);
        font-size: 65px;
        font-weight: 500;
        margin-bottom: 15px;
    }

    .wb-pricing-header p {
        color: var(--primary-wb);
        font-size: 18px;
        opacity: 0.8;
    }

/* --- Card Grid --- */
.wb-pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch;
}

/* --- Card style --- */
.wb-pricing-card {
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    border-radius: 10px;
    /* Background color var(--light) increases transparency */
    background-color: rgba(235, 235, 235, 0.2);
    /* Glass mimicry effect */
    backdrop-filter: blur(7px);
    /* Achieving a pure border gradient using pseudo-elements without affecting the background. */
    z-index: 1;
    transition: transform 0.2s;
}

    .wb-pricing-card:hover {
        transform: translateY(-7px);
        z-index: 50;
    }

    /* Gradient border */
    .wb-pricing-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 10px;
        padding: 2px; /* Border thickness */
        /* Gradient border */
        background: linear-gradient(60deg, var(--primary-wb-2), var(--secondary-wb-2), var(--secondary-wb-3), var(--primary-wb-2));
        background-size: 300% 300%;
        animation: borderFlow 3s ease infinite;
        /* Mask: Only displays the padding area as the border. */
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        z-index: 2;
        opacity: 1;
    }

@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.wb-card-content {
    padding: 35px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

/* --- Text inside the card --- */
.wb-plan-name {
    color: var(--secondary-wb-2);
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.wb-plan-desc {
    color: var(--transgrey);
    font-size: 17px;
    margin-bottom: 25px;
}

.wb-pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    color: var(--primary-wb-2);
    line-height: 1;
}

    .wb-pricing-price .currency {
        color: var(--primary-wb);
        font-size: 18px;
        font-weight: 600;
    }

    .wb-pricing-price .amount {
        font-size: 56px;
        font-weight: 700;
    }

    .wb-pricing-price .period {
        font-size: 16px;
        font-weight: 400;
        color: var(--primary-wb);
    }

.wb-pricing-billing {
    color: var(--transgrey);
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 30px;
}

/* --- List style --- */
.wb-pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
    width: 100%;
    flex-grow: 1;
}

    .wb-pricing-features li {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
        color: var(--primary-wb);
        font-size: 16px;
    }

    .wb-pricing-features .check {
        font-size: 20px;
        padding-right: 10px;
        color: var(--primary-wb-2);
        font-weight: bold;
        flex-shrink: 0;
    }

    .wb-pricing-features .special {
        padding-right: 3.5px;
        color: var(--primary-wb-2);
        font-weight: 500;
    }

    .wb-pricing-features i {
        position: relative;
        top: 0;
        font-size: 20px;
        padding-left: 3.5px;
        color: var(--primary-wb-2);
        font-weight: 500;
    }

        .wb-pricing-features i[data-tooltip] {
            cursor: help;
            position: relative;
            z-index: 102;
        }

            .wb-pricing-features i[data-tooltip]::after {
                content: attr(data-tooltip);
                position: absolute;
                right: 17px;
                bottom: calc(100% + 5px);
                background: var(--primary-wb);
                color: #fff;
                padding: 10px 14px;
                border-radius: 6px;
                font-size: 13px;
                font-weight: 400;
                line-height: 1.4;
                white-space: normal;
                width: 260px;
                z-index: 1000;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.2s ease, visibility 0.2s ease;
                pointer-events: none;
                box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
                font-family: var(--font-family-wb, sans-serif);
            }

            .wb-pricing-features i[data-tooltip]:hover::after {
                opacity: 1;
                visibility: visible;
            }

/* --- Button Style --- */
.wb-pricing-btn {
    background-color: var(--secondary-wb);
    color: var(--white);
    border: none;
    padding: 12px 0;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

    .wb-pricing-btn:hover {
        transform: translateY(-2px);
        opacity: 0.95;
        box-shadow: 0 5px 15px rgba(253, 89, 88, 0.2);
    }

    .wb-pricing-btn span {
        padding-left: 15px
    }

/* Responsive */
@media (max-width: 1750px) {
    .wb-pricing-container {
        max-width: 900px;
    }

    .blob-left {
        top: -13%;
        left: -12%;
    }

    .blob-right {
        bottom: -9%;
        right: -10%;
    }
}

@media (max-width: 900px) {
    .wb-pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .wb-pricing-card {
        width: 100%;
        max-width: 100%;
    }

    .blob-left {
        top: -8%;
        left: -31%;
    }

    .blob-right {
        bottom: -4%;
        right: -34%;
    }
}

@media (max-width: 700px) {
    .blob-left {
        top: -8%;
        left: -45%;
    }

    .blob-right {
        bottom: -4%;
        right: -38%;
    }
}

@media (max-width: 450px) {

    #wb-pricing {
        padding-left: 15px;
        padding-right: 15px;
    }

    .wb-card-content {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 405px) {
    .wb-pricing-features i {
        display: none
    }
}

/*******************************************
                  Pricing
*******************************************/



/*******************************************
                  Employee
*******************************************/

#wb-employee {
    background-color: var(--white);
    padding: 35px 40px 40px 40px;
    font-family: var(--font-family-wb);
    text-align: center;
}

.wb-employee-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.wb-employee-badge {
    display: inline-block;
    padding: 8px 20px;
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-wb);
    border-radius: 15px;
    background: #ffffff;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

    .wb-employee-badge::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 15px;
        padding: 2px;
        background: linear-gradient( 90deg, var(--primary-wb-2), var(--secondary-wb), var(--secondary-wb-3), var(--primary-wb-2), var(--secondary-wb) );
        background-size: 300% 100%;
        animation: animateBorderFlow 6s linear infinite;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        z-index: -1;
    }

@keyframes animateBorderFlow {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 300% 0%;
    }
}

.wb-employee-image-box {
    position: relative;
    padding: 0px;
    border-radius: 24px;
    max-width: 80%;
    z-index: 0;
}

    .wb-employee-image-box img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 20px;
    }

/* Responsive */
@media (max-width: 836px) {

    .wb-employee-badge {
        font-size: 18px;
    }
}

@media (max-width: 768px) {

    .wb-employee-badge {
        font-size: 16px;
    }

    .wb-employee-image-box {
        border-radius: 16px;
    }

        .wb-employee-image-box img {
            border-radius: 18px;
        }
}

@media (max-width: 680px) {

    .wb-employee-badge {
        font-size: 14px;
    }

    .wb-employee-image-box {
        margin: 0 20px;
        max-width: 100%;
    }
}

@media (max-width: 610px) {

    .wb-employee-badge {
        font-size: 13px;
    }

    .wb-employee-image-box {
        margin: 0;
        max-width: 100%;
    }
}

/*******************************************
                  Employee
*******************************************/



/*******************************************
                    FAQ
*******************************************/

#wb-faq {
    background-color: var(--white);
    font-family: var(--font-family-wb);
    padding: 40px 40px 80px 40px;
    width: 100%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    font-size: 60px;
    font-weight: 600;
    color: var(--primary-wb);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--primary-wb);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

    .faq-item:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}

    .faq-question:hover {
        background-color: var(--white);
    }

.faq-icon {
    font-size: 35px;
    font-weight: 400;
    color: var(--primary-wb);
    min-width: 24px;
    text-align: center;
    line-height: 1;
}

.faq-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-wb);
    flex: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 28px 0 72px;
}

    .faq-answer.active {
        max-height: 400px;
        padding: 0 28px 24px 64px;
    }

    .faq-answer p {
        font-size: 16px;
        font-weight: 400;
        color: var(--primary-wb);
        line-height: 1.6;
        margin: 0;
    }

    .faq-answer ul {
        margin: 10px 0;
        padding-left: 20px;
    }

    .faq-answer li {
        font-size: 16px;
        font-weight: 400;
        color: var(--primary-wb);
        line-height: 1.6;
        margin: 5px 0;
    }

    .faq-answer ul ul {
        margin-top: 5px;
        padding-left: 20px;
    }

/* Responsive */
@media (max-width: 768px) {
    #wb-faq {
        padding: 20px 30px 60px 30px;
    }

    .faq-title {
        font-size: 45px;
    }

    .faq-question {
        padding: 17px;
        gap: 16px;
    }

    .faq-text {
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 24px 0 64px;
    }

        .faq-answer.active {
            padding: 0 24px 20px 57px;
        }
}

@media (max-width: 520px) {
    #wb-faq {
        padding: 10px 20px 50px 20px;
    }

    .faq-title {
        font-size: 35px;
    }

    .faq-question {
        gap: 12px;
    }

    .faq-icon {
        font-size: 25px;
        min-width: 20px;
    }

    .faq-text {
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 20px 0 52px;
    }

        .faq-answer.active {
            padding: 0 20px 18px 49px;
        }

        .faq-answer p {
            font-size: 14px;
        }

        .faq-answer li {
            font-size: 14px;
        }
}

/*******************************************
                    FAQ
*******************************************/



/*******************************************
                 Highlight
*******************************************/

#wb-highlight {
    background-image: url('/images/SiteBuilder/highlight.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: var(--font-family-wb);
    padding: 70px 40px;
    text-align: center;
    position: relative;
    width: 100%;
}

.highlight-container {
    max-width: 800px;
    margin: 0 auto;
}

.highlight-title {
    font-size: 62px;
    font-weight: 500;
    color: var(--light);
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.highlight-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: var(--light);
    margin: 0 0 40px 0;
    opacity: 0.95;
}

.highlight-btn {
    background-color: var(--secondary-wb);
    color: var(--light);
    font-size: 22px;
    font-weight: 300;
    padding: 7px 55px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

    .highlight-btn:hover {
        transform: translateY(-2px);
    }

    .highlight-btn:active {
        transform: translateY(0);
    }

/* Responsive */
@media (max-width: 768px) {

    .highlight-title {
        font-size: 40px;
    }

    .highlight-subtitle {
        font-size: 16px;
    }

    .highlight-btn {
        font-size: 16px;
        padding: 14px 40px;
    }
}

@media (max-width: 480px) {

    #wb-highlight {
        padding: 60px 20px;
    }

    .highlight-title {
        font-size: 32px;
    }

    .highlight-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .highlight-btn {
        font-size: 15px;
        padding: 12px 36px;
    }
}

/*******************************************
                 Highlight
*******************************************/



/*******************************************
                   Footer
*******************************************/

#wb-footer {
    background-color: var(--primary-wb);
    color: var(--white);
    padding: 60px 80px;
    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: 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) {
    #wb-footer {
        padding: 50px;
    }

    .footer-bottom-left {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 436px) {
    #wb-footer {
        padding: 40px;
    }

    .footer-desc {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 13px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .social-icon {
        font-size: 17px;
    }
}

/*******************************************
                   Footer
*******************************************/
