/* BestClassTaker - Component Styles */

/* Benefit Cards */
.benefit-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #2563eb;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.benefit-description {
    color: #6b7280;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Expert Cards */
.expert-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.expert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.expert-name {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.expert-credentials {
    font-size: 0.9rem;
    color: #2563eb;
    margin-bottom: 1rem;
    font-weight: 500;
}

.expert-specialization {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.expert-achievements {
    font-size: 0.9rem;
    color: #10b981;
    margin-bottom: 1rem;
    font-weight: 500;
}

.expert-quote {
    font-style: italic;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
    border-left: 3px solid #f59e0b;
    padding-left: 1rem;
}

.expert-availability {
    font-size: 0.85rem;
    color: #9ca3af;
}

/* Pricing Tiers */
.pricing-tier {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.pricing-tier:hover {
    border-color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.pricing-tier.featured {
    border-color: #2563eb;
    transform: scale(1.05);
}

.tier-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.tier-price {
    font-size: 2rem;
    color: #2563eb;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.tier-price-period {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.tier-description {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.tier-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.tier-features li {
    padding: 0.5rem 0;
    color: #6b7280;
    font-size: 0.95rem;
    border-bottom: 1px solid #f3f4f6;
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features li:before {
    content: "✓ ";
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

.tier-target {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 1rem;
    font-style: italic;
}

.tier-value {
    font-size: 0.9rem;
    color: #2563eb;
    font-weight: 600;
}

/* FAQ Items */
.faq-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #2563eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: "▼";
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question:after {
    transform: rotate(180deg);
}

.faq-answer {
    color: #6b7280;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Testimonial Cards */
.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #f59e0b;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
    font-style: italic;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.testimonial-text:before {
    content: '"';
    font-size: 2rem;
    color: #f59e0b;
    margin-right: 0.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.testimonial-details {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.testimonial-grade {
    display: inline-block;
    background-color: #dbeafe;
    color: #1e40af;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Platform Cards */
.platform-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    border-left: 4px solid #2563eb;
}

.platform-item h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.platform-item p {
    color: #6b7280;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.platform-item strong {
    color: #1f2937;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
}

.cta-main {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.cta-urgency {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    line-height: 1.8;
}

.cta-final {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.text-primary { color: #2563eb; }
.text-secondary { color: #1e40af; }
.text-success { color: #10b981; }
.text-danger { color: #ef4444; }
.text-light { color: #6b7280; }

.bg-light { background-color: #f9fafb; }
.bg-white { background-color: #ffffff; }

.rounded { border-radius: 8px; }
.rounded-lg { border-radius: 12px; }
.rounded-full { border-radius: 9999px; }

.shadow { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); }

/* Print Styles */
@media print {
    .site-header {
        display: none;
    }

    .site-footer {
        display: none;
    }

    .btn {
        display: none;
    }
}
