/* Careers and Carriers Premium Styling */

:root {
    --infotek-primary: #1a73e8;
    --infotek-secondary: #5f6368;
    --infotek-accent: #ff6d00;
    --infotek-bg-light: #f8f9fa;
    --infotek-white: #ffffff;
    --infotek-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --infotek-radius: 16px;
    --infotek-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Common Section Styles */
.infotek-cc-section {
    padding: 60px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.infotek-cc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.infotek-cc-header {
    text-align: center;
    margin-bottom: 40px;
}

.infotek-cc-tagline {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(26, 115, 232, 0.1);
    color: var(--infotek-primary);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.infotek-cc-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.infotek-cc-subtitle {
    font-size: 18px;
    color: var(--infotek-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Careers Specific */
.infotek-careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.infotek-job-card {
    background: var(--infotek-white);
    padding: 40px;
    border-radius: var(--infotek-radius);
    box-shadow: var(--infotek-shadow);
    transition: var(--infotek-transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.infotek-job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.infotek-job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--infotek-primary);
    opacity: 0;
    transition: var(--infotek-transition);
}

.infotek-job-card:hover::before {
    opacity: 1;
}

.infotek-job-type {
    font-size: 12px;
    font-weight: 700;
    color: #34a853;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.infotek-job-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.infotek-job-meta {
    display: flex;
    gap: 20px;
    color: #777;
    font-size: 14px;
    margin-bottom: 25px;
}

.infotek-job-link {
    display: inline-flex;
    align-items: center;
    color: var(--infotek-primary);
    font-weight: 600;
    text-decoration: none;
    gap: 8px;
}

.infotek-job-link i {
    transition: var(--infotek-transition);
}

.infotek-job-card:hover .infotek-job-link i {
    transform: translateX(5px);
}

/* Benefits Box */
.infotek-benefits-section {
    background: var(--infotek-bg-light);
    border-radius: 40px;
    margin-top: 50px;
    padding: 60px 40px;
}

.infotek-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.infotek-benefit-item {
    text-align: center;
}

.infotek-benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--infotek-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--infotek-primary);
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}

.infotek-benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Carriers Specific */
.infotek-carriers-hero {
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 0 0 80px 80px;
    overflow: hidden;
    color: white;
}

.infotek-carriers-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

.infotek-carriers-hero .infotek-cc-container {
    position: relative;
    z-index: 2;
}

.infotek-fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.infotek-fleet-card {
    background: var(--infotek-white);
    padding: 30px;
    border-radius: var(--infotek-radius);
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: var(--infotek-transition);
}

.infotek-fleet-card:hover {
    transform: translateY(-5px);
}

.infotek-fleet-icon {
    font-size: 40px;
    color: var(--infotek-accent);
    margin-bottom: 20px;
}

/* Onboarding Steps */
.infotek-steps-grid {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.infotek-steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.infotek-step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.infotek-step-number {
    width: 80px;
    height: 80px;
    background: var(--infotek-white);
    border: 4px solid var(--infotek-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    font-weight: 800;
    color: var(--infotek-primary);
    transition: var(--infotek-transition);
}

.infotek-step-item:hover .infotek-step-number {
    background: var(--infotek-primary);
    color: white;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
    .infotek-cc-title { font-size: 36px; }
    .infotek-steps-grid { flex-direction: column; gap: 40px; }
    .infotek-steps-grid::before { display: none; }
    .infotek-fleet-grid { margin-top: 40px; }
    .infotek-carriers-hero { height: auto; padding: 100px 0; }
}

@media (max-width: 767px) {
    .infotek-cc-section { padding: 60px 0; }
    .infotek-careers-grid { grid-template-columns: 1fr; }
}
