﻿/* =========================================================
   VOWEL - DIGITAL MARKETING PROCESS PAGE
========================================================= */


/* =========================================================
   PAGE TITLE
========================================================= */

.process-page-title {
    position: relative;
    padding-top: 25px;
    padding-bottom: 35px;
}


.process-content-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #FAA500;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


    .process-content-label::before {
        content: "";
        width: 27px;
        height: 2px;
        background: #FAA500;
        border-radius: 10px;
    }


.process-page-title .pagetitle__heading {
    margin-bottom: 14px;
}


.process-page-title p {
    max-width: 780px;
    margin: 0 auto;
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   PROCESS INTRO
========================================================= */

.vd-process-intro {
    padding: 55px 0 45px;
    background: #ffffff;
}


.vd-process-intro-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 38px 42px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}


    .vd-process-intro-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: #FAA500;
    }


.vd-process-intro-icon {
    flex: 0 0 auto;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #fff6e5;
    color: #FAA500;
    font-size: 23px;
}


.vd-process-intro-content {
    flex: 1;
}


    .vd-process-intro-content h2 {
        margin: 0 0 14px;
        color: #111111;
        font-size: 30px;
        font-weight: 700;
        line-height: 1.3;
    }


    .vd-process-intro-content p {
        margin: 0;
        color: #666666;
        font-size: 16px;
        line-height: 1.85;
    }


/* =========================================================
   PROCESS SECTION
========================================================= */

.vd-process-section {
    position: relative;
    padding: 50px 0 100px;
    background: linear-gradient( 180deg, #ffffff 0%, #f8f9fb 100% );
    overflow: hidden;
}


.vd-process-heading {
    margin-bottom: 55px;
}


    .vd-process-heading > p {
        margin: 10px 0 0;
        color: #777777;
        font-size: 15px;
    }


/* =========================================================
   TIMELINE
========================================================= */

.vd-process-timeline {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
}


    .vd-process-timeline::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient( to bottom, rgba(250,165,0,.05), rgba(250,165,0,.6), rgba(250,165,0,.05) );
        transform: translateX(-50%);
    }


/* =========================================================
   PROCESS ITEM
========================================================= */

.vd-process-item {
    position: relative;
    width: 50%;
    padding-bottom: 65px;
}


.vd-process-left {
    padding-right: 65px;
}


.vd-process-right {
    margin-left: 50%;
    padding-left: 65px;
}


.vd-process-last {
    padding-bottom: 0;
}


/* =========================================================
   MARKER
========================================================= */

.vd-process-marker {
    position: absolute;
    top: 5px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FAA500;
    color: #111111;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 0 0 7px #f8f9fb, 0 8px 22px rgba(250,165,0,.22);
    z-index: 5;
}


.vd-process-left .vd-process-marker {
    right: -24px;
}


.vd-process-right .vd-process-marker {
    left: -24px;
}


/* =========================================================
   CONNECTOR
========================================================= */

.vd-process-connector {
    position: absolute;
    top: 29px;
    width: 65px;
    height: 1px;
    background: rgba(250,165,0,.35);
}


.vd-process-left .vd-process-connector {
    right: 0;
}


.vd-process-right .vd-process-connector {
    left: 0;
}


/* =========================================================
   PROCESS CARD
========================================================= */

.vd-process-card {
    position: relative;
    padding: 32px 34px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(0,0,0,.045);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}


    .vd-process-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 0;
        background: #FAA500;
        border-radius: 20px 0 0 20px;
        transition: height .35s ease;
    }


    .vd-process-card:hover {
        transform: translateY(-6px);
        border-color: rgba(250,165,0,.45);
        box-shadow: 0 20px 45px rgba(0,0,0,.08);
    }


        .vd-process-card:hover::before {
            height: 100%;
        }


/* =========================================================
   CARD TOP
========================================================= */

.vd-process-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}


.vd-process-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff6e5;
    color: #FAA500;
    font-size: 20px;
    transition: .35s ease;
}


.vd-process-card:hover .vd-process-icon {
    background: #FAA500;
    color: #111111;
    transform: translateY(-2px);
}


