/* =========================================
   VARIABLES & GLOBAL
   ========================================= */
:root {
    --primary-orange: #ff7b47;
    --primary-dark: #e66a3a;
    --secondary-blue: #2c3e50;
    --text-dark: #1a1a1a;
    --text-grey: #555;
    --bg-light: #f8f9fc;
    --success-green: #27ae60;
    --yellow-alert: #ffeb3b;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background: var(--bg-light); color: var(--text-dark); overflow-x: hidden; }

/* --- Navbar & Mobile Menu --- */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; background: #fff; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.logo { font-size: 24px; font-weight: 700; } .logo span { color: var(--primary-orange); }
.nav-links a { text-decoration: none; color: #333; margin: 0 15px; font-weight: 500; font-size: 15px; }

.auth-buttons { display: flex; align-items: center; gap: 20px; }
.login-text { text-decoration: none; color: var(--text-dark); font-weight: 600; }
.signup-btn { background: var(--primary-orange); color: #fff; padding: 10px 25px; border-radius: 5px; text-decoration: none; font-weight: 600; transition: background 0.3s; }
.hamburger, .mobile-menu, .mobile-menu-overlay { display: none; }

/* --- HERO SECTION --- */
.bundle-hero { padding: 60px 5%; display: flex; align-items: center; justify-content: center; background: radial-gradient(#e0e0e0 1px, transparent 1px); background-size: 25px 25px; position: relative; }
.container { max-width: 1200px; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 40px; }

.hero-content { flex: 1; max-width: 600px; }
.silver-badge { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; padding: 6px 15px; border-radius: 20px; font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 20px; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }

.hero-content h1 { font-size: 46px; line-height: 1.1; margin-bottom: 20px; color: #222; }
.highlight-draw { color: var(--primary-orange); position: relative; }
.hero-sub { font-size: 16px; color: var(--text-grey); margin-bottom: 25px; line-height: 1.6; }

.hero-features { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 25px; }
.hero-features span { font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.hero-features i { color: var(--success-green); }

.price-block-hero { font-size: 32px; font-weight: 800; margin-bottom: 25px; display: flex; align-items: center; gap: 12px; }
.slashed { font-size: 20px; color: #999; text-decoration: line-through; font-weight: 400; }
.discount-tag { font-size: 12px; background: #222; color: #fff; padding: 4px 8px; border-radius: 4px; font-weight: 700; }

.cta-btn-primary { background: var(--primary-orange); color: #fff; padding: 16px 35px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 18px; display: inline-block; transition: 0.3s; box-shadow: 0 4px 15px rgba(255,123,71,0.4); margin-bottom: 20px; }
.cta-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255,123,71,0.5); }

.trust-micro { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #666; }
.t-img { width: 35px; height: 35px; border-radius: 50%; border: 2px solid #fff; object-fit: cover; }

.hero-image { position: relative; width: 100%; max-width: 480px; }
.video-placeholder { position: relative; border-radius: 15px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.video-placeholder img { width: 100%; display: block; }
.play-btn-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--primary-orange); cursor: pointer; animation: ripple 2s infinite; }
@keyframes ripple { 0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); } 70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); } }

.floating-badge { position: absolute; bottom: 30px; left: -30px; background: #fff; padding: 15px 20px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); border-left: 5px solid var(--success-green); }
.floating-badge span { font-size: 12px; display: block; color: #888; }
.floating-badge strong { font-size: 16px; color: var(--text-dark); }

/* --- TRUST BAR --- */
.trust-bar { background: #fff; padding: 30px 5%; text-align: center; border-bottom: 1px solid #eee; }
.trust-bar p { font-size: 14px; color: #888; margin-bottom: 15px; }
.logos-grid { display: flex; justify-content: center; gap: 30px; font-size: 35px; color: #ccc; flex-wrap: wrap; }
.logos-grid i:hover { color: var(--primary-orange); transform: scale(1.1); transition: 0.3s; }

/* --- NEW PLACEMENT SECTION --- */
.placement-section { padding: 80px 5%; background: #fff; }
.container-column { max-width: 900px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 32px; font-weight: 800; margin-bottom: 10px; }
.highlight-underline { border-bottom: 4px solid var(--primary-orange); }

.placement-steps { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.p-step-card { 
    flex: 1; min-width: 250px; background: #f8f9fc; padding: 30px 20px; 
    border-radius: 15px; text-align: center; position: relative; border: 1px solid #eee;
}
.step-num { 
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%); 
    background: #222; color: #fff; width: 40px; height: 40px; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; border: 3px solid #fff;
}
.p-icon { font-size: 36px; color: var(--primary-orange); margin-top: 10px; margin-bottom: 20px; }
.p-step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.p-step-card p { font-size: 14px; color: #666; line-height: 1.5; }

/* Highlight the interview step */
.highlight-step { background: #fff4e5; border-color: #ffe0b2; transform: scale(1.05); z-index: 2; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

/* --- PROJECTS SECTION --- */
.projects-section { padding: 80px 5%; background: #222; color: #fff; }
.projects-section .section-header h2 { color: #fff; }
.projects-section .section-header p { color: #bbb; }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

.project-card { background: #333; border-radius: 15px; overflow: hidden; transition: transform 0.3s; }
.project-card:hover { transform: translateY(-5px); }
.p-img-box { position: relative; height: 180px; overflow: hidden; }
.p-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.project-card:hover .p-img-box img { transform: scale(1.1); }
.tech-stack { position: absolute; bottom: 10px; left: 10px; display: flex; gap: 5px; }
.tech-stack span { background: rgba(0,0,0,0.7); color: #fff; padding: 3px 8px; border-radius: 4px; font-size: 10px; text-transform: uppercase; font-weight: 600; backdrop-filter: blur(4px); }
.p-info { padding: 20px; }
.p-info h3 { font-size: 18px; margin-bottom: 8px; color: #fff; }
.p-info p { font-size: 13px; color: #bbb; line-height: 1.5; }

/* --- ACCORDION & REVIEWS --- */
.accordion-container { display: flex; flex-direction: column; gap: 10px; }
.accordion-item { border: 1px solid #e0e0e0; border-radius: 8px; background: #fff; }
.active-highlight { border: 2px solid var(--primary-orange); } /* Highlight the Career module */
.accordion-header { padding: 18px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.header-left { display: flex; align-items: center; gap: 15px; }
.icon-box { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: #fff; flex-shrink: 0; }
.icon-html { background: #e34c26; } .icon-js { background: #f7df1e; color: #333; } .icon-php { background: #777bb3; } .icon-wp { background: #21759b; } 
.icon-career { background: var(--success-green); }

.accordion-content { max-height: 0; overflow: hidden; transition: 0.3s; background: #f9f9f9; }
.content-wrapper { padding: 20px; }
.module { background: #fff; padding: 10px; border: 1px solid #eee; margin-bottom: 5px; border-radius: 5px; font-size: 14px; }

/* Reviews */
.reviews-section { padding: 80px 5%; background: #fdfdfd; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review-card { padding: 25px; background: #fff; border: 1px solid #eee; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.r-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.r-header img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.r-header h4 { font-size: 16px; font-weight: 700; color: #333; }
.r-header span { font-size: 12px; color: var(--success-green); font-weight: 600; display: block; }
.review-card p { font-size: 14px; color: #555; line-height: 1.6; }

/* --- FAQ --- */
.faq-section { background: #fff; padding: 60px 5%; }
.faq-item { border: 1px solid #eee; border-radius: 8px; margin-bottom: 10px; }
.faq-question { padding: 15px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; }
.faq-answer { max-height: 0; overflow: hidden; transition: 0.3s; padding: 0 15px; }
.faq-answer p { padding-bottom: 15px; color: #666; font-size: 14px; }

/* --- FOMO STICKY FOOTER --- */
.sticky-footer-wrapper {
    position: fixed; bottom: 0; left: 0; width: 100%; z-index: 2000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.fomo-timer-bar {
    background: #d32f2f; color: #fff; text-align: center; padding: 5px 0;
    font-size: 12px; font-weight: 600;
}

.sticky-action-bar {
    background: #fff; padding: 10px 20px; display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid #eee; max-width: 100%; margin: 0 auto;
}

.price-stack { display: flex; flex-direction: column; }
.old-price { font-size: 12px; text-decoration: line-through; color: #888; }
.final-price { font-size: 20px; font-weight: 800; color: var(--text-dark); line-height: 1.1; }

.sticky-cta-btn {
    background: var(--primary-orange); color: #fff; padding: 10px 25px; border-radius: 5px;
    text-decoration: none; font-weight: 700; font-size: 16px;
    display: flex; align-items: center; gap: 8px;
    animation: bounce 2s infinite;
}

@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-5px);} 60% {transform: translateY(-3px);} }

/* --- MOBILE RESPONSIVE --- */
@media(max-width: 768px) {
    .navbar { padding: 15px 20px; }
    .nav-links, .auth-buttons { display: none; }
    .hamburger { display: block; font-size: 24px; }
    
    /* Hero Adjustments */
    .bundle-hero { padding: 40px 5%; flex-direction: column; text-align: center; }
    .container { flex-direction: column; }
    .hero-content h1 { font-size: 32px; }
    .hero-features { justify-content: center; }
    .price-block-hero { justify-content: center; }
    .hero-image { width: 100%; margin-top: 20px; }
    .floating-badge { display: none; }
    .trust-micro { justify-content: center; }
    
    /* Placement Steps Mobile */
    .placement-steps { flex-direction: column; gap: 30px; }
    .highlight-step { transform: none; }
    
    .projects-grid, .reviews-grid { grid-template-columns: 1fr; }
    
    /* Sticky Footer */
    .sticky-action-bar { padding: 10px 15px; }
    .sticky-cta-btn { font-size: 14px; padding: 10px 15px; }
}

/* --- Mobile Menu --- */
.mobile-menu { display: none; flex-direction: column; position: fixed; top: 0; right: -280px; width: 280px; height: 100dvh; background: #fff; z-index: 99999; transition: right 0.3s; padding: 20px; overflow-y: auto; padding-bottom: 80px; }
.mobile-menu.active { display: flex; right: 0; }
.mobile-menu-overlay { display: none; }
.mobile-menu-overlay.active { display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 99998; }
.menu-header { display: flex; justify-content: space-between; margin-bottom: 20px; }
.mobile-nav-links a { display: block; padding: 15px 0; border-bottom: 1px solid #f0f0f0; text-decoration: none; color: #333; }
.mobile-login-btn { display: block; width: 100%; text-align: center; border: 1px solid #333; color: #333; padding: 10px; border-radius: 5px; text-decoration: none; margin-top: 20px; }
.mobile-enroll-btn { display: block; width: 100%; text-align: center; background: var(--primary-orange); color: #fff; padding: 10px; border-radius: 5px; text-decoration: none; font-weight: 600; margin-top: 10px; }



/* =========================================
   NEW SECTIONS (Advantage & Comparison)
   ========================================= */

/* --- ADVANTAGE SECTION --- */
.advantage-section { padding: 80px 5%; background: #fff; }
.advantage-grid { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 30px; }

.adv-card { 
    flex: 1; min-width: 250px; padding: 30px; 
    border: 1px solid #eee; border-radius: 15px; 
    text-align: center; transition: 0.3s; background: #fdfdfd; 
}

.adv-icon { font-size: 40px; color: var(--primary-orange); margin-bottom: 20px; }
.adv-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.adv-card p { font-size: 14px; color: var(--text-grey); line-height: 1.5; margin-bottom: 15px; }

/* Highlight the main USP card */
.highlight-adv { 
    background: #fff3e0; /* Light Orange */
    border-color: #ffe0b2; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    transform: scale(1.05); 
    z-index: 2; 
}

/* --- COMPARISON TABLE --- */
.comparison-section { padding: 80px 5%; background: #f8f9fc; }
.table-responsive { overflow-x: auto; margin-top: 30px; }

.compare-table { 
    width: 100%; border-collapse: collapse; 
    background: #fff; border-radius: 10px; 
    overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
}

.compare-table th { 
    padding: 20px; text-align: left; font-size: 16px; 
    font-weight: 700; border-bottom: 2px solid #eee; 
    background: #fff; color: var(--text-dark);
}

.compare-table td { 
    padding: 15px 20px; border-bottom: 1px solid #eee; 
    font-size: 15px; color: #555; 
}

/* Specific Column Styles */
.compare-table .competitor-col { background: #f5f5f5; color: #777; }
.compare-table .us-col { 
    background: #e0f2f1; /* Light Green/Teal to signify success */
    color: #00695c; 
    border-bottom: 3px solid #26a69a; 
}

.compare-table td:nth-child(3) { 
    font-weight: 600; color: #1a1a1a; background: #e0f2f1;
}

.compare-table i { color: #27ae60; margin-right: 5px; }

/* --- MOBILE RESPONSIVE ADJUSTMENTS --- */
@media(max-width: 768px) {
    .advantage-grid { flex-direction: column; gap: 30px; }
    .highlight-adv { transform: none; }
    
    .compare-table th, .compare-table td { 
        padding: 12px; font-size: 13px; 
    }
    .compare-table i { font-size: 12px; }
}