﻿body,
h1, h2, h3, h4, h5, h6,
p {
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== Hero Banner ========== */
.hero-banner {
    min-height: 100vh;
    background-color: #000;
    background-image: url('../images/hero-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* Header */
.hero-header {
    padding: 24px 0;
}

.hero-logo img {
    max-height: 80px;
    width: auto;
    display: block;
}

/* Buttons — gradient */
.btn-hero-white {
    background: linear-gradient(to right, #2FCAF1 0%, #8C52FF 100%);
    color: #fff;
    border: 1px solid transparent;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-hero-white:hover {
    background: linear-gradient(to right, #2FCAF1 0%, #8C52FF 100%);
    color: #fff;
    opacity: 0.9;
    border-color: transparent;
}

.btn-header,
.btn-header:hover {
    background: linear-gradient(to right, #4E8BFE 0%, #B48CF9 52%, #A8F4F7 100%);
    color: #fff;
    opacity: 1;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-hero-outline:hover {
    background: #fff;
    color: #000;
}

/* Hero Content */
.hero-row {
    min-height: calc(100vh - 100px);
    padding-bottom: 40px;
}

.hero-content {
    padding: 20px 0 40px;
}

.hero-badge {
    display: inline-block;
    position: relative;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 22px;
    background: transparent;
    z-index: 1;
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(to right, #2FCAF1 0%, #8C52FF 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.hero-title {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px;
}

.hero-subtitle {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 18px;
    opacity: 0.95;
}

.hero-text {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-btns {
    flex-wrap: nowrap !important;
    align-items: center;
}

.hero-btns .btn {
    display: inline-block;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Responsive */
/* ========== Approach Section ========== */
.approach-section {
    position: relative;
    padding: 90px 0;
    background-image: url('../images/service-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.approach-header {
    max-width: 720px;
    margin: 0 auto 48px;
}

.approach-badge {
    display: inline-block;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 18px;
}

.approach-title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.approach-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 0;
}

.approach-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.approach-card-top {
    margin-bottom: 22px;
}

.approach-icon {
    width: 44px;
    height: auto;
    display: block;
}

.approach-number {
    width: 72px;
    height: 52px;
    display: block;
    flex-shrink: 0;
    overflow: visible;
}

.approach-card-title {
    background: linear-gradient(to right, #2FCAF1 0%, #8C52FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.approach-card-text {
    color: #747474;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.approach-card-btn {
    background: linear-gradient(to right, #2FCAF1 0%, #8C52FF 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    align-self: flex-start;
    transition: 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.approach-card-btn:hover {
    color: #fff;
    opacity: 0.92;
}

/* ========== Why Authors Section ========== */
.why-section {
    background: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 50px;
    right: 0;
    width: 180px;
    height: 180px;
    background-image: url('../images/infinity.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    pointer-events: none;
    z-index: 0;
    /* mix-blend-mode: screen; */
}

.why-section::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -143px;
    width: 442px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 140, 249, 0.35) 0%, rgba(180, 140, 249, 0.15) 40%, rgba(180, 140, 249, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.why-section .container {
    position: relative;
    z-index: 1;
}

.why-header {
    max-width: 720px;
    margin: 0 auto 50px;
}

.why-lead {
    color: #353535;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    position: relative;
    padding: 8px 0;
    max-width: 1100px;
    margin: 0 auto;
}

.why-feature {
    padding: 28px 32px;
    margin-bottom: 0;
    background: transparent;
    max-width: 100%;
    border: none;
}

.why-feature:nth-child(1) {
    border-right: 1.5px dashed #000;
    border-bottom: 1.5px dashed #000;
}

.why-feature:nth-child(2) {
    border-bottom: 1.5px dashed #000;
}

.why-feature:nth-child(3) {
    border-right: 1.5px dashed #000;
}

.why-feature-label {
    display: block;
    color: #9A9A9A;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.why-feature-title {
    background: linear-gradient(to right, #2FCAF1 0%, #8C52FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.why-feature-text {
    color: #8A8A8A;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ========== Book Promotion CTA ========== */
.promo-section {
    background: #fff;
    padding: 40px 0 20px;
}

.promo-banner {
    background-image: url('../images/cta-bg.webp');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    border-radius: 40px;
    text-align: center;
    padding: 70px 40px 220px;
    overflow: hidden;
}

.promo-badge {
    display: inline-block;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 22px;
}

.promo-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.promo-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

/* ========== Marketing Support Section ========== */
.marketing-section {
    background: #fff;
    padding: 80px 0;
}

.marketing-header {
    max-width: 720px;
    margin: 0 auto 48px;
}

.marketing-card {
    background: #ECF8FF;
    border-radius: 24px;
    padding: 28px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.marketing-card-body {
    flex: 1;
    min-width: 0;
}

.marketing-label {
    display: block;
    color: #9A9A9A;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.marketing-card-title {
    background: linear-gradient(to right, #2FCAF1 0%, #8C52FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
}

.marketing-card-text {
    color: #747474;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 22px;
}

.marketing-card-btn {
    background: linear-gradient(to right, #2FCAF1 0%, #8C52FF 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 22px rgba(47, 202, 241, 0.3);
    transition: 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.marketing-card-btn:hover {
    color: #fff;
    opacity: 0.92;
}

.marketing-card-img {
    flex: 0 0 42%;
    max-width: 220px;
}

.marketing-card-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

/* ========== Portfolio Section ========== */
.portfolio-section {
    background: #fff;
    padding: 80px 0;
}

.portfolio-header {
    max-width: 720px;
    margin: 0 auto 40px;
}

.portfolio-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 920px;
    margin: 0 auto 48px;
    border: 1px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(to right, #2FCAF1 0%, #8C52FF 100%) border-box;
}

.portfolio-tab {
    flex: 1 1 auto;
    min-width: 120px;
    position: relative;
    background: #fff;
    border: none;
    color: #6B6B6B;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 14px 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.portfolio-tab:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, #2FCAF1 0%, #8C52FF 100%);
}

.portfolio-tab:hover {
    color: #353535;
}

.portfolio-tab.active {
    background: linear-gradient(to right, #2FCAF1 0%, #8C52FF 100%);
    color: #fff;
}

.portfolio-tab.active::after {
    opacity: 0;
}

.portfolio-item.is-hidden {
    display: none;
}

.portfolio-card {
    display: block;
    text-decoration: none;
    text-align: center;
}

.portfolio-img-wrap {
    margin: 0 auto 18px;
    overflow: hidden;
    width: 100%;
    max-width: 313px;
    aspect-ratio: 313 / 502;
    height: auto;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.35s ease;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.03);
}

.portfolio-title {
    background: linear-gradient(to right, #2FCAF1 0%, #8C52FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.portfolio-author {
    color: #9A9A9A;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 0;
}

/* ========== Quote Form Section ========== */
.quote-section {
    background: #fff;
    padding: 50px 0;
}

.quote-header {
    max-width: 720px;
    margin: 0 auto 30px;
}

.quote-image-wrap {
    position: relative;
    display: block;
    width: 100%;
}

.quote-image {
    width: 100%;
    border-radius: 24px;
    display: block;
    object-fit: cover;
}

.quote-image-btn {
    display: none;
}

.quote-form {
    display: block;
    width: 100%;
}

.quote-form-row {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    row-gap: 14px !important;
}

.quote-form-row > [class*="col-"] {
    margin-bottom: 0;
}

.quote-message-col {
    display: block;
}

.quote-label {
    display: block;
    color: #353535;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    margin-top: 0;
}

.quote-form .quote-input,
.quote-form .form-control.quote-input,
.quote-form .form-select.quote-input {
    background: #F8F8F8 !important;
    background-color: #F8F8F8 !important;
    border: 1px solid #C4C4C4 !important;
    border-radius: 4px;
    color: #4E4545;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    height: 48px;
    padding: 12px 16px;
    box-shadow: none !important;
}

.quote-form .quote-input:focus,
.quote-form .form-control.quote-input:focus,
.quote-form .form-select.quote-input:focus {
    background: #F8F8F8 !important;
    background-color: #F8F8F8 !important;
    border-color: #C4C4C4 !important;
    box-shadow: none !important;
    color: #4E4545;
}

.quote-form .quote-input.is-invalid,
.quote-form .form-control.quote-input.is-invalid,
.quote-form .form-select.quote-input.is-invalid {
    border-color: #e74c3c !important;
}

.quote-form .field-error {
    display: block;
    color: #e74c3c;
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
    font-family: 'Poppins', sans-serif;
}

.quote-form .quote-input::placeholder {
    color: #A0A0A0;
}

.quote-form .quote-textarea {
    resize: none;
    height: 300px !important;
    min-height: 300px;
}

.quote-form-row > .col-12:last-child {
    margin-top: 8px;
}

.quote-submit-btn {
    background: linear-gradient(to right, #4E8BFE 0%, #B48CF9 52%, #A8F4F7 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 10px 28px rgba(78, 139, 254, 0.35);
    transition: 0.3s ease;
}

.quote-submit-btn:hover {
    color: #fff;
    opacity: 0.92;
    box-shadow: 0 12px 32px rgba(180, 140, 249, 0.4);
}

/* ========== Quote Modal ========== */
.quote-modal .modal-dialog {
    max-width: 720px;
}

.quote-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(53, 53, 53, 0.18);
}

.quote-modal-header {
    padding: 28px 32px 0;
    align-items: flex-start;
}

.quote-modal-header .btn-close {
    margin-top: 4px;
    opacity: 0.65;
}

.quote-modal-title {
    margin: 10px 0 0;
    font-size: 28px;
}

.quote-modal-body {
    padding: 12px 32px 32px;
}

.quote-modal-text {
    margin-bottom: 20px;
}

.quote-modal .quote-form .quote-textarea {
    height: 140px !important;
    min-height: 140px;
}

/* ========== Testimonials Section ========== */
.testimonials-section {
    background: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    max-width: 720px;
    margin: 0 auto 50px;
}

.testimonial-rating-card {
    background: linear-gradient(to right, #2FCAF1 0%, #8C52FF 100%);
    border-radius: 20px;
    padding: 36px 28px;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.rating-score {
    color: #fff;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.rating-score-text {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.rating-stars {
    color: #fff;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.rating-count {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
}

.rating-text {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 220px;
}

.rating-avatars {
    margin-top: 0;
    justify-content: center;
}

.rating-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4E8BFE 0%, #8C52FF 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.rating-avatar:first-child {
    margin-left: 0;
}

.rating-avatar-more {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    margin-left: -12px;
    border: 2px solid #fff;
}

.testimonial-slider-wrap {
    position: relative;
    height: 100%;
}

.testimonial-card {
    background: #F8F8F8;
    border: 1px solid #C4C4C4;
    border-radius: 20px;
    padding: 36px 32px 80px;
    height: 100%;
}

.testimonial-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 18px;
}

.testimonial-card-rating .star {
    background: linear-gradient(to right, #4E8BFE 0%, #B48CF9 52%, #A8F4F7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 24px;
}

.testimonial-card-rating .rating-num {
    color: #353535;
    font-size: 16px;
    font-weight: 600;
    margin-left: 8px;
}

.testimonial-card-text {
    color: #4E4545;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 28px;
}

.testimonial-author {
    gap: 14px;
}

.testimonial-author-initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4E8BFE 0%, #8C52FF 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.testimonial-author-name {
    color: #8C52FF;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-author-role {
    color: #4E4545;
    font-size: 13px;
}

.testimonial-arrows {
    position: absolute;
    right: 32px;
    bottom: 28px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.testimonial-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    padding: 0;
    background: #000;
    transition: 0.3s ease;
}

.testimonial-prev,
.testimonial-next {
    background: #000;
}

.testimonial-arrow:hover {
    background: linear-gradient(to right, #2FCAF1 0%, #8C52FF 100%);
}

/* ========== FAQ Section ========== */
.faq-section {
    background: #fff;
    padding: 80px 0;
    color: #000;
}

.faq-header {
    max-width: 720px;
    margin: 0 auto 50px;
}

.faq-badge {
    display: inline-block;
    color: #484444;
    border: 1px solid transparent;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 18px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(to right, #2FCAF1 0%, #8C52FF 100%) border-box;
}

/* Section Headings â€” solid + gradient span */
.section-heading {
    color: #353535;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.heading-gradient {
    background: linear-gradient(to right, #2FCAF1 0%, #8C52FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-text {
    color: #747474;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}

.faq-title {
    color: #353535;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.faq-subtitle {
    color: #747474;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Accordion */
.faq-accordion .faq-item {
    border: 1px solid #B48CF9;
    border-radius: 12px !important;
    margin-bottom: 14px;
    overflow: hidden;
    background: #F8F8F8;
}

.faq-accordion .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #664747;
    background: #F8F8F8;
    box-shadow: none;
    padding: 18px 20px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #171717;
    background: transparent;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion .accordion-button::after {
    width: 12px;
    height: 12px;
    background-size: 12px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23664747'%3e%3cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23171717'%3e%3cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    color: #664747;
    font-size: 14px;
    line-height: 1.7;
    padding: 0 20px 18px;
    background: transparent;
}

.faq-accordion .faq-item:has(.accordion-button:not(.collapsed)) .accordion-body {
    color: #171717;
}

.faq-accordion .faq-item:has(.accordion-button:not(.collapsed)) {
    background: linear-gradient(to bottom, #D8F3FF, #FFFFFF);
}

/* Side Cards */
.faq-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-cta-card {
    background: linear-gradient(to right, #2FCAF1 0%, #8C52FF 100%);
    border: none;
    border-radius: 16px;
    padding: 40px 28px;
    color: #fff;
}

.faq-cta-icon {
    margin-bottom: 18px;
}

.faq-cta-icon img {
    width: 48px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.faq-cta-title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.faq-cta-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.faq-chat-btn {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.faq-chat-btn:hover {
    background: #fff;
    color: #000;
}

.faq-support-card {
    background: #F8F8F8;
    border: 1px solid #C4C4C4;
    border-radius: 16px;
    padding: 24px;
    gap: 18px;
}

/* .faq-support-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.faq-support-icon img {
    width: 70px;
    height: auto;
    display: block;
}

.faq-support-label {
    display: block;
    color: #4E4545;
    font-size: 13px;
    margin-bottom: 4px;
}

.faq-support-title {
    background: linear-gradient(to right, #2FCAF1 0%, #8C52FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.faq-support-title a {
    background: inherit;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-decoration: none;
}

.faq-support-link {
    display: block;
    color: #4E4545;
    font-size: 13px;
    text-decoration: none;
}

.faq-support-link:hover {
    color: #8C52FF;
}

/* ========== Footer ========== */
.site-footer {
    background-image: url('../images/footer-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0 30px;
    color: #fff;
}

.footer-logo img {
    max-height: 70px;
    width: auto;
    display: block;
}

.footer-text {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}

.footer-top {
    padding-bottom: 28px;
}

.footer-contact-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 32px;
    align-items: start;
    margin: 0 0 28px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    padding-right: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-contact-item:last-child {
    border-right: none;
    padding-right: 0;
}

.footer-contact-item-static {
    cursor: default;
}

.footer-contact-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-value {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    line-height: 1.55;
    word-break: break-word;
}

.footer-contact-item:hover .footer-contact-value {
    color: #A8F4F7;
}

.footer-divider {
    display: none;
}

.footer-copy {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.footer-link {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}

.footer-link-sep {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* ========== Soft Hover Effects ========== */
.btn-hero-white,
.btn-hero-outline,
.btn-header,
.approach-card-btn,
.marketing-card-btn,
.quote-submit-btn,
.faq-chat-btn,
.testimonial-arrow {
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-hero-white:hover,
.btn-header:hover,
.approach-card-btn:hover,
.marketing-card-btn:hover,
.quote-submit-btn:hover,
.faq-chat-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(140, 82, 255, 0.28);
    opacity: 1;
}

.btn-hero-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.approach-card,
.marketing-card,
.testimonial-card,
.testimonial-rating-card,
.faq-cta-card,
.faq-support-card,
.faq-item,
.why-feature,
.portfolio-card,
.promo-banner {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.approach-card:hover,
.marketing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(47, 202, 241, 0.14);
}

.testimonial-card:hover {
    transform: none;
}

.testimonial-rating-card:hover,
.faq-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(140, 82, 255, 0.25);
}

.faq-support-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(180, 140, 249, 0.18);
}

.portfolio-card:hover {
    transform: translateY(-4px);
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.04);
}

.portfolio-tab {
    transition: color 0.3s ease, background 0.3s ease, transform 0.25s ease;
}

.portfolio-tab:hover:not(.active) {
    color: #8C52FF;
    background: rgba(140, 82, 255, 0.06);
}

.hero-logo img,
.footer-logo img {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-logo:hover img,
.footer-logo:hover img {
    transform: scale(1.04);
    opacity: 0.92;
}

.hero-badge,
.faq-badge,
.approach-badge,
.promo-badge {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-badge:hover,
.faq-badge:hover,
.approach-badge:hover,
.promo-badge:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.marketing-card-img img,
.quote-image {
    transition: transform 0.4s ease;
}

.marketing-card:hover .marketing-card-img img,
.quote-image-wrap:hover .quote-image {
    transform: scale(1.03);
}

.testimonial-arrow:hover {
    transform: scale(1.08);
}

.footer-link {
    transition: opacity 0.3s ease, text-decoration 0.3s ease;
}

.footer-link:hover {
    opacity: 0.85;
}

.faq-accordion .accordion-button {
    transition: background 0.3s ease, color 0.3s ease;
}

.rating-avatar {
    transition: transform 0.3s ease;
}

.rating-avatars:hover .rating-avatar {
    transform: translateY(-2px);
}

/* ========== Legal / Inner Pages ========== */
.hero-banner:has(.inner-hero-row) {
    min-height: auto;
    background-position: center top;
}

.inner-hero-row {
    min-height: auto !important;
    padding: 20px 0 32px !important;
}

.inner-hero-row .hero-content {
    padding: 6px 0 0 !important;
}

.faq-badge-light {
    color: #fff;
    background:
        linear-gradient(transparent, transparent) padding-box,
        linear-gradient(to right, #2FCAF1 0%, #8C52FF 100%) border-box;
    border: 1px solid transparent;
    margin-bottom: 14px;
}

.section-heading-light {
    color: #fff;
    font-size: 36px;
    margin-bottom: 12px;
    line-height: 1.25;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.section-text-light {
    color: rgba(255, 255, 255, 0.92);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.legal-hero-content {
    max-width: 720px;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
}

.legal-section {
    background: #fff;
    padding: 70px 0 90px;
}

.legal-card {
    background: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 18px;
    padding: 40px 42px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow-wrap: anywhere;
    word-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

.legal-updated {
    color: #8A8A8A;
    font-size: 13px;
    margin-bottom: 22px;
}

.legal-heading {
    background: linear-gradient(to right, #2FCAF1 0%, #8C52FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 24px;
    font-weight: 700;
    margin: 28px 0 12px;
}

.legal-text {
    color: #5A5A5A;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 14px;
}

.legal-list {
    color: #5A5A5A;
    font-size: 15px;
    line-height: 1.75;
    padding-left: 20px;
    margin-bottom: 14px;
}

.legal-list li {
    margin-bottom: 8px;
}

.legal-card a {
    color: #8C52FF;
    text-decoration: none;
}

.legal-card a:hover {
    text-decoration: underline;
}

/* ========== Contact Page ========== */
.contact-section {
    background: #fff;
    padding: 50px 0 10px;
}

.contact-info-row {
    margin-bottom: 0;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    width: 100%;
    min-width: 0;
    padding: 26px 24px;
    border: 1px solid #E6E6E6;
    border-radius: 16px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

a.contact-info-card:hover {
    transform: translateY(-3px);
    border-color: #D5C7FF;
    box-shadow: 0 12px 28px rgba(140, 82, 255, 0.12);
    color: inherit;
}

.contact-info-card-static {
    cursor: default;
}

.contact-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(to right, #4E8BFE 0%, #B48CF9 52%, #A8F4F7 100%);
    margin-bottom: 16px;
    flex-shrink: 0;
}

.contact-info-title {
    font-size: 18px;
    font-weight: 600;
    color: #1F1F1F;
    margin-bottom: 8px;
}

.contact-info-text {
    font-size: 14px;
    line-height: 1.6;
    color: #5A5A5A;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-quote-section {
    padding-top: 30px;
    padding-bottom: 70px;
}

.contact-quote-section .quote-header {
    max-width: 720px;
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
}

/* ========== Thank You Page ========== */
.thankyou-section {
    background: #fff;
    padding: 60px 0 90px;
}

.thankyou-card {
    background: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 18px;
    padding: 48px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.thankyou-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(to right, #4E8BFE 0%, #B48CF9 52%, #A8F4F7 100%);
    margin: 0 auto 22px;
    box-shadow: 0 10px 28px rgba(78, 139, 254, 0.3);
}

.thankyou-title {
    font-size: 28px;
    font-weight: 700;
    color: #1F1F1F;
    margin-bottom: 14px;
    line-height: 1.3;
}

.thankyou-text {
    font-size: 15px;
    line-height: 1.7;
    color: #5A5A5A;
    margin-bottom: 14px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-text-muted {
    font-size: 14px;
    color: #7A7A7A;
    margin-bottom: 28px;
}

.thankyou-text a {
    color: #8C52FF;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.thankyou-text a:hover {
    text-decoration: underline;
}

.thankyou-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.thankyou-secondary-btn {
    background: transparent;
    color: #4E8BFE;
    border: 1px solid #B48CF9;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: 0.3s ease;
}

.thankyou-secondary-btn:hover {
    color: #fff;
    background: linear-gradient(to right, #4E8BFE 0%, #B48CF9 52%, #A8F4F7 100%);
    border-color: transparent;
}

/* ========== Performance ========== */
.why-section,
.promo-section,
.marketing-section,
.portfolio-section,
.approach-section,
.quote-section,
.testimonials-section,
.faq-section,
.contact-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}
