/* Horary Chart Reading 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 */
.consultation-content {
    margin-top: 90px;
    padding: 40px 0 20px;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.intro-section {
    text-align: center;
    margin-bottom: 60px;
}

.intro-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #b9413a;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.15rem;
    color: #2c2c2c;
    line-height: 1.7;
    max-width: 820px;
    margin: 0 auto;
}

.info-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    color: #b9413a;
    text-align: center;
    margin-bottom: 35px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.info-card {
    background: #dad2b0;
    border: 1px solid rgba(185, 65, 58, 0.25);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(185, 65, 58, 0.18);
}

.info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b9413a, #d45a4a);
}

.info-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.info-card h4 {
    font-size: 1.3rem;
    color: #b9413a;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.info-card p {
    color: #2c2c2c;
    line-height: 1.65;
    font-size: 1rem;
    margin: 0;
}

.details-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.details-card {
    background: #dad2b0;
    border-radius: 15px;
    border: 1px solid rgba(185, 65, 58, 0.25);
    padding: 35px 30px;
}

.details-card h3 {
    font-size: 1.5rem;
    color: #b9413a;
    margin-bottom: 20px;
    font-weight: 600;
}

.details-card p {
    color: #2c2c2c;
    line-height: 1.7;
    margin-bottom: 20px;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.detail-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 500;
}

.detail-list i {
    color: #b9413a;
    font-size: 1.1rem;
}

.service-note {
    background: rgba(255, 255, 255, 0.45);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(185, 65, 58, 0.2);
}

.service-note strong {
    display: block;
    color: #b9413a;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.service-note p {
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    margin-bottom: 60px;
    padding: 40px 0;
}

.pricing-section h3 {
    font-size: 2rem;
    color: #b9413a;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-item {
    background: #dad2b0;
    border-radius: 15px;
    border: 1px solid rgba(185, 65, 58, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    gap: 20px;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(185, 65, 58, 0.2);
}

.pricing-details {
    flex: 1;
}

.pricing-item h4 {
    font-size: 1.3rem;
    color: #b9413a;
    margin-bottom: 8px;
    font-weight: 600;
}

.pricing-item .description {
    color: #2c2c2c;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.price {
    font-size: 1.7rem;
    color: #b9413a;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    min-width: 140px;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .simple-hero h1 {
        font-size: 2.5rem;
    }

    .intro-section h2 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1.05rem;
    }

    .details-section {
        grid-template-columns: 1fr;
    }

    .details-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .simple-hero h1 {
        font-size: 2rem;
    }
    
    .simple-hero {
        padding: 40px 15px;
    }

    .consultation-content {
        padding: 30px 0 10px;
    }

    .intro-section h2 {
        font-size: 1.8rem;
    }

    .info-card,
    .details-card {
        padding: 25px 20px;
    }

    /* Justify all content text on mobile */
    p, .content p, .intro-text, .info-text, .description {
        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;
    }
    
    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .price {
        text-align: left;
    }
}
