/* Destination Pages Alignment and Styling */

/* Section Alignment */
.quick-facts, .latest-updates, .scholarships-section, .cost-section, .top-courses, .top-universities, .faqs-section {
    padding: 4rem 0;
}

.quick-facts .container, .latest-updates .container, .scholarships-section .container, .cost-section .container, .top-courses .container, .top-universities .container, .faqs-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.quick-facts h2, .latest-updates h2, .scholarships-section h2, .cost-section h2, .top-courses h2, .top-universities h2, .faqs-section h2 {
    text-align: center;
    color: #1e3c72;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Alternating Section Backgrounds */
.quick-facts {
    background: white;
}

.latest-updates {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.scholarships-section {
    background: white;
}

.cost-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.top-courses {
    background: white;
}

.top-universities {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faqs-section {
    background: white;
}

/* Pricing Protection */
.pricing-locked {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.pricing-locked i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.pricing-locked h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.pricing-locked p {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

.login-btn {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1e3c72;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: linear-gradient(135deg, #f4d03f, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Facts Grid */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.fact-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 5px solid #d4af37;
    transition: all 0.3s ease;
}

.fact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.fact-item h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.fact-item p {
    color: #666;
    line-height: 1.6;
}

/* Updates Grid */
.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.update-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #d4af37;
}

.update-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.update-date {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.update-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.update-card p {
    color: #666;
    line-height: 1.6;
}

/* Scholarships and Cost Grids */
.scholarships-grid, .cost-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.scholarship-card, .cost-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.scholarship-card:hover, .cost-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.scholarship-card h3, .cost-card h3 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d4af37;
}

.scholarship-card ul, .cost-card ul {
    list-style: none;
    padding: 0;
}

.scholarship-card li, .cost-card li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
}

.scholarship-card li:last-child, .cost-card li:last-child {
    border-bottom: none;
}

.scholarship-card strong, .cost-card strong {
    color: #1e3c72;
    font-weight: 600;
}

/* Inline Price Lock */
.price-locked {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    display: inline-block;
}

.price-locked i {
    margin-right: 4px;
    color: #d4af37;
}

.price-locked a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
}

.price-locked a:hover {
    color: #f4d03f;
}

/* FAQ Styling */
.faq-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.faq-question {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #2a5298, #1e3c72);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 2rem;
    background: white;
    border-top: 1px solid #e9ecef;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    margin: 0;
    color: #333;
    line-height: 1.7;
    font-size: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .spotlight-grid, .facts-grid, .updates-grid, .scholarships-grid, .cost-breakdown {
        grid-template-columns: 1fr;
    }
    
    .quick-facts h2, .latest-updates h2, .scholarships-section h2, .cost-section h2, .top-courses h2, .top-universities h2, .faqs-section h2 {
        font-size: 2rem;
    }
    
    .pricing-locked {
        padding: 2rem 1rem;
    }
    
    .fact-item, .update-card, .scholarship-card, .cost-card {
        padding: 1.5rem;
    }
}