/* Corporate Horoscope Analysis Page Styles */

.simple-hero {
    min-height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
    padding: 20px 20px 10px 20px;
}

.simple-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #b9413a;
    font-weight: 600;
    margin: 0;
}

/* Main Content Styles */
.main-content {
    padding: 10px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    background: transparent;
}

.content-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #b9413a;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.content-wrapper h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #b9413a;
    margin: 40px 0 20px 0;
    font-weight: 600;
}

.content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c2c2c;
    margin-bottom: 20px;
    text-align: justify;
}

.content-wrapper .tagline {
    font-size: 1.4rem;
    font-weight: 600;
    color: #b9413a;
    text-align: center;
    font-style: italic;
    margin: 30px 0;
    padding: 20px;
    background: rgba(185, 65, 58, 0.1);
    border-radius: 10px;
    border-left: 4px solid #b9413a;
}

.content-wrapper ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-wrapper ol li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.content-block {
    background: #dad2b0;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.content-block p {
    margin: 0;
    color: #2c2c2c;
}

.corporate-content {
    padding: 20px 0;
}

.service-section {
    margin-bottom: 60px;
    border-radius: 15px;
    padding: 40px;
}

.service-header {
    text-align: center;
    margin-bottom: 40px;
}

.service-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #b9413a;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #b9413a;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.price-tag {
    display: inline-block;
    background: linear-gradient(135deg, #b9413a, #d45a4a);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-details {
    text-align: center;
}

.service-note {
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-item {
    background: #dad2b0;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #b9413a, #d45a4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.service-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Additional Services */
.additional-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Remedies Section */
.remedies-section {
}

.remedies-content {
    text-align: center;
}

.remedies-content > p {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 40px;
    font-weight: 500;
}

.remedies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.remedy-item {
    background: #dad2b0;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.remedy-item:hover {
    transform: translateY(-3px);
}

.remedy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #b9413a, #d45a4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.remedy-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 10px;
    font-weight: 600;
}

.remedy-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.remedies-note {
    background: rgba(185, 65, 58, 0.2);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #b9413a;
}

.remedies-note p {
    color: #2c2c2c;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Annual Services */
.annual-section {
}

.annual-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #b9413a, #d45a4a);
    color: white;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.cta-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-button.primary {
    background: white;
    color: #b9413a;
}

.cta-button.primary:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Business Pricing Section Styles */
.business-pricing-section {
    margin: 40px 0;
}

.business-pricing-section h3 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #b9413a;
    margin-bottom: 40px;
    font-weight: 600;
}

.pricing-card {
    background: #dad2b0;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(185, 65, 58, 0.2);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid #b9413a;
    background: linear-gradient(135deg, #dad2b0, #f0e6d2);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #b9413a, #d45a4a);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(185, 65, 58, 0.3);
}

.pricing-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.service-details {
    flex: 2;
}

.service-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #b9413a;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #2c2c2c;
}

.feature-item i {
    width: 20px;
    color: #b9413a;
    font-size: 1.1rem;
}

.pricing-info {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: rgba(185, 65, 58, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(185, 65, 58, 0.2);
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #b9413a;
    font-weight: 700;
    margin-bottom: 8px;
}

.price-range {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #b9413a;
    font-weight: 700;
    margin-bottom: 8px;
}

.price-note {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .simple-hero h1 {
        font-size: 2.5rem;
    }
    
    .main-content {
        padding: 15px 0;
    }
    
    .content-wrapper h2 {
        font-size: 2rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.6rem;
    }
    
    .content-wrapper .tagline {
        font-size: 1.2rem;
        padding: 15px;
    }
    
    .content-wrapper p {
        font-size: 1rem;
        text-align: justify;
    }
    
    /* Justify all content text on mobile */
    p, .content p, .intro-text, .info-text, .description, .content-block p, .content-wrapper p, .service-item p, .remedy-item p, .remedies-note p {
        text-align: justify;
    }
    
    /* Keep headings and special elements centered or left as needed */
    h1, h2, h3, h4, h5, h6, .btn, .button, .nav-link {
        text-align: inherit;
    }
    
    .content-block {
        padding: 25px 20px;
        margin-bottom: 15px;
    }
    
    .corporate-content {
        padding: 15px 0;
    }
    
    .service-section {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .service-header h2 {
        font-size: 2rem;
    }
    
    .service-header h3 {
        font-size: 1.6rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .additional-services {
        grid-template-columns: 1fr;
    }
    
    .remedies-grid {
        grid-template-columns: 1fr;
    }
    
    .annual-services {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Pricing section mobile styles */
    .business-pricing-section h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .pricing-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .service-details {
        order: 1;
    }
    
    .pricing-info {
        order: 2;
        flex: none;
    }
    
    .service-details h4 {
        font-size: 1.5rem;
    }
    
    .feature-item {
        font-size: 1rem;
        justify-content: center;
    }
    
    .price-amount,
    .price-range {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .simple-hero h1 {
        font-size: 2rem;
    }
    
    .simple-hero {
        padding: 40px 15px;
    }
    
    .content-wrapper {
        padding: 0 15px;
    }
    
    .content-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.4rem;
    }
    
    .content-wrapper .tagline {
        font-size: 1.1rem;
        padding: 12px;
    }
    
    .content-wrapper p {
        font-size: 0.95rem;
    }
    
    .content-wrapper ol li {
        font-size: 0.95rem;
    }
    
    .content-block {
        padding: 20px 15px;
        margin-bottom: 12px;
    }
    
    .service-section {
        padding: 25px 15px;
    }
    
    .service-header h2 {
        font-size: 1.8rem;
    }
    
    .service-header h3 {
        font-size: 1.4rem;
    }
    
    .service-item {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .remedy-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    /* Pricing section small mobile styles */
    .business-pricing-section h3 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .service-details h4 {
        font-size: 1.3rem;
    }
    
    .feature-item {
        font-size: 0.95rem;
        gap: 10px;
    }
    
    .feature-item i {
        font-size: 1rem;
    }
    
    .price-amount,
    .price-range {
        font-size: 1.8rem;
    }
    
    .price-note {
        font-size: 0.9rem;
    }
    
    .pricing-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .featured-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
}
