/* ========================================
   CAREER PAGE RESPONSIVE STYLES
   ======================================== */

/* Hero Section */
.hero-section {
    padding: 80px 0;
    position: relative;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero-section .lead {
    font-size: 1.25rem;
}

/* Job Cards */
.job-card {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.job-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.job-card .card-body {
    padding: 1.5rem;
}

.job-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #091E3E;
}

.job-card p {
    margin-bottom: 0.5rem;
    color: #64748b;
}

.job-card .btn {
    margin-top: 1rem;
}

/* Benefits Section */
.benefit-card {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
}

.benefit-card i {
    font-size: 3rem;
    color: #06A3DA;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #64748b;
    margin-bottom: 0;
}

/* Application Modal */
.modal-dialog {
    max-width: 600px;
}

.modal-content {
    border-radius: 10px;
}

.modal-header {
    background: linear-gradient(135deg, #06A3DA 0%, #0582b8 100%);
    color: #fff;
    border-radius: 10px 10px 0 0;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2.25rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .job-card .card-body {
        padding: 1.25rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 0.95rem;
    }
    
    .hero-section .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .job-card {
        margin-bottom: 1.5rem;
    }
    
    .job-card h3 {
        font-size: 1.15rem;
    }
    
    .job-card p {
        font-size: 0.9rem;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }
    
    .benefit-card i {
        font-size: 2.5rem;
    }
    
    .benefit-card h4 {
        font-size: 1.1rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    /* Modal adjustments */
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-body .form-control,
    .modal-body .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section .lead {
        font-size: 0.9rem;
    }
    
    .job-card .card-body {
        padding: 1rem;
    }
    
    .job-card h3 {
        font-size: 1.05rem;
    }
    
    .job-card p {
        font-size: 0.85rem;
    }
    
    .job-card .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .benefit-card {
        padding: 1rem;
    }
    
    .benefit-card i {
        font-size: 2rem;
    }
    
    .benefit-card h4 {
        font-size: 1rem;
    }
    
    .benefit-card p {
        font-size: 0.85rem;
    }
}

/* Culture Section */
.culture-section {
    padding: 3rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .culture-section {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
    }
}

@media (max-width: 576px) {
    .culture-section {
        padding: 1.5rem 1rem;
        margin: 1rem 0;
    }
}

/* Form Improvements */
.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #091E3E;
}

.form-control,
.form-select {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #06A3DA;
    box-shadow: 0 0 0 0.2rem rgba(6, 163, 218, 0.25);
}

/* File Upload Styling */
.form-control[type="file"] {
    padding: 0.5rem;
}

/* Textarea */
textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Success/Error Messages */
.alert {
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}
