/* First Batch Landing Page Styles */

.first-batch-page {
    background-color: #FFF9E6;
    color: #2C2C2C;
}

/* Countdown Banner */
.countdown-banner {
    background: #ffad22;
    color: var(--black);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.countdown-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-text {
    font-weight: 700;
    font-size: 1.1rem;
}

.countdown-timer {
    display: flex;
    gap: 1rem;
}

.time-unit {
    text-align: center;
    background-color: rgba(0,0,0,0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    min-width: 60px;
}

.time-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.time-label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Hero Section */
.first-batch-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0000;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffad22 100%);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(247, 164, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2C2C2C 0%, #8B4513 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #5D4E37;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.urgency-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(247, 164, 0, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--primary-yellow);
}

.urgency-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-yellow);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.urgency-text {
    text-align: left;
}

.urgency-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
    line-height: 1;
}

.urgency-label {
    font-size: 0.9rem;
    color: #8B7355;
}

.hero-cta {
    margin-bottom: 3rem;
}

.btn-hero {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(247, 164, 0, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(247, 164, 0, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 8px 30px rgba(247, 164, 0, 0.4); }
    50% { box-shadow: 0 8px 30px rgba(247, 164, 0, 0.8); }
    100% { box-shadow: 0 8px 30px rgba(247, 164, 0, 0.4); }
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--off-white);
    font-size: 0.9rem;
}

.social-proof {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-yellow);
    line-height: 1;
}

.proof-text {
    font-size: 0.9rem;
    color: #8B7355;
}

/* Exclusive Benefits */
.exclusive-benefits {
    padding: 50px 0;
    background-color: #f8f9fa;  /* Light background color */
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;  /* Soft rounded corners */
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);  /* Subtle shadow */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);  /* Stronger shadow on hover */
}

.benefit-icon {
    background-color: #e7f4f9;  /* Light blue background */
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: inline-block;
}

.benefit-icon i {
    font-size: 36px;
    color: #000000;  /* Black color for icons */
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.exclusive-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff5722;  /* Orange color for exclusivity tag */
    color: white;
    padding: 5px 10px;
    font-size: 0.9rem;
    border-radius: 5px;
}

.exclusive .exclusive-tag {
    background-color: #ff5722;  /* Orange color for exclusive */
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}




/* Exclusive Benefits */
.exclusive-benefits {
    padding: 50px 0;
    background-color: #FFFFFF;  /* Light pastel yellow background */
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.benefit-card {
    background-color: #ffad22;
    padding: 30px;
    border-radius: 15px;  /* Soft rounded corners */
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);  /* Subtle shadow */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);  /* Stronger shadow on hover */
}

.benefit-icon {
    background-color: #e7f4f9;  /* Light blue background */
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: inline-block;
}

.benefit-icon i {
    font-size: 36px;
    color: #000000;  /* Black color for icons */
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

p {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 20px;
}

.exclusive-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff5722;  /* Orange color for exclusivity tag */
    color: white;
    padding: 5px 10px;
    font-size: 0.9rem;
    border-radius: 5px;
}

.exclusive .exclusive-tag {
    background-color: #ff5722;  /* Orange color for exclusive */
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}





/* Founder's Message */
.founders-message {
    padding: 100px 0;
    background-color: var(--off-white);
    color: var(--black);
}

.message-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
}

.founder-image {
    position: relative;
}

.founder-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.founder-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffad22 100%);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.message-text blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin: 2rem 0;
    color: var(--deep-charcoal);
}

.founder-signature {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-yellow);
}

/* Course Curriculum */
.course-curriculum {
    padding: 100px 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
    color: #ffff;
}

.curriculum-header {
    text-align: center;
    margin-bottom: 4rem;
}

.curriculum-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.curriculum-card {
    background: linear-gradient(135deg, #F7A400 0%, #FFB84D 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(247, 164, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.curriculum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(247, 164, 0, 0.3);
}

.curriculum-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    text-align: center;
}

.curriculum-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.curriculum-card li {
    color: #000000;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
}

.curriculum-card li:before {
    content: "•";
    color: #000000;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.curriculum-card li:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for curriculum */
@media (max-width: 768px) {
    .curriculum-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .curriculum-card {
        padding: 1.5rem;
    }
    
    .curriculum-header h2 {
        font-size: 2rem;
    }
}

/* Seats Tracker */
.seats-tracker {
    padding: 80px 0;
    background-color: #FFFAF0;
    text-align: center;
    color: #2C2C2C;
}

.seats-visual {
    max-width: 600px;
    margin: 3rem auto;
}

.seats-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 8px;
    margin-bottom: 2rem;
}