.vd-process-card-top > span {
    color: #d4d4d4;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* =========================================================
   PROCESS HEADINGS
========================================================= */

.vd-process-card h2 {
    margin: 0 0 14px;
    color: #111111;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
}


.vd-process-card p {
    margin: 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   CONSUMER FIRST
========================================================= */

.vd-consumer-section {
    padding: 5px 0 80px;
    background: #f8f9fb;
}


.vd-consumer-card {
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 850px;
    margin: 0 auto;
    padding: 30px 35px;
    background: #111111;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,.1);
}


.vd-consumer-icon {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #FAA500;
    color: #111111;
    font-size: 20px;
}


.vd-consumer-card .process-content-label {
    margin-bottom: 7px;
}


.vd-consumer-card p {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   FAQ SECTION
========================================================= */

.vd-process-faq {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}


.vd-process-faq-heading {
    max-width: 750px;
    margin: 0 auto 48px;
}


    .vd-process-faq-heading h2 {
        margin: 12px 0;
        color: #111111;
        font-size: 36px;
        font-weight: 700;
        line-height: 1.25;
    }


    .vd-process-faq-heading p {
        margin: 0;
        color: #777777;
        font-size: 16px;
    }


/* FAQ list */

.vd-process-faq-list {
    max-width: 950px;
    margin: 0 auto;
}


/* FAQ item */

.vd-process-faq-item {
    position: relative;
    margin-bottom: 15px;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 7px 25px rgba(0,0,0,.035);
    transition: border-color .3s ease, box-shadow .3s ease;
}


    .vd-process-faq-item:hover,
    .vd-process-faq-item.active {
        border-color: rgba(250,165,0,.4);
        box-shadow: 0 14px 35px rgba(0,0,0,.07);
    }


/* Question */

.vd-process-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 25px 22px 28px;
    border: 0 !important;
    outline: none !important;
    background: #ffffff !important;
    color: #222222 !important;
    text-align: left;
    cursor: pointer;
    box-shadow: none !important;
}


    .vd-process-faq-question h4 {
        margin: 0;
        color: #222222 !important;
        font-size: 17px;
        font-weight: 600;
        line-height: 1.5;
    }


.vd-process-faq-toggle {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff5df;
    color: #FAA500;
    font-size: 12px;
    transition: transform .35s ease, background .35s ease, color .35s ease;
}


.vd-process-faq-item.active
.vd-process-faq-toggle {
    background: #FAA500;
    color: #111111;
    transform: rotate(45deg);
}


/* Answer */

.vd-process-faq-answer {
    display: none;
    padding: 0 30px 25px 28px;
}


.vd-process-faq-item.active
.vd-process-faq-answer {
    display: block;
}


.vd-process-faq-answer p {
    margin: 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.vd-process-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}


    .vd-process-item.is-visible {
        opacity: 1;
        transform: translateY(0);
    }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .vd-process-intro {
        padding-top: 45px;
    }


    .vd-process-left {
        padding-right: 45px;
    }


    .vd-process-right {
        padding-left: 45px;
    }


    .vd-process-connector {
        width: 45px;
    }


    .vd-process-card {
        padding: 28px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .process-page-title {
        padding-top: 10px;
        padding-bottom: 25px;
    }


        .process-page-title p {
            font-size: 15px;
        }


    .vd-process-intro {
        padding: 40px 0 30px;
    }


    .vd-process-intro-card {
        display: block;
        padding: 30px 25px;
    }


    .vd-process-intro-icon {
        margin-bottom: 20px;
    }


    .vd-process-intro-content h2 {
        font-size: 28px;
    }


    .vd-process-intro-content p {
        font-size: 15px;
    }


    .vd-process-section {
        padding: 40px 0 70px;
    }


    /* Timeline becomes vertical */

    .vd-process-timeline::before {
        left: 20px;
        transform: none;
    }


    .vd-process-item,
    .vd-process-left,
    .vd-process-right {
        width: 100%;
        margin-left: 0;
        padding-left: 58px;
        padding-right: 0;
        text-align: left;
    }


        .vd-process-left .vd-process-marker,
        .vd-process-right .vd-process-marker {
            left: -4px;
            right: auto;
        }


    .vd-process-connector {
        display: none;
    }


    .vd-process-card {
        padding: 26px 23px;
    }


        .vd-process-card h2 {
            font-size: 22px;
        }


        .vd-process-card p {
            font-size: 15px;
        }


    .vd-consumer-section {
        padding-bottom: 65px;
    }


    .vd-consumer-card {
        align-items: flex-start;
        padding: 28px 24px;
    }


    .vd-process-faq {
        padding: 70px 0;
    }


    .vd-process-faq-heading h2 {
        font-size: 30px;
    }


    .vd-process-faq-heading p {
        font-size: 15px;
    }


    .vd-process-faq-question {
        padding: 20px 18px 20px 22px;
    }


        .vd-process-faq-question h4 {
            font-size: 16px;
        }


    .vd-process-faq-answer {
        padding: 0 22px 22px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .vd-process-item,
    .vd-process-left,
    .vd-process-right {
        padding-left: 52px;
    }


    .vd-process-timeline::before {
        left: 19px;
    }


    .vd-process-marker {
        width: 40px;
        height: 40px;
        font-size: 11px;
    }


    .vd-process-left .vd-process-marker,
    .vd-process-right .vd-process-marker {
        left: -1px;
    }


    .vd-process-card {
        padding: 24px 20px;
    }


        .vd-process-card h2 {
            font-size: 21px;
        }


        .vd-process-card p {
            font-size: 14px;
        }


    .vd-consumer-card {
        display: block;
    }


    .vd-consumer-icon {
        margin-bottom: 18px;
    }
}
