/* ============================================
   SERVICES PAGE TEMPLATE
   Cloned from live ecomlaunchers.com services page (Elementor page 40)
   ============================================ */

.svc-section {
    width: 100%;
}

.svc-section * {
    margin: 0;
    padding: 0;
}

/* --------------------------------------------
   BUTTONS
   -------------------------------------------- */
.svc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    align-self: flex-start;
}

.svc-btn-ghost {
    background-color: transparent;
    color: #F4A530;
    border: 1px solid #F4A530;
    padding: 15px 35px;
    font-size: 17px;
    line-height: 17px;
}

.svc-btn-ghost:hover {
    background-color: transparent;
    color: #F4A530;
    border-color: #FFFFFF;
}

.svc-btn-solid {
    background-color: #F4A530;
    color: #FFFFFF;
    border: 1px solid #F4A530;
    padding: 15px 30px 15px 35px;
    font-size: 15px;
    line-height: 15px;
}

.svc-btn-solid:hover {
    background-color: transparent;
    color: #F4A530;
    border-color: #F4A530;
}

/* --------------------------------------------
   1. HERO
   -------------------------------------------- */
.svc-hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 170px 30px 70px;
    background-image: url('../images/services-10.webp');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.svc-hero-inner {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 10px;
}

.svc-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1em;
    color: #FCFCFC;
    max-width: 89.386%;
}

.svc-hero-title .svc-accent,
.svc-title .svc-accent {
    color: #F4A530;
}

.svc-hero-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 23px;
    color: #FCFCFC;
    max-width: 76.74%;
}

.svc-btn-row {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding-top: 10px;
}

.svc-btn-row--center {
    justify-content: center;
}

/* --------------------------------------------
   2. WHY DO YOU NEED
   -------------------------------------------- */
.svc-need {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FCFCFC;
    margin: 60px 0;
    padding-bottom: 60px;
}

.svc-need-inner {
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    padding-top: 10px;
}

.svc-need-imgs {
    width: 43.2%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 0;
}

.svc-need-imgs span {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
}

.svc-need-imgs img {
    width: 100%;
    flex-shrink: 0;
    border-radius: 25px;
    box-shadow: 0 0 10px 0 #C3C3C5;
}

.svc-need-imgs .svc-img-left {
    z-index: 1;
}

.svc-need-imgs .svc-img-mid {
    z-index: 2;
}

.svc-need-imgs .svc-img-right {
    z-index: 1;
}

.svc-need-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.svc-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2em;
    color: #212121;
}

.svc-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    color: rgba(60, 66, 75, 0.65);
}

/* --------------------------------------------
   3. PERFORMANCE METRICS CAROUSEL
   -------------------------------------------- */
.svc-metrics {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 0;
    background-image: url('../images/services-10.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.svc-metrics-inner {
    width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.svc-center-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 38px;
    text-transform: uppercase;
    text-align: center;
    color: #FCFCFC;
}

.svc-center-sub {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 23px;
    text-align: center;
    color: #FCFCFC;
}

.svc-carousel {
    overflow: hidden;
    width: 100%;
    padding: 30px 0 80px;
}

.svc-carousel-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: svc-scroll 45s linear infinite;
}

.svc-carousel:hover .svc-carousel-track {
    animation-play-state: paused;
}

.svc-carousel-track img {
    width: 247px;
    height: 380px;
    flex-shrink: 0;
}

@keyframes svc-scroll {
    to {
        transform: translateX(-50%);
    }
}

/* --------------------------------------------
   4. ALL-IN-ONE SOLUTION
   -------------------------------------------- */
.svc-aio {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FCFCFC;
    margin: 60px 0;
    padding-bottom: 60px;
}

.svc-aio-inner {
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding-top: 10px;
}

.svc-aio-text {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svc-aio-img {
    width: 45%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.svc-aio-img img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 0 10px 0 #C3C3C5;
}

/* --------------------------------------------
   5. CTA CARD
   -------------------------------------------- */
.svc-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FCFCFC;
    margin: 60px 0 20px;
}

.svc-cta-card {
    width: 95%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-radius: 25px;
    box-shadow: 0 0 20px 0 rgba(60, 66, 75, 0.53);
    margin-bottom: 0;
    padding: 40px 10px;
    background-image: url('../images/chatgpt-automation.png');
    background-repeat: no-repeat;
    background-size: inherit;
}

