/* =============================================
   BISONBLAZE - INNER PAGES STYLES
   ============================================= */

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
    background: var(--black);
    padding: 14px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
}

.breadcrumb li a {
    color: var(--gray-400);
    transition: color var(--transition-fast);
    padding: 6px 16px;
    background: var(--gray-800);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%, 10px 50%);
}

.breadcrumb li:first-child a {
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
}

.breadcrumb li a:hover {
    color: var(--white);
}

.breadcrumb li.active {
    padding: 6px 16px;
    background: var(--primary-color);
    color: var(--white);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%, 10px 50%);
}


/* ===== PAGE HEADER ===== */
.page-header-section {
    padding: 60px 0 40px;
    background: var(--white);
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 600px;
    line-height: 1.7;
}


/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-content {
    max-width: 650px;
    padding: 60px 0;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.page-hero-text {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}


/* ===== SECTION HELPERS ===== */
.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 550px;
    margin: 12px auto 0;
    line-height: 1.7;
}

.section-desc.text-center {
    text-align: center;
}

.nav-link.active {
    color: var(--primary-color);
}


/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 60px var(--gutter) 80px !important;
}

.contact-form-wrapper,
.contact-info-wrapper {
    padding: 0 10px;
}

.contact-form-wrapper .section-heading,
.contact-info-wrapper .section-heading {
    font-size: 26px;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid var(--gray-200);
    border-radius: 0;
    background: var(--gray-50);
    transition: border-color var(--transition-fast);
    color: var(--black);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23666'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Contact Info */
.contact-info-card {
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.contact-info-card:last-of-type {
    border-bottom: none;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 14px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--gray-600);
}

.contact-detail i {
    color: var(--primary-color);
    margin-top: 4px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.contact-detail a {
    color: var(--gray-600);
}

.contact-detail a:hover {
    color: var(--primary-color);
}

/* Social links */
.contact-social {
    margin-top: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    font-size: 16px;
    transition: background var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-color);
}


/* ===== SPORTS PAGE ===== */
.sports-page-grid {
    padding: 0 var(--gutter) 80px !important;
}

.sports-page-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sport-page-card {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.sport-page-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease);
}

.sport-page-card:hover .sport-page-bg {
    transform: scale(1.06);
}

.sport-page-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 50%);
}

.sport-page-content {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 30px;
    z-index: 1;
}

.sport-page-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 6px;
}

.sport-page-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 14px;
}

.sport-page-cta {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition);
}

.sport-page-card:hover .sport-page-cta {
    gap: 14px;
}


/* ===== PARTNERSHIP PAGE ===== */
.partnership-benefits-section {
    padding: 80px var(--gutter) !important;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 36px 28px;
    transition: all var(--transition);
}

.benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    font-size: 22px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-500);
}


/* ===== TIERS ===== */
.tiers-section {
    padding: 80px var(--gutter) !important;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.tier-card {
    background: var(--white);
    padding: 36px 30px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
}

.tier-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.tier-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.tier-card.featured:hover {
    transform: scale(1.05) translateY(-6px);
}

.tier-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 18px;
    white-space: nowrap;
}

.tier-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.tier-header h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 4px;
}

.tier-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-features {
    margin-bottom: 28px;
    text-align: left;
}

.tier-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.tier-features li i {
    color: var(--primary-color);
    font-size: 12px;
    flex-shrink: 0;
}


/* ===== PRODUCT LISTING ===== */
.product-listing-section {
    padding: 0 var(--gutter) 80px !important;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card-item {
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition);
    background: var(--white);
}

.product-card-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.product-card-image {
    position: relative;
    height: 260px;
    background: var(--gray-100);
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card-item:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-hover {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.product-card-item:hover .product-card-hover {
    opacity: 1;
}

.product-card-body {
    padding: 18px 20px;
}

.product-card-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.product-card-date {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
}

.btn-small {
    padding: 10px 20px;
    font-size: 11px;
}


/* ===== PRODUCT DETAIL ===== */
.product-detail-section {
    padding: 40px var(--gutter) 80px !important;
}

.product-detail-image {
    padding-right: 20px;
}

.product-detail-info {
    padding-left: 20px;
}

.product-features-list {
    margin: 20px 0;
    list-style: none;
}

.product-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--gray-600);
}

.product-features-list li i {
    color: var(--primary-color);
    font-size: 13px;
    flex-shrink: 0;
}


/* ===== INFO / POLICY PAGES ===== */
.info-section {
    padding: 0 var(--gutter) 80px !important;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 40px;
    max-width: 850px;
}

.info-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.info-heading {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--black);
    margin: 32px 0 14px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.info-card .info-heading:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}


/* ===== FAQ ITEMS ===== */
.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    overflow: hidden;
}

.faq-q {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    padding: 16px 20px;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin: 0;
}

.faq-q i {
    color: var(--primary-color);
    font-size: 12px;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-a {
    padding: 16px 20px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray-600);
    margin: 0 !important;
    border-top: 1px solid var(--gray-200);
}


/* ===== ACCOUNT PAGES ===== */
.account-section {
    padding: 0 var(--gutter) 80px !important;
}

.account-box {
    max-width: 480px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 40px;
}

.account-box .section-heading {
    font-size: 24px;
    margin-bottom: 24px;
}

.account-alt {
    text-align: center;
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 16px;
}


/* ===== CTA SIMPLE ===== */
.cta-simple-section {
    padding: 80px var(--gutter) !important;
    background: var(--gray-50);
}

.cta-simple {
    max-width: 600px;
    margin: 0 auto;
}

.cta-simple .section-heading {
    margin-bottom: 12px;
}

.cta-simple .section-desc {
    margin-bottom: 28px;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 959px) {
    .breadcrumb li a,
    .breadcrumb li.active {
        font-size: 11px;
        padding: 5px 12px;
    }

    .sports-page-cards {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .tiers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .tier-card.featured {
        transform: none;
    }

    .contact-section .row-cols-2 > .col,
    .product-detail-section .row-cols-2 > .col {
        width: 100%;
    }

    .contact-info-wrapper {
        margin-top: 40px;
    }

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

    .product-detail-image {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .product-detail-info {
        padding-left: 0;
    }

    .info-card {
        padding: 28px 24px;
    }
}

@media (max-width: 569px) {
    .sports-page-cards {
        grid-template-columns: 1fr;
    }

    .sport-page-card {
        min-height: 300px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-hero {
        min-height: 320px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 24px 18px;
    }

    .account-box {
        padding: 28px 20px;
    }

    .breadcrumb {
        overflow-x: auto;
    }
}
