/**
 * Front Page - Modern Minimalist Styles
 * Clean, minimal design with RED accents
 * @package Betpro_Theme
 */

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.bp--hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #1a1a1f 0%, #222228 100%);
    overflow: hidden;
}

.bp--hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 20% 10%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 50% at 85% 30%, rgba(245, 158, 11, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.bp--hero-wrapper {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.bp--hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ef4444;
    margin-bottom: 30px;
}

.bp--pulse {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.bp--hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.bp--gradient {
    background: linear-gradient(135deg, #ef4444, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bp--hero-desc {
    font-size: 1.15rem;
    color: #a1a1aa;
    line-height: 1.8;
    margin-bottom: 35px;
}

.bp--hero-desc strong {
    color: #ffffff;
}

/* Buttons */
.bp--hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.bp--btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.bp--btn-primary {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

.bp--btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
    color: #ffffff;
}

.bp--btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.bp--btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.bp--btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* Hero Stats */
.bp--hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.bp--stat {
    text-align: left;
}

.bp--stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.bp--stat-label {
    font-size: 0.85rem;
    color: #71717a;
}

.bp--stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   SECTIONS BASE
   ========================================================================== */
.bp--section {
    padding: 100px 0;
}

.bp--section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.bp--section-header.bp--white h2 {
    color: #ffffff;
}

.bp--section-header.bp--white p {
    color: #a1a1aa;
}

.bp--tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.bp--section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1f;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.bp--section-header p {
    font-size: 1.1rem;
    color: #71717a;
    line-height: 1.7;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.bp--about {
    background: #ffffff;
}

.bp--cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.bp--card {
    padding: 35px 30px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.2s ease;
}

.bp--card:hover {
    transform: translateY(-5px);
    border-color: #dc2626;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.08);
}

.bp--card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
}

.bp--card-icon svg {
    color: #dc2626;
}

.bp--card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1f;
    margin-bottom: 10px;
}

.bp--card p {
    font-size: 0.95rem;
    color: #71717a;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   STEPS SECTION
   ========================================================================== */
.bp--steps {
    background: linear-gradient(180deg, #1a1a1f 0%, #222228 100%);
}

.bp--steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bp--step {
    position: relative;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-align: center;
}

.bp--step:hover {
    border-color: rgba(220, 38, 38, 0.3);
}

.bp--step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
}

.bp--step h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.bp--step p {
    font-size: 0.95rem;
    color: #a1a1aa;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.bp--features {
    background: #ffffff;
}

.bp--features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.bp--feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 25px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.bp--feature:hover {
    border-color: #dc2626;
    background: #ffffff;
}

.bp--feature>svg {
    flex-shrink: 0;
    color: #22c55e;
    margin-top: 2px;
}

.bp--feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1f;
    margin-bottom: 5px;
}

.bp--feature p {
    font-size: 0.9rem;
    color: #71717a;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.bp--testimonials {
    background: linear-gradient(180deg, #1a1a1f 0%, #222228 100%);
}

.bp--testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.bp--testimonial {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.bp--testimonial:hover {
    border-color: rgba(220, 38, 38, 0.3);
}

.bp--stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.bp--stars svg {
    color: #f59e0b;
}

.bp--testimonial>p {
    font-size: 0.95rem;
    color: #a1a1aa;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.bp--author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bp--avatar {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
}

.bp--author strong {
    display: block;
    font-size: 0.9rem;
    color: #ffffff;
}

.bp--author span {
    font-size: 0.8rem;
    color: #71717a;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.bp--faq {
    background: #ffffff;
}

.bp--faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.bp--faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.bp--faq-item:hover {
    border-color: #dc2626;
}

.bp--faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.bp--faq-q span {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1f;
}

.bp--faq-q svg {
    flex-shrink: 0;
    color: #dc2626;
    transition: transform 0.2s ease;
}

.bp--faq-item.active .bp--faq-q svg {
    transform: rotate(45deg);
}

.bp--faq-a {
    display: none;
    padding: 0 24px 20px;
}

.bp--faq-item.active .bp--faq-a {
    display: block;
}

.bp--faq-a p {
    font-size: 0.95rem;
    color: #71717a;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.bp--cta {
    background: linear-gradient(180deg, #1a1a1f 0%, #222228 100%);
    padding: 80px 0;
}

.bp--cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.bp--cta-box h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.bp--cta-box p {
    font-size: 1.1rem;
    color: #a1a1aa;
    margin-bottom: 30px;
}

/* ==========================================================================
   BLOG SECTION
   ========================================================================== */
.bp--blog {
    background: #f9fafb;
}

.bp--blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.bp--post-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.bp--post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.bp--post-img {
    display: block;
    overflow: hidden;
}

.bp--post-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.bp--post-card:hover .bp--post-img img {
    transform: scale(1.05);
}

.bp--post-content {
    padding: 25px;
}

.bp--post-date {
    font-size: 0.8rem;
    color: #71717a;
}

.bp--post-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 10px 0 15px;
    line-height: 1.4;
}

.bp--post-content h3 a {
    color: #1a1a1f;
    text-decoration: none;
}

.bp--post-content h3 a:hover {
    color: #dc2626;
}

.bp--read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #dc2626;
    text-decoration: none;
}

.bp--read-more:hover {
    gap: 10px;
}

.bp--no-posts {
    grid-column: 1 / -1;
    text-align: center;
    color: #71717a;
    padding: 40px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .bp--hero h1 {
        font-size: 2.8rem;
    }

    .bp--cards-grid,
    .bp--steps-grid,
    .bp--testimonials-grid,
    .bp--blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bp--hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .bp--hero h1 {
        font-size: 2.2rem;
    }

    .bp--hero-desc {
        font-size: 1rem;
    }

    .bp--hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .bp--stat-divider {
        display: none;
    }

    .bp--section {
        padding: 70px 0;
    }

    .bp--section-header h2 {
        font-size: 2rem;
    }

    .bp--cards-grid,
    .bp--steps-grid,
    .bp--features-grid,
    .bp--testimonials-grid,
    .bp--blog-grid {
        grid-template-columns: 1fr;
    }

    .bp--cta-box h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .bp--hero h1 {
        font-size: 1.8rem;
    }

    .bp--hero-actions {
        flex-direction: column;
    }

    .bp--btn {
        width: 100%;
    }

    .bp--section-header h2 {
        font-size: 1.7rem;
    }
}



.contact-item svg {
    width: 30px;
    align-items: center;
    display: flex;
    flex-direction: column;
}