.svc-cta-text {
    width: 63%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
}

.svc-cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1em;
    color: #FCFCFC;
    max-width: 89.386%;
}

.svc-cta-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 23px;
    color: #FCFCFC;
    max-width: 76.74%;
}

.svc-cta-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
    padding-top: 10px;
}

.svc-cta-consult {
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 23px;
    color: #FCFCFC;
    max-width: 191px;
    margin: 0;
    align-self: flex-start;
}

.svc-cta-img {
    width: 33.9%;
    display: flex;
    justify-content: center;
}

.svc-cta-img img {
    width: 95%;
}

/* --------------------------------------------
   6. VIRTUAL ASSISTANT GRID
   -------------------------------------------- */
.svc-va {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 60px;
}

.svc-va-inner,
.svc-steps-inner {
    width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.svc-center-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2em;
    color: #212121;
    text-align: center;
    width: 46%;
    align-self: center;
}

.svc-va-grid,
.svc-steps-grid {
    width: 100%;
    margin-top: 30px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    align-self: center;
}

.svc-va-box,
.svc-step {
    border-radius: 25px;
    box-shadow: 0 0 15px 0 rgba(195, 195, 197, 0.79);
    padding: 55px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.svc-va-box {
    background-color: #FFFFFF;
    border: 3px dashed #C3C3C5;
}

.svc-va-box--orange {
    background-color: #F4A530;
    border-color: rgba(33, 33, 33, 0.43);
    border-width: 3px 0;
}

.svc-va-box--tl {
    border-width: 3px 0 0 3px;
}

.svc-va-box--tr {
    border-width: 3px 3px 0 0;
}

.svc-va-box--bl {
    border-width: 0 0 3px 3px;
}

.svc-va-box--tb {
    border-width: 3px 0;
}

.svc-va-box-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 10px;
}

.svc-va-box--orange .svc-va-box-title {
    color: #FCFCFC;
}

.svc-va-box-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: rgba(60, 66, 75, 0.65);
    flex-shrink: 0;
}

.svc-va-box--orange .svc-va-box-desc {
    color: #FCFCFC;
}

/* --------------------------------------------
   7. WHY CHOOSE
   -------------------------------------------- */
.svc-wc {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.svc-wc-content {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 70px 30px 70px;
    background-image: url('../images/services-10.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.svc-wc-col {
    width: 672px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.svc-wc-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1em;
    color: #FCFCFC;
    margin-bottom: 20px;
}

.svc-wc-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 6px;
    padding: 0;
}

.svc-wc-item + .svc-wc-item {
    margin-top: 30px;
}

.svc-wc-item-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    margin-top: 0;
}

.svc-wc-item-icon svg {
    width: 28px;
    height: 28px;
    fill: #F4A530;
}

.svc-wc-item-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2em;
    color: #FCFCFC;
    margin-bottom: 10px;
}

.svc-wc-item-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: #FCFCFC;
}

.svc-wc-empty {
    width: 30%;
}

/* --------------------------------------------
   8. 4-STEP PROCESS
   -------------------------------------------- */
.svc-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 70px;
    margin-bottom: 0;
}

.svc-steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 44px;
    align-items: stretch;
}

.svc-step {
    background-color: #FFFFFF;
    border: 3px dashed #C3C3C5;
    padding: 55px 15px;
    align-items: stretch;
    text-align: center;
    min-height: 354px;
}

.svc-step--tl {
    border-width: 3px 0 3px 3px;
}

.svc-step--tb {
    border-width: 3px 0;
}

.svc-step--tb2 {
    border-width: 3px 0 2px 0;
}

.svc-step--tr {
    border-width: 3px 3px 3px 0;
}

.svc-step-icon {
    align-self: center;
    width: 22%;
    margin-top: -78px;
    flex-shrink: 0;
}

.svc-step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #212121;
    margin: 8px 0 16px;
    flex-shrink: 0;
}

.svc-step-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: rgba(60, 66, 75, 0.65);
    flex-shrink: 0;
}

