/* Section-Specific Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 50%, var(--tertiary-bg) 100%);
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    width: 100vw !important;
    max-width: none !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="800" r="120" fill="url(%23a)"/></svg>');
    pointer-events: none;
}

.hero-container {
    display: flex;
    min-height: 100vh;
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 50px 50px;
    position: relative;
    z-index: 2;
}

.hero-right {
    flex: 1;
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    width: 50vw;
    max-width: none !important;
}

.hero-right .image-placeholder.hero-img {
    width: 100% !important;
    height: 100vh;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: none !important;
    background-image: url('/assets/home-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    color: transparent;
    font-size: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* General Sections */
.intro-section {
    background: var(--primary-bg);
    padding: 80px 0;
}

.appeal-section {
    background: var(--tertiary-bg);
    padding: 80px 0;
}

.stats-section {
    background: var(--secondary-bg);
    padding: 80px 0;
}

.science-section {
    background: var(--primary-bg);
    padding: 80px 0;
}

.chief-scientist-section {
    background: var(--tertiary-bg);
    padding: 80px 0;
}

.divine-wellness-section {
    background: var(--secondary-bg);
    padding: 80px 0;
}

.benefits-section {
    background: var(--primary-bg);
    padding: 80px 0;
}

.order-now-section {
    background: var(--primary-bg);
    padding: 80px 0;
}

.faq-section {
    background: var(--tertiary-bg);
    padding: 80px 0;
}

.footer-section {
    background: #2c2c2c;
    color: #cccccc;
    padding: 60px 0 40px;
}

/* Special Offer Section */
.special-offer-section {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-light));
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.special-offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="800" r="120" fill="url(%23a)"/></svg>');
    pointer-events: none;
}

.special-offer-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-details {
    margin-top: 30px;
}

.offer-text {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
}

/* Content Boxes */
.personal-appeal {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.scientist-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.scientist-detailed {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.divine-wellness-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.benefits-detailed {
    background: var(--tertiary-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: 40px;
}

.order-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Highlight Sections */
.highlight-section {
    background: linear-gradient(135deg, var(--secondary-bg), var(--tertiary-bg));
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.divine-section {
    background: linear-gradient(135deg, var(--tertiary-bg), rgba(212, 160, 23, 0.1));
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.sacha-inchi-highlight {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-light));
    color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.3);
}

.scripture-quote {
    background: linear-gradient(135deg, var(--tertiary-bg), rgba(212, 160, 23, 0.1));
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-style: italic;
}

.scripture-quote blockquote {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 500;
}

.cost-breakdown {
    background: var(--tertiary-bg);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
}

.savings-highlight {
    background: linear-gradient(135deg, var(--secondary-bg), var(--tertiary-bg));
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.miracle-highlight {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-light));
    color: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.3);
}

.miracle-highlight p {
    margin-bottom: 15px;
}

.miracle-highlight .lead {
    font-size: 1.3rem;
    font-weight: 600;
}

.guarantee-box {
    background: linear-gradient(135deg, var(--secondary-bg), var(--tertiary-bg));
    border-radius: 15px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.2);
}

/* Responsive Sections */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
    }

    .hero-left {
        padding: 100px 30px 30px;
    }

    .hero-right {
        display: none;
    }

    .personal-appeal {
        padding: 25px;
    }

    .hero-section {
        padding-top: 80px;
    }
}

@media (max-width: 576px) {
    .personal-appeal {
        padding: 20px;
    }

    .order-content {
        padding: 25px;
    }

    .cost-breakdown {
        padding: 20px;
    }

    .special-offer-content {
        padding: 30px 20px;
    }
}