/* VFlash Landing Custom Styles — Dark Orange Theme */

/* Logo */
.vflash-logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.text-accent {
    color: #C2510E;
}

/* Language toggle */
.btn-lang {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-lang:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero badges */
.hero-badges {
    gap: 16px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.badge-item i {
    font-size: 20px;
    color: #FF9100;
}

/* Step numbers */
.step-number {
    font-size: 64px;
    font-weight: 800;
    color: rgba(255, 145, 0, 0.15);
    line-height: 1;
    margin-bottom: 10px;
}

/* Step images — mobile phone mockup style */
.step-img {
    max-height: 500px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Comparison table */
.comparison-table {
    margin-top: 40px;
}

.comparison-table .table {
    border-color: rgba(255, 255, 255, 0.1);
    font-size: 16px;
}

.comparison-table .table thead th {
    padding: 18px 20px;
    font-weight: 600;
    font-size: 17px;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.comparison-table .table td {
    padding: 14px 20px;
    border-color: rgba(255, 255, 255, 0.08);
}

.comparison-table .highlight-col {
    background: rgba(255, 145, 0, 0.1);
    border-left: 2px solid #FF9100;
    border-right: 2px solid #FF9100;
}

.comparison-table thead .highlight-col {
    border-top: 2px solid #FF9100;
    color: #FF9100;
}

.comparison-table tbody tr:last-child .highlight-col {
    border-bottom: 2px solid #FF9100;
}

.comparison-table .text-success {
    color: #2ecc71 !important;
    font-size: 20px;
}

.comparison-table .text-danger {
    color: rgba(255, 255, 255, 0.25) !important;
    font-size: 20px;
}

/* Pricing popular badge */
.pr-column.popular {
    border: 2px solid #FF9100;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF9100;
    color: #fff;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Free badge banner */
.free-badge-banner .badge {
    animation: pulse-glow 2s infinite;
    white-space: normal !important;
    text-align: center;
    line-height: 1.4;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 145, 0, 0.3); }
    50% { box-shadow: 0 0 25px rgba(255, 145, 0, 0.6); }
}

/* FAQ accordion dark styling */
.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 12px;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 20px 24px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 145, 0, 0.1);
    color: #fff;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.7;
    padding: 0 24px 20px;
}

/* Icon wrap for feature cards */
.icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: rgba(255, 145, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #FF9100;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Footer title */
.footer-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Step images */
.illustration img,
.step-img {
    opacity: 0.95;
}

/* Hero illustration */
.illustration {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 650px;
}

/* Pricing price small */
.pr-header .price small {
    font-size: 18px;
    opacity: 0.6;
}

/* ========================================
   MOBILE RESPONSIVE FIXES
   ======================================== */

@media (max-width: 991px) {
    .illustration {
        position: relative;
        width: 100%;
        max-width: 100%;
        transform: none;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    /* Header: logo + controls layout */
    .top-header > .d-flex {
        flex-wrap: wrap;
    }

    .top-header .logo {
        width: 100%;
        margin-bottom: 10px;
    }

    .top-header .logo img {
        height: 44px !important;
    }

    .top-header .right-widget {
        margin-left: 0 !important;
    }

    /* Header: fix CTA button overflow */
    .download-btn-one {
        font-size: 13px !important;
        padding: 8px 14px !important;
        white-space: nowrap;
    }

    .right-widget .d-flex {
        gap: 8px;
    }

    /* Hero */
    .hero-heading {
        font-size: 28px !important;
        line-height: 1.2;
    }

    .hero-badges {
        gap: 12px;
    }

    .badge-item {
        font-size: 13px;
    }

    /* Step images on mobile — smaller */
    .step-img {
        max-height: 350px;
        border-radius: 16px;
    }

    .step-number {
        font-size: 48px;
    }

    /* Comparison table — scroll hint */
    .comparison-table .table {
        font-size: 13px;
    }

    .comparison-table .table thead th {
        padding: 10px 8px;
        font-size: 13px;
    }

    .comparison-table .table td {
        padding: 10px 8px;
    }

    /* Pricing section */
    .pricing-section-five h2 {
        font-size: 24px !important;
    }

    .free-badge-banner {
        margin-top: 16px;
    }

    .free-badge-banner .badge {
        font-size: 14px !important;
        padding: 12px 16px !important;
        white-space: normal !important;
        word-break: break-word;
    }

    .pr-column {
        margin-bottom: 0;
    }

    .pr-header .price {
        font-size: 36px;
    }

    /* Testimonials */
    .feedback-section-six {
        margin-top: 80px !important;
        overflow: hidden;
    }

    .feedback-section-six blockquote,
    .feedback-section-six .item blockquote {
        font-size: 20px !important;
        line-height: 1.5 !important;
        letter-spacing: 0 !important;
        padding: 0 5px !important;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .feedback-section-six h6 {
        font-size: 15px !important;
    }

    .feedback-section-six .shapes,
    .feedback-section-six .shape_01,
    .feedback-section-six .shape_02,
    .feedback-section-six .shape_03 {
        display: none !important;
    }

    .feedback-section-six .slick-dots {
        margin-top: 20px !important;
    }

    /* FAQ */
    .accordion-button {
        font-size: 15px;
        padding: 16px 18px;
    }

    .accordion-body {
        font-size: 14px;
        padding: 0 18px 16px;
    }

    /* CTA */
    .fancy-banner-seven h2 {
        font-size: 24px !important;
    }

    .fancy-banner-seven .fs-28 {
        font-size: 18px !important;
    }

    /* Footer */
    .footer-five .social-icon {
        margin-top: 12px;
    }

    /* Feature cards */
    .card-style-eight p {
        font-size: 14px;
    }

    /* General text sizing */
    .fs-24 {
        font-size: 16px !important;
    }

    .title-nine h2 {
        font-size: 24px;
    }

    /* Navbar toggler fix */
    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 400px) {
    .hero-heading {
        font-size: 24px !important;
    }

    .download-btn-one {
        font-size: 12px !important;
        padding: 6px 10px !important;
    }

    .btn-lang {
        padding: 4px 10px;
        font-size: 12px;
    }
}