.svc-step-arrow {
    position: absolute;
    right: 0;
    bottom: 150px;
    width: 10%;
    margin: 0 -40px 0 0;
    text-align: end;
    flex-shrink: 0;
}

.svc-step-arrow--less {
    margin-top: 0;
}

/* --------------------------------------------
   9. FAQ
   -------------------------------------------- */
.svc-faq {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FCFCFC;
    margin: 40px 0 0;
    padding-bottom: 40px;
}

.svc-faq-inner {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 0;
}

.svc-faq-imgcol {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.svc-faq-imgcol img {
    width: 60%;
    border-radius: 25px;
}

.svc-faq-textcol {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.svc-faq-textcol .svc-title {
    font-size: 38px;
    line-height: 1.2em;
    margin-bottom: 20px;
}

@media (min-width: 1025px) {
    .svc-faq-imgcol {
        display: none;
    }
}

.svc-faq-accordion {
    width: 100%;
    margin-top: 0;
}

.svc-faq-item {
    border-bottom: 1px solid #F4A530;
    padding: 20px;
}

.svc-faq-item[open] {
    padding: 10px;
}

.svc-faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4em;
    color: #212121;
}

.svc-faq-item summary::-webkit-details-marker {
    display: none;
}

.svc-faq-item summary:hover {
    color: #F4A530;
}

.svc-faq-item[open] summary {
    color: #F4A530;
}

.svc-faq-item-icons {
    display: inline-flex;
    flex-shrink: 0;
}

.svc-faq-item-icons svg {
    width: 18px;
    height: 18px;
    fill: #F4A530;
}

.svc-faq-item .svc-faq-icon-minus {
    display: none;
}

.svc-faq-item[open] .svc-faq-icon-plus {
    display: none;
}

.svc-faq-item[open] .svc-faq-icon-minus {
    display: block;
}

.svc-faq-answer {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    color: rgba(60, 66, 75, 0.65);
    margin-top: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* ---------- Tablet (max-width: 1024px) ---------- */
@media (max-width: 1024px) {
    .svc-hero {
        padding: 140px 15px 80px;
        background-position: bottom center;
    }

    .svc-hero-title,
    .svc-wc-title {
        font-size: 30px;
    }

    .svc-hero-desc {
        font-size: 15px;
    }

    .svc-btn-ghost {
        font-size: 15px;
        padding: 12px 15px;
    }

    .svc-btn-solid {
        font-size: 15px;
    }

    .svc-btn-row {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .svc-btn-row--center {
        align-items: center;
    }

    .svc-btn-row .svc-btn-ghost {
        width: 100%;
    }

    .svc-need-inner,
    .svc-aio-inner {
        flex-direction: column;
        width: 92%;
        justify-content: center;
        align-items: center;
    }

    .svc-need-imgs {
        width: 100%;
    }

    .svc-need-text,
    .svc-aio-text {
        width: 100%;
    }

    .svc-title {
        font-size: 30px;
    }

    .svc-desc {
        font-size: 15px;
    }

    .svc-metrics {
        padding: 40px 0;
    }

    .svc-metrics-inner {
        width: 92%;
    }

    .svc-center-title {
        font-size: 30px;
    }

    .svc-center-sub {
        font-size: 15px;
    }

    .svc-aio {
        padding: 0;
    }

    .svc-cta {
        margin: 0;
    }

    .svc-cta-card {
        padding: 15px 19px 15px 10px;
        margin-bottom: 0;
    }

    .svc-cta-text {
        width: 68%;
    }

    .svc-cta-img {
        width: 42%;
    }

    .svc-cta-title {
        font-size: 30px;
    }

    .svc-cta-desc,
    .svc-cta-consult {
        font-size: 15px;
    }

    .svc-cta-row {
        flex-direction: column;
        gap: 12px;
    }

    .svc-cta-img img {
        width: 100%;
    }

    .svc-va-inner,
    .svc-steps-inner {
        width: 92%;
    }

    .svc-va-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-center-heading {
        max-width: 468px;
    }

    .svc-va-box-desc,
    .svc-step-desc {
        font-size: 14px;
    }

    .svc-wc-content {
        padding: 40px 15px;
    }

    .svc-wc-item-title {
        font-size: 20px;
    }

    .svc-wc-item-desc {
        font-size: 15px;
    }

    .svc-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-step-icon {
        width: 25%;
    }

    .svc-step-arrow {
        width: 12%;
        margin-right: -25px;
    }

    .svc-steps {
        padding-top: 0;
    }

    .svc-faq-inner {
        width: 92%;
        justify-content: center;
        align-items: center;
    }

    .svc-faq-imgcol img {
        width: 100%;
    }

    .svc-faq-textcol {
        width: 100%;
    }

    .svc-faq-textcol .svc-title {
        font-size: 30px;
    }
}

/* ---------- Mobile (max-width: 767px) ---------- */
@media (max-width: 767px) {
    .svc-hero {
        min-height: 300px;
    }

    .svc-hero-inner {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .svc-hero-title {
        font-size: 25px;
        max-width: 100%;
    }

    .svc-hero-desc {
        font-size: 14px;
        max-width: 100%;
    }

    .svc-btn-ghost,
    .svc-btn-solid {
        font-size: 14px;
    }

    .svc-need {
        padding-bottom: 0;
    }

    .svc-need-imgs .svc-img-left,
    .svc-need-imgs .svc-img-mid {
        display: none;
    }

    .svc-need-imgs {
        justify-content: center;
    }

    .svc-need-imgs .svc-img-right {
        width: 187px;
        max-width: 187px;
    }

    .svc-need-imgs .svc-img-right img {
        width: 100%;
    }

    .svc-title {
        font-size: 25px;
    }

    .svc-center-title {
        font-size: 28px;
        line-height: 1.4em;
    }

    .svc-aio-img {
        width: 100%;
    }

    .svc-cta-card {
        flex-direction: column;
    }

    .svc-cta-text {
        width: 100%;
    }

    .svc-cta-img {
        width: 100%;
    }

    .svc-cta-title {
        font-size: 25px;
    }

    .svc-center-heading {
        font-size: 28px;
        max-width: 255px;
    }

    .svc-va-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .svc-va-inner,
    .svc-steps-inner {
        padding: 0;
    }

    .svc-wc {
        flex-direction: column;
    }

    .svc-wc-content {
        width: 100%;
    }

    .svc-wc-empty {
        display: none;
    }

    .svc-steps-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .svc-step-arrow {
        display: none;
    }

    .svc-faq-inner {
        padding-top: 0;
    }

    .svc-faq-imgcol img {
        width: 71%;
    }

    .svc-faq-textcol .svc-title {
        font-size: 25px;
        text-align: center;
    }

    .svc-faq-answer {
        font-size: 15px;
    }
}

/* ============================================
   CATEGORY ARCHIVE GRID (taxonomy-service_category.php)
   New section — no equivalent existed on the original static site, since
   individual category listing pages are new in the WordPress rebuild.
   Kept in the same visual language as the rest of the site (Montserrat,
   #F4A530 accent, rounded white cards) rather than reusing the homepage's
   "Services We Offer" strip, which was hard-coded to overlap that page's
   own hero image and breaks when reused elsewhere.
   ============================================ */
.cat-grid-section {
    background-color: #fcfcfc;
    padding: 70px 0 90px;
}

.cat-grid-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.cat-grid-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 45px;
}

.cat-grid-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #212121;
    margin: 0 0 12px;
}

.cat-grid-sub {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 28px;
}

.cat-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 14px;
    padding: 30px 26px;
    text-decoration: none;
    box-shadow: 0 4px 22px rgba(33, 33, 33, 0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(244, 165, 48, 0.22);
    border-color: #F4A530;
}

.cat-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(244, 165, 48, 0.12);
    color: #F4A530;
    font-size: 20px;
    margin-bottom: 18px;
}

.cat-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #212121;
    margin: 0 0 10px;
    line-height: 1.35;
}

.cat-card-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 18px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #F4A530;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cat-card-link i {
    transition: transform 0.25s ease;
}

.cat-card:hover .cat-card-link i {
    transform: translateX(4px);
}

.cat-grid-empty {
    text-align: center;
    color: #666;
    font-family: 'Raleway', sans-serif;
    padding: 40px 0;
}

@media (max-width: 600px) {
    .cat-grid-title {
        font-size: 26px;
    }
    .cat-grid {
        grid-template-columns: 1fr;
    }
}
