/* ============================================
   SECTIONS STYLES
   Stats, Problems, Why Us, Process, Results,
   Testimonials, Trust, FAQ
   Bookedout BNB Website
   ============================================ */

/* ╔══════════════════════════════════════════╗
   ║          STATS BAR SECTION              ║
   ╚══════════════════════════════════════════╝ */

.stats-bar {
    background: var(--black-primary);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-primary), var(--red-muted), var(--red-primary));
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
    min-width: 160px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--red-primary);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red-primary);
}

.stat-desc {
    width: 100%;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}


/* ╔══════════════════════════════════════════╗
   ║        PROBLEM / PAIN SECTION           ║
   ╚══════════════════════════════════════════╝ */

.problem-section {
    padding: var(--section-padding);
    background: var(--white-base);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.problem-card {
    background: var(--red-bg-soft);
    border: 1px solid rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--red-primary);
    transform: scaleY(0);
    transition: transform var(--transition-normal);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.problem-card:hover::before {
    transform: scaleY(1);
}

.problem-icon {
    width: 56px;
    height: 56px;
    background: var(--white-base);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon i {
    font-size: 1.5rem;
    color: var(--red-primary);
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.problem-card p {
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.problem-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(230, 57, 70, 0.15);
}

.problem-stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--red-primary);
}

.problem-stat span:last-child {
    font-size: 0.8rem;
    color: var(--gray-body);
}

.problem-cta {
    text-align: center;
}

.problem-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}


/* ╔══════════════════════════════════════════╗
   ║         WHY CHOOSE US SECTION           ║
   ╚══════════════════════════════════════════╝ */

.why-us-section {
    padding: var(--section-padding);
    background: var(--gray-light);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    background: var(--white-base);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230, 57, 70, 0.15);
}

.why-icon {
    width: 72px;
    height: 72px;
    background: var(--red-bg-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--transition-normal);
}

.why-card:hover .why-icon {
    background: var(--red-primary);
}

.why-icon i {
    font-size: 1.8rem;
    color: var(--red-primary);
    transition: color var(--transition-normal);
}

.why-card:hover .why-icon i {
    color: var(--white-base);
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.92rem;
    line-height: 1.7;
}


/* ╔══════════════════════════════════════════╗
   ║        HOW IT WORKS / PROCESS           ║
   ╚══════════════════════════════════════════╝ */

.process-section {
    padding: var(--section-padding);
    background: var(--white-base);
}

.process-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--red-primary);
    color: var(--white-base);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.step-content {
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    flex: 1;
    transition: all var(--transition-normal);
}

.step-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.step-icon {
    width: 44px;
    height: 44px;
    background: var(--red-bg-soft);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.step-icon i {
    color: var(--red-primary);
    font-size: 1.2rem;
}

.step-content h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.step-content p {
    font-size: 0.92rem;
}

.step-connector {
    position: absolute;
    left: 27px;
    top: 56px;
    width: 2px;
    height: calc(100% - 16px);
    background: linear-gradient(to bottom, var(--red-primary), var(--gray-soft));
    z-index: 1;
}


/* ╔══════════════════════════════════════════╗
   ║        RESULTS SECTION                  ║
   ╚══════════════════════════════════════════╝ */

.results-section {
    padding: var(--section-padding);
    background: var(--gray-light);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.result-card {
    background: var(--white-base);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.result-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.result-header {
    background: var(--black-primary);
    color: var(--white-base);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
}

.result-header i {
    color: var(--red-primary);
}

.result-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 28px 24px;
}

.before, .after {
    text-align: center;
}

.before .label, .after .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 4px;
}

.before .label { color: var(--red-muted); }
.after .label { color: var(--green-success); }

.before .value, .after .value {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.before .value { color: var(--red-muted); }
.after .value { color: var(--green-success); }

.before .metric, .after .metric {
    font-size: 0.8rem;
    color: var(--gray-body);
}

.result-arrow {
    color: var(--gray-soft);
    font-size: 1.5rem;
}

.result-details {
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

.detail-label {
    color: var(--gray-body);
    font-weight: 500;
}

.detail-value {
    font-weight: 700;
    color: var(--black-primary);
}

.detail-value.positive {
    color: var(--green-success);
}


/* ╔══════════════════════════════════════════╗
   ║        TESTIMONIALS SECTION             ║
   ╚══════════════════════════════════════════╝ */

.testimonials-section {
    padding: var(--section-padding);
    background: var(--white-base);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--red-primary);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 57, 70, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--gray-body);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--red-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-base);
    font-weight: 700;
    font-size: 0.85rem;
}

.author-info strong {
    display: block;
    font-size: 0.92rem;
    color: var(--black-primary);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--gray-body);
}

.verified-badge {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--green-success);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}


/* ╔══════════════════════════════════════════╗
   ║        TRUST BANNER SECTION             ║
   ╚══════════════════════════════════════════╝ */

.trust-section {
    padding: 60px 0;
    background: var(--gray-light);
}

.trust-banner {
    background: linear-gradient(135deg, var(--black-primary) 0%, #1a1a2e 100%);
    border-radius: var(--radius-xl);
    padding: 50px 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.trust-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: var(--red-primary);
    border-radius: 50%;
    opacity: 0.08;
}

.trust-banner-content {
    flex: 1;
}

.trust-banner-content h2 {
    color: var(--white-base);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.trust-banner-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    flex-shrink: 0;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-item i {
    color: var(--green-success);
    font-size: 1.1rem;
}

.badge-item span {
    color: var(--white-base);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}


/* ╔══════════════════════════════════════════╗
   ║             FAQ SECTION                 ║
   ╚══════════════════════════════════════════╝ */

.faq-section {
    padding: var(--section-padding);
    background: var(--white-base);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-soft);
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid var(--gray-soft);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black-primary);
    transition: color var(--transition-normal);
}

.faq-question:hover {
    color: var(--red-primary);
}

.faq-question i {
    color: var(--red-primary);
    transition: transform var(--transition-normal);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 22px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-body);
}