/* ==========================================================================
   PAGES.CSS - Page-specific styles for all inner pages
   Infinite Option Frontend
   ========================================================================== */


/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.about-section { padding: 80px 20px; background: var(--white); }
.about-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--primary); color: var(--white); padding: 20px 30px; border-radius: 12px; text-align: center; }
.about-badge-number { font-size: 36px; font-weight: 700; display: block; }
.about-badge-text { font-size: 12px; text-transform: uppercase; }
.about-content h2 { font-size: 36px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.about-content h2 span { color: var(--primary); }
.about-content p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 25px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-feature { display: flex; align-items: flex-start; gap: 15px; padding: 20px; background: var(--bg); border-radius: 12px; }
.about-feature-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), #7c6fef); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 20px; flex-shrink: 0; }
.about-feature h4 { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 5px; }
.about-feature p { font-size: 13px; color: var(--text-light); margin: 0; }

/* Timeline */
.timeline-section { padding: 80px 20px; background: var(--bg); }
.timeline-container { max-width: 1000px; margin: 0 auto; }
.timeline { position: relative; padding: 20px 0; }
.timeline::before { content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 3px; height: 100%; background: linear-gradient(to bottom, var(--primary), #7c6fef); }
.timeline-item { display: flex; justify-content: flex-end; padding-right: 50%; position: relative; margin-bottom: 40px; }
.timeline-item:nth-child(even) { justify-content: flex-start; padding-right: 0; padding-left: 50%; }
.timeline-content { background: var(--white); padding: 25px 30px; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); max-width: 400px; margin-right: 30px; }
.timeline-item:nth-child(even) .timeline-content { margin-right: 0; margin-left: 30px; }
.timeline-dot { position: absolute; right: calc(50% - 10px); width: 20px; height: 20px; background: var(--primary); border-radius: 50%; border: 4px solid var(--white); }
.timeline-item:nth-child(even) .timeline-dot { right: auto; left: calc(50% - 10px); }
.timeline-year { font-size: 14px; font-weight: 600; color: var(--primary); margin-bottom: 10px; }
.timeline-content h3 { font-size: 18px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.timeline-content p { font-size: 14px; color: var(--text-light); }

/* Timeline Highlight */
.timeline-item.highlight .timeline-dot { width: 26px; height: 26px; background: linear-gradient(135deg, var(--primary), #7c6fef); border: 4px solid #e8e4ff; box-shadow: 0 0 0 4px rgba(108,92,231,.25); right: calc(50% - 13px); }
.timeline-item.highlight:nth-child(even) .timeline-dot { right: auto; left: calc(50% - 13px); }
.timeline-item.highlight .timeline-content { background: linear-gradient(135deg, var(--primary), #7c6fef); border: none; box-shadow: 0 15px 40px rgba(108,92,231,.3); }
.timeline-item.highlight .timeline-year { color: rgba(255,255,255,.8); }
.timeline-item.highlight .timeline-content h3 { color: var(--white); }
.timeline-item.highlight .timeline-content p { color: rgba(255,255,255,.85); }
.timeline-item.highlight .timeline-content .mission-tag { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; padding: 6px 14px; background: rgba(255,255,255,.2); border-radius: 50px; font-size: 12px; font-weight: 600; color: var(--white); }

/* Values */
.values-section { padding: 80px 20px; background: linear-gradient(135deg, #1a1a2e, #16213e); }
.values-container { max-width: 1200px; margin: 0 auto; }
.values-title { font-size: 36px; font-weight: 700; color: var(--white); text-align: center; margin-bottom: 50px; }
.values-title span { color: var(--primary); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 30px; text-align: center; transition: all .3s ease; }
.value-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.value-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary), #7c6fef); border-radius: 16px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--white); }
.value-card h4 { font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.value-card p { font-size: 13px; color: rgba(255,255,255,0.7); }

/* About Responsive */
@media (max-width: 1024px) {
    .about-container { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .about-features, .values-grid { grid-template-columns: 1fr; }
    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(even) { justify-content: flex-start; padding-left: 60px; padding-right: 0; }
    .timeline-content, .timeline-item:nth-child(even) .timeline-content { margin-left: 0; margin-right: 0; }
    .timeline-dot, .timeline-item:nth-child(even) .timeline-dot { left: 10px; right: auto; }
    .timeline-item.highlight .timeline-dot, .timeline-item.highlight:nth-child(even) .timeline-dot { left: 7px; right: auto; }
}


/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */

.services-section { padding: 80px 20px; background: var(--white); }
.services-container { max-width: 1200px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: var(--bg); border-radius: 16px; padding: 35px; transition: all .3s ease; border: 1px solid transparent; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,.1); border-color: var(--primary); }
.service-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary), #7c6fef); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--white); margin-bottom: 20px; }
.service-card h3 { font-size: 20px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.service-features { list-style: none; margin-bottom: 25px; }
.service-features li { font-size: 13px; color: var(--text); padding: 8px 0; display: flex; align-items: center; gap: 10px; }
.service-features li i { color: var(--primary); }
.service-btn { display: block; text-align: center; padding: 12px 20px; background: var(--primary); color: var(--white); border-radius: 8px; font-weight: 500; transition: all .3s ease; }
.service-btn:hover { background: var(--dark); }

/* Process Section (shared by services & career) */
.process-section { padding: 80px 20px; background: linear-gradient(135deg, #1a1a2e, #16213e); }
.process-container { max-width: 1000px; margin: 0 auto; text-align: center; }
.process-title { font-size: 36px; font-weight: 700; color: var(--white); margin-bottom: 50px; }
.process-title span { color: var(--primary); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.process-step { text-align: center; }
.step-number { width: 60px; height: 60px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; color: var(--white); margin: 0 auto 20px; }
.process-step h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.process-step p { font-size: 13px; color: rgba(255,255,255,.7); }

/* Services Responsive */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .services-grid, .process-steps { grid-template-columns: 1fr; }
}


/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-section { padding: 80px 20px; background: var(--white); }
.contact-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info { background: linear-gradient(135deg, var(--primary), #7c6fef); border-radius: 20px; padding: 40px; color: var(--white); }
.contact-info h3 { font-size: 24px; font-weight: 600; margin-bottom: 10px; }
.contact-info > p { font-size: 14px; color: rgba(255,255,255,.8); margin-bottom: 35px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; }
.contact-info-icon { width: 45px; height: 45px; background: rgba(255,255,255,.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-info-text h4 { font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.contact-info-text p { font-size: 13px; color: rgba(255,255,255,.8); }
.contact-social { margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.2); }
.contact-social h4 { font-size: 14px; font-weight: 600; margin-bottom: 15px; }
.contact-social-links { display: flex; gap: 12px; }
.contact-social-links a { width: 40px; height: 40px; background: rgba(255,255,255,.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--white); transition: all .3s ease; }
.contact-social-links a:hover { background: var(--white); color: var(--primary); }
.contact-form { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: 0 20px 50px rgba(0,0,0,.08); }
.contact-form h3 { font-size: 24px; font-weight: 600; color: var(--dark); margin-bottom: 25px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--dark); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 18px; border: 2px solid var(--bg); border-radius: 10px; font-size: 14px; font-family: inherit; transition: all .3s ease; background: var(--bg); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); background: var(--white); }
.form-group textarea { min-height: 120px; resize: vertical; }
.submit-btn { width: 100%; padding: 16px; background: linear-gradient(135deg, var(--primary), #7c6fef); color: var(--white); border: none; border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all .3s ease; display: flex; align-items: center; justify-content: center; gap: 10px; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(108,92,231,.4); }
.form-message { padding: 15px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; }
.form-message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-message.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Quick Contact */
.quick-contact { padding: 60px 20px; background: var(--bg); }
.quick-contact-container { max-width: 1000px; margin: 0 auto; }
.quick-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.quick-card { background: var(--white); border-radius: 16px; padding: 30px; text-align: center; transition: all .3s ease; border: 2px solid transparent; }
.quick-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.quick-card-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary), #7c6fef); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--white); margin: 0 auto 15px; }
.quick-card h4 { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.quick-card p { font-size: 13px; color: var(--text-light); margin-bottom: 15px; }
.quick-card a { font-size: 14px; font-weight: 500; color: var(--primary); }

/* Map */
.map-section { padding: 0 20px 80px; background: var(--bg); }
.map-container { max-width: 1200px; margin: 0 auto; }
.map-wrapper { border-radius: 16px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,.1); }
.map-wrapper iframe { width: 100%; height: 400px; border: none; }

/* Contact Responsive */
@media (max-width: 1024px) {
    .contact-container { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .quick-contact-grid { grid-template-columns: 1fr; }
    .contact-info, .contact-form { padding: 30px; }
}


/* ==========================================================================
   FAQS PAGE
   ========================================================================== */

.faq-section { padding: 80px 20px; background: var(--white); }
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-categories { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.faq-category { padding: 10px 20px; background: var(--bg); border: none; border-radius: 25px; font-size: 14px; font-weight: 500; color: var(--text); cursor: pointer; transition: all .3s ease; }
.faq-category:hover, .faq-category.active { background: var(--primary); color: var(--white); }
.faq-list { display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: var(--bg); border-radius: 12px; overflow: hidden; transition: all .3s ease; }
.faq-item:hover { box-shadow: 0 5px 20px rgba(0,0,0,.08); }
.faq-question { padding: 20px 25px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 15px; }
.faq-question h3 { font-size: 16px; font-weight: 500; color: var(--dark); margin: 0; }
.faq-icon { width: 30px; height: 30px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--primary); flex-shrink: 0; transition: all .3s ease; }
.faq-item.active .faq-icon { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-content { padding: 0 25px 20px; font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* FAQs Responsive */
@media (max-width: 768px) {
    .faq-question h3 { font-size: 14px; }
    .faq-question { padding: 15px 20px; }
}


/* ==========================================================================
   PORTFOLIO PAGE
   ========================================================================== */

.stats-section { padding: 40px 20px; background: var(--white); }
.stats-container { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-item { text-align: center; padding: 25px; }
.stat-number { font-size: 42px; font-weight: 700; color: var(--primary); margin-bottom: 5px; }
.stat-label { font-size: 14px; color: var(--text-light); }
.portfolio-section { padding: 60px 20px 80px; background: var(--bg); }
.portfolio-container { max-width: 1200px; margin: 0 auto; }
.filter-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-tab { padding: 10px 20px; background: var(--white); border: none; border-radius: 25px; font-size: 14px; font-weight: 500; color: var(--text); cursor: pointer; transition: all .3s ease; }
.filter-tab:hover, .filter-tab.active { background: var(--primary); color: var(--white); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.portfolio-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.08); transition: all .3s ease; }
.portfolio-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,.15); }
.portfolio-image { position: relative; height: 220px; overflow: hidden; }
.portfolio-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.portfolio-card:hover .portfolio-image img { transform: scale(1.1); }
.portfolio-badge { position: absolute; top: 15px; left: 15px; padding: 6px 12px; background: var(--primary); color: var(--white); border-radius: 6px; font-size: 11px; font-weight: 600; text-transform: uppercase; }
.portfolio-content { padding: 25px; }
.portfolio-content h3 { font-size: 18px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.portfolio-content p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 15px; }
.portfolio-tech { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 15px; }
.tech-tag { padding: 4px 10px; background: var(--bg); border-radius: 4px; font-size: 11px; color: var(--text); }
.portfolio-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--primary); }
.portfolio-link:hover { text-decoration: underline; }

/* Portfolio Responsive */
@media (max-width: 1024px) {
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .portfolio-grid, .stats-container { grid-template-columns: 1fr; }
}


/* ==========================================================================
   CAREER PAGE
   ========================================================================== */

/* Benefits */
.benefits-section { padding: 80px 20px; background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.benefit-card { background: var(--bg); border-radius: 12px; padding: 25px; text-align: center; transition: all .3s ease; }
.benefit-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,.1); }
.benefit-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary), #7c6fef); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--white); margin: 0 auto 15px; }
.benefit-card h4 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.benefit-card p { font-size: 13px; color: var(--text-light); }

/* Jobs */
.jobs-section { padding: 80px 20px; background: var(--bg); }
.jobs-grid { display: flex; flex-direction: column; gap: 20px; max-width: 900px; margin: 0 auto; }
.job-card { background: var(--white); border-radius: 16px; padding: 30px; transition: all .3s ease; border: 2px solid transparent; }
.job-card:hover { border-color: var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.job-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.job-info h3 { font-size: 20px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.job-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.job-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-light); }
.job-meta-item i { color: var(--primary); }
.job-short-desc { margin-top: 14px; font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* Job Accordion */
.job-accordion { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.job-accordion-item { border: 1.5px solid #e2e8f0; border-radius: 10px; overflow: hidden; transition: border-color .3s; }
.job-accordion-item.active { border-color: var(--primary); }
.job-accordion-toggle { width: 100%; padding: 12px 16px; background: none; border: none; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 600; color: var(--dark); transition: all .2s; }
.job-accordion-toggle:hover { background: rgba(108,92,231,.04); }
.job-accordion-toggle .toggle-left { display: flex; align-items: center; gap: 8px; }
.job-accordion-toggle .toggle-left i { color: var(--primary); font-size: 13px; width: 18px; }
.job-accordion-toggle .toggle-arrow { font-size: 12px; color: var(--text-light); transition: transform .3s; }
.job-accordion-item.active .toggle-arrow { transform: rotate(180deg); color: var(--primary); }
.job-accordion-content { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.job-accordion-inner { padding: 0 16px 14px; font-size: 13px; color: var(--text-light); line-height: 1.8; }
.job-accordion-inner ul { margin: 0; padding-left: 18px; list-style: none; }
.job-accordion-inner ul li { position: relative; padding-left: 6px; margin-bottom: 4px; }
.job-accordion-inner ul li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 10px; color: var(--primary); position: absolute; left: -16px; top: 3px; }
.job-card-footer { margin-top: 18px; display: flex; justify-content: flex-end; }
.apply-btn { padding: 12px 25px; background: var(--primary); color: var(--white); border: none; border-radius: 8px; font-weight: 500; white-space: nowrap; transition: all .3s ease; cursor: pointer; font-size: 14px; font-family: inherit; }
.apply-btn:hover { background: var(--dark); }

/* No Jobs */
.no-jobs { text-align: center; padding: 60px 20px; }
.no-jobs i { font-size: 48px; color: var(--primary); margin-bottom: 20px; }
.no-jobs h3 { font-size: 22px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.no-jobs p { font-size: 14px; color: var(--text-light); margin-bottom: 20px; }
.no-jobs a { display: inline-block; padding: 12px 25px; background: var(--primary); color: var(--white); border-radius: 8px; font-weight: 500; transition: all .3s ease; text-decoration: none; }
.no-jobs a:hover { background: var(--dark); }

/* Application Modal */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.6); z-index: 9999; justify-content: center; align-items: center; padding: 20px; }
.modal-overlay.active { display: flex; }
.modal-box { background: var(--white); border-radius: 16px; width: 100%; max-width: 600px; max-height: 90vh; overflow-y: auto; position: relative; animation: modalSlideIn .3s ease; }
.modal-box::-webkit-scrollbar { width: 6px; }
.modal-box::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
@keyframes modalSlideIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.modal-header { padding: 24px 24px 0; display: flex; justify-content: space-between; align-items: center; }
.modal-header h3 { font-size: 20px; font-weight: 700; color: var(--dark); }
.modal-close { width: 36px; height: 36px; border: none; background: var(--bg); border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-light); transition: all .2s; }
.modal-close:hover { background: #fee2e2; color: #ef4444; }
.modal-body { padding: 24px; }
.modal-body .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.modal-body .form-group { margin-bottom: 16px; }
.modal-body label { display: block; font-size: 13px; font-weight: 500; color: var(--dark); margin-bottom: 6px; }
.modal-body label .req { color: #ef4444; }
.modal-body input, .modal-body textarea, .modal-body select { width: 100%; padding: 10px 14px; border: 1.5px solid #e2e8f0; border-radius: 8px; font-size: 14px; font-family: inherit; transition: border-color .2s; box-sizing: border-box; }
.modal-body input:focus, .modal-body textarea:focus, .modal-body select:focus { outline: none; border-color: var(--primary); }
.modal-body textarea { resize: vertical; min-height: 80px; }
.modal-body .file-hint { font-size: 11px; color: var(--text-light); margin-top: 4px; }
.modal-body .submit-btn { width: 100%; padding: 14px; background: var(--primary); color: var(--white); border: none; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all .3s; font-family: inherit; }
.modal-body .submit-btn:hover { background: var(--dark); }
.modal-body .submit-btn:disabled { opacity: .6; cursor: not-allowed; }
.modal-msg { padding: 12px 16px; border-radius: 8px; font-size: 13px; margin-bottom: 16px; display: none; }
.modal-msg.success { display: block; background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.modal-msg.error { display: block; background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.success-state { text-align: center; padding: 40px 20px; }
.success-state i { font-size: 56px; color: #10b981; margin-bottom: 16px; }
.success-state h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.success-state p { font-size: 14px; color: var(--text-light); }

/* Career Responsive */
@media (max-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .job-card-header { flex-direction: column; }
    .job-card-footer { justify-content: stretch; }
    .apply-btn { width: 100%; text-align: center; }
    .modal-body .form-row { grid-template-columns: 1fr; }
    .modal-box { margin: 10px; }
}
