/* 
   SPOXTALE POIE - 'Apply Now' Dedicated Page Custom Stylesheet
   Designed to work harmoniously with style.css, course.css, and purpose.css.
   Contains custom grid structures for the split application form and counsellor sidebar widgets.
*/

/* Reset top padding to match admission requirements page layout */
.btec-page {
    padding-top: 0 !important;
}

/* Centered hero container matching other pages */
.btec-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    padding: 10px 0 30px 0;
    margin-bottom: 0 !important;
}

.btec-hero .breadcrumbs {
    margin-bottom: 12px;
}

.btec-hero-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

/* Split content grid */
.apply-now-section {
    padding: 30px 0 80px 0;
    background-color: #ffffff;
}

.apply-now-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
}

/* Left Form Box */
.apply-form-card {
    background: #ffffff;
    border: 1px solid #e8ebf0;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(21, 28, 45, 0.04);
}

.apply-form-card h3 {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 12px;
}

.apply-form-card .form-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--light-slate);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Sidebar Widgets */
.sidebar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: #ffffff;
    border: 1px solid #e8ebf0;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(21, 28, 45, 0.04);
    position: relative;
    overflow: hidden;
}

.sidebar-card h4 {
    font-family: var(--font-headings);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card h4 i {
    font-size: 1.1rem;
}

.sidebar-card .widget-desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--light-slate);
    line-height: 1.5;
    margin-bottom: 24px;
}

/* Contacts Info List */
.contact-info-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--light-slate);
}

.contact-info-list li i {
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-info-list li a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-info-list li a:hover {
    color: var(--primary-blue);
}

/* Button systems */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(21, 28, 45, 0.05);
}

/* WhatsApp branded button */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    filter: brightness(1.05);
}

/* Primary Teal / Pink button for downloads */
.btn-download-primary {
    background: linear-gradient(135deg, #ec3b83 0%, #a82062 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(236, 59, 131, 0.2);
}

.btn-download-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 59, 131, 0.3);
}

.btn-download-secondary {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--light-slate) !important;
}

.btn-download-secondary:hover {
    transform: translateY(-2px);
    background: #f8fafc;
    color: var(--dark-navy) !important;
}

.btn-wrapper-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .btec-hero {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 15px 0 30px 0;
    }

    .btec-hero-image {
        height: 240px;
    }

    .apply-now-section {
        padding: 30px 0 60px 0;
    }

    .apply-now-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .apply-form-card {
        padding: 24px;
    }
}