.seat {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.seat.taken {
    background-color: #FF6B6B;
    color: var(--white);
}

.seat.available {
    background-color: var(--primary-yellow);
    color: var(--black);
    cursor: pointer;
}

.seat.available:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(247, 164, 0, 0.5);
}

.seats-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seat-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.seat-icon.taken {
    background-color: #FF6B6B;
}

.seat-icon.available {
    background-color: var(--primary-yellow);
}

.urgency-message {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid #FF6B6B;
    padding: 1rem 2rem;
    border-radius: 12px;
    color: #FF6B6B;
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto;
}

/* Application Form */
.first-batch-application {
    padding: 40px 0;
    background: linear-gradient(135deg, #FFF8DC 0%, #FFFACD 100%);
}

/* Privyr Form Integration Styles */
.privyr-form-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(247, 164, 0, 0.3);
    margin-bottom: 0;
}

.privyr-form-container iframe {
    width: 100%;
    min-height: 800px;
    border-radius: 15px;
    background: white;
    margin: 1rem 0;
}

/* Privyr embed container */
#privyr-form-ltXxDkI4 {
    min-height: 600px;
    width: 100%;
    background: white;
    border-radius: 15px;
    padding: 1rem;
    margin: 1rem 0;
}

/* Fallback button styling */
.privyr-fallback {
    background: rgba(247, 164, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px dashed rgba(247, 164, 0, 0.3);
    margin: 2rem 0;
}

.privyr-fallback a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 164, 0, 0.4);
    transition: all 0.3s ease;
}

/* Student Success Section */
.student-success-section {
    margin-top: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.student-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.student-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.student-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem;
    color: white;
}

.success-message h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.success-message p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    color: #ffffff;
}

/* Responsive adjustments for Privyr form */
@media (max-width: 768px) {
    .privyr-form-container {
        padding: 1rem;
    }
    
    .privyr-form-container iframe {
        min-height: 600px;
    }
    
    .application-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .student-image-container {
        height: 300px;
    }
    
    .student-overlay {
        padding: 1.5rem;
    }
    
    .success-message h4 {
        font-size: 1.3rem;
    }
    
    .success-message p {
        font-size: 0.9rem;
    }
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 107, 0.2);
    color: #FF6B6B;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
}

.application-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.first-batch-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(247, 164, 0, 0.3);
    color: #2C2C2C;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(247, 164, 0, 0.2);
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.form-agreements {
    background: rgba(247, 164, 0, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.form-submit {
    text-align: center;
}

.submit-note {
    margin-top: 1rem;
    color: #8B7355;
    font-size: 0.9rem;
}

/* Application Sidebar */
.application-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(247, 164, 0, 0.3);
    color: #2C2C2C;
}

.sidebar-card.urgency {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 142, 83, 0.1) 100%);
    border-color: #FF6B6B;
}

.process-steps {
    margin-top: 1.5rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
}

.step-number {
    width: 30px;
    height: 30px;
    background-color: var(--primary-yellow);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-text {
    flex: 1;
}

.step-text strong {
    display: block;
    color: #2C2C2C;
}

.step-text span {
    color: #8B7355;
    font-size: 0.9rem;
}

.offer-details {
    margin: 1.5rem 0;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #2C2C2C;
}

.offer-item i {
    color: var(--primary-yellow);
}

.offer-expiry {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 107, 107, 0.2);
    border-radius: 8px;
    color: #FF6B6B;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #FFF8DC 100%);
    text-align: center;
    color: #000000;
}

.final-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-yellow);
    line-height: 1;
}

.stat-text {
    font-size: 1.1rem;
    color: #ffffff;
}

.final-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Sticky Apply Button */
.sticky-apply {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffad22 100%);
    color: var(--black);
    padding: 1rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-apply.show {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-text {
    display: flex;
    flex-direction: column;
}

.sticky-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.sticky-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .countdown-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .time-unit {
        padding: 0.25rem 0.5rem;
        min-width: 50px;
    }
    
    .time-value {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .urgency-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .urgency-item {
        justify-content: center;
    }
    
    .message-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .application-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .final-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .sticky-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .seats-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .seat {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .first-batch-form {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-hero {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}
