/* BalanceOil Product Page Styles */

/* Hero Section */
.balance-hero {
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
}

.balance-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    z-index: -1;
}

.balance-hero-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
}

.balance-hero-text {
    max-width: 600px;
}

.balance-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.balance-hero-text h2 {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.balance-hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.balance-hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 140px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border: none;
}

.btn-hero.btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-hero.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-hero.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Problem Section */
.balance-problem {
    padding: 4rem 0;
    background: var(--white);
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problem-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.balance-problem p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Cellular Impact Section */
.balance-cellular {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f3f0ff 0%, #e8e4f3 100%);
}

.balance-cellular h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.cellular-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cellular-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
}

.cellular-bad {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

.cellular-good {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

.cellular-divider {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
}

/* Comparison Section */
.balance-comparison {
    padding: 4rem 0;
    background: var(--white);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.comparison-column h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-before h3 {
    color: #dc2626;
}

.comparison-after h3 {
    color: #16a34a;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    background: var(--light-bg);
}

.comparison-item img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.balance-concept-summary {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

.balance-concept-summary h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Process Section */
.balance-process {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f3f0ff 0%, #e8e4f3 100%);
}

.process-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.process-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-bestseller {
    background: var(--accent-color);
    color: var(--text-dark);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 25px;
}

.balance-process h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.process-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-downloads {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.download-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Steps Section */
.balance-steps {
    padding: 4rem 0;
    background: var(--white);
}

.balance-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.steps-intro {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 4rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.step-item {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-cycle {
    background: var(--accent-color);
}

.step-cycle img {
    width: 30px;
    height: 30px;
}

.step-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Statistics Section */
.balance-stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f3f0ff 0%, #e8e4f3 100%);
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stat-main {
    text-align: center;
}

.stat-main h2 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-main p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.stat-main small {
    color: var(--text-light);
}

.expert-quote {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.expert-quote blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    font-style: italic;
}

.expert-quote cite {
    font-weight: 600;
    color: var(--primary-color);
}

/* Testimonials Section */
.balance-testimonials {
    padding: 4rem 0;
    background: var(--white);
}

.balance-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-item {
    background: linear-gradient(135deg, #f3f0ff 0%, #e8e4f3 100%);
    padding: 2rem;
    border-radius: 15px;
}

.testimonial-item blockquote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
    font-style: italic;
}

.testimonial-item cite {
    color: var(--primary-color);
    font-weight: 500;
}

/* Product Links Section */
.balance-products {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f3f0ff 0%, #e8e4f3 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.product-link-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-link-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-link-item p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* FAQ Section */
.balance-faq {
    padding: 4rem 0;
    background: var(--white);
}

.balance-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: linear-gradient(135deg, #f3f0ff 0%, #e8e4f3 100%);
    padding: 2rem;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-item h3 {
    color: var(--text-dark);
    font-weight: 600;
}

/* Blog Section */
.balance-blog {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f3f0ff 0%, #e8e4f3 100%);
}

.balance-blog h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.balance-blog > .container > p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-5px);
}

.blog-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-item h3 {
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .balance-hero {
        min-height: 500px;
        background-attachment: scroll;
    }
    
    .balance-hero-content {
        padding: 4rem 1rem;
        text-align: center;
    }
    
    .balance-hero-text {
        max-width: 100%;
    }
    
    .balance-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .balance-hero-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .balance-hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
    }
    
    .cellular-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cellular-divider {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-main h2 {
        font-size: 3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .process-downloads {
        flex-direction: column;
        align-items: center;
    }
}
