* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #2ECC71;
    --green-dark: #27AE60;
    --green-gradient: linear-gradient(135deg, #34D058, #27AE60);
    --blue: #3B82F6;
    --blue-light: #EFF6FF;
    --blue-dark: #2563EB;
    --bg: #EDF2F7;
    --bg-card: #FFFFFF;
    --text-dark: #1E293B;
    --text-gray: #64748B;
    --text-light: #94A3B8;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
    --radius: 16px;
    --radius-sm: 12px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HEADER ========== */
.header {
    background: var(--bg-card);
    padding: 50px 20px 40px;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header-overlay {
    display: none;
}

.header-has-bg {
    padding: 70px 20px 60px;
}

.header-has-bg .header-overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.header-has-bg .header-content {
    position: relative;
    z-index: 1;
}

section.header.header-text-light h1 {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

section.header.header-text-light p {
    color: rgba(255,255,255,0.92);
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.header h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.header p {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 620px;
    margin: 0 auto 28px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-gradient);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.35);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(46, 204, 113, 0.45);
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

/* ========== JOBS SECTION ========== */
.jobs-section {
    padding: 50px 0;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.job-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.job-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.job-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.job-image-overlay .overlay-title {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.job-image-overlay .overlay-salary {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.job-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--blue);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 8px;
    z-index: 2;
}

.job-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.job-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.job-content .job-desc {
    font-size: 0.92rem;
    color: var(--text-gray);
    margin-bottom: 18px;
    line-height: 1.5;
}

.job-details {
    list-style: none;
    margin-bottom: 22px;
    flex: 1;
}

.job-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.job-details li .detail-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.detail-icon.money {
    background: #FEF3C7;
    color: #D97706;
}

.detail-icon.clock {
    background: #E0E7FF;
    color: #4F46E5;
}

.detail-icon.home {
    background: #D1FAE5;
    color: #059669;
}

.detail-icon.briefcase {
    background: #FCE7F3;
    color: #DB2777;
}

.btn-details {
    display: block;
    text-align: center;
    background: var(--green-gradient);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(46, 204, 113, 0.3);
}

.btn-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.4);
}

/* ========== FEATURES ========== */
.features-section {
    padding: 0 0 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.feature-icon.location {
    background: var(--blue-light);
    color: var(--blue);
}

.feature-icon.money {
    background: #D1FAE5;
    color: #059669;
}

.feature-icon.support {
    background: var(--blue-light);
    color: var(--blue);
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ========== VISA SECTION ========== */
.visa-section {
    padding: 0 0 50px;
}

.visa-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 50px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.visa-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0, #6EE7B7, #D1FAE5);
    border-radius: 18px;
    z-index: -1;
}

.visa-left h2 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.visa-left > p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.visa-list {
    list-style: none;
}

.visa-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.visa-list li i {
    color: var(--green);
    font-size: 1.1rem;
}

.visa-right-card {
    background: linear-gradient(135deg, #F0FDF4, #ECFDF5);
    border-radius: var(--radius-sm);
    padding: 40px 32px;
    text-align: center;
}

.visa-right-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.visa-right-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.5;
}

.btn-consultation {
    display: inline-block;
    background: var(--green-gradient);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 36px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(46, 204, 113, 0.3);
}

.btn-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.4);
}

/* ========== FOOTER ========== */
.footer-section {
    padding: 0 0 60px;
    text-align: center;
}

.footer-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.footer-section > .container > p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-gradient);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.35);
}

.footer-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(46, 204, 113, 0.45);
}

.admin-bar {
    background: linear-gradient(135deg, #1E293B, #334155);
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    font-size: 0.85rem;
}

.admin-bar a {
    color: #60A5FA;
    text-decoration: none;
    font-weight: 600;
    margin-left: 12px;
}

.admin-bar a:hover {
    text-decoration: underline;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
    .jobs-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .visa-card {
        grid-template-columns: 1fr;
        padding: 36px;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .header h1 {
        font-size: 1.8rem;
    }

    .header p {
        font-size: 0.95rem;
    }

    .btn-whatsapp,
    .footer-whatsapp {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .jobs-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .visa-card {
        padding: 24px;
    }

    .visa-left h2 {
        font-size: 1.4rem;
    }

    .footer-section h2 {
        font-size: 1.5rem;
    }
}
