/* ============================================
   MEDICAL CARE COLOR PALETTE & VARIABLES
   ============================================ */
:root {
    --medical-blue: #0066CC;
    --medical-teal: #00A3A3;
    --medical-green: #00A651;
    --medical-light-blue: #E6F3FF;
    --medical-soft-blue: #CCE5FF;
    --medical-white: #FFFFFF;
    --care-pink: #FF6B9D;
    --care-coral: #FF8A80;
    --text-dark: #1A2332;
    --text-medium: #4A5568;
    --text-light: #718096;
    --border-light: #E2E8F0;
}

/* ============================================
   HERO SECTION - MEDICAL THEME
   ============================================ */

.hero {
    padding: 2rem;
    position: relative;
    background: linear-gradient(135deg, var(--medical-blue) 0%, var(--medical-teal) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: drift 25s linear infinite;
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.08;
    animation: float 20s ease-in-out infinite;
    color: white;
    font-size: 120px;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shape:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.shape:nth-child(1)::before {
    content: '⚕';
}

.shape:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 65%;
    right: 12%;
    animation-delay: 3s;
}

.shape:nth-child(2)::before {
    content: '⚕';
    font-size: 140px;
}

.shape:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 18%;
    animation-delay: 6s;
}

.shape:nth-child(3)::before {
    content: '⚕';
    font-size: 100px;
}

.shape:nth-child(4) {
    width: 110px;
    height: 110px;
    top: 40%;
    right: 25%;
    animation-delay: 2s;
}

.shape:nth-child(4)::before {
    content: '⚕';
    font-size: 110px;
}

.shape:nth-child(5) {
    width: 130px;
    height: 130px;
    bottom: 35%;
    left: 35%;
    animation-delay: 4s;
}

.shape:nth-child(5)::before {
    content: '⚕';
    font-size: 130px;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(5deg); }
    50% { transform: translateY(-15px) rotate(-5deg); }
    75% { transform: translateY(-40px) rotate(3deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
    margin-top: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.25);
    animation: fadeInUp 0.8s ease-out 1s backwards;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: clamp(2rem, 7vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.highlight {
    background: linear-gradient(to right, var(--care-coral), var(--care-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--care-coral), var(--care-pink));
    opacity: 0.4;
    border-radius: 3px;
}

.subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.trust-badges {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.8rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    color: rgba(255,255,255,0.95);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ============================================
   BUTTONS - MEDICAL THEME
   ============================================ */

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--care-coral), var(--care-pink));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.35);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
    border: 2px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 0.3px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 350px;
    height: 350px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.45);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 6rem 2rem;
}

.section-white {
    background: var(--medical-white);
}

.section-gray {
    background: var(--medical-light-blue);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

/* ============================================
   JOB CARDS - MEDICAL THEME
   ============================================ */

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.job-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    border: 2px solid var(--medical-soft-blue);
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--medical-blue) 0%, var(--medical-teal) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.job-card:hover::before {
    transform: scaleX(1);
}

.job-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 102, 204, 0.2);
    border-color: var(--medical-blue);
}

.job-header {
    background: linear-gradient(135deg, var(--medical-blue) 0%, var(--medical-teal) 100%);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.job-header::before {
    content: '+';
    position: absolute;
    font-size: 200px;
    color: rgba(255, 255, 255, 0.05);
    top: -50px;
    right: -30px;
    font-weight: bold;
    transform: rotate(15deg);
}

.job-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 40px;
    background: #fff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.job-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.job-header h3 {
    font-size: 2rem;
    margin: 0;
    color: #fff;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.job-content {
    padding: 2.5rem 2rem;
    position: relative;
}

.job-subtitle {
    font-size: 1.1rem;
    color: var(--medical-teal);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-subtitle::before {
    content: '';
    width: 30px;
    height: 3px;
    background: linear-gradient(135deg, var(--medical-blue) 0%, var(--medical-teal) 100%);
    border-radius: 2px;
}

.job-features {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.job-features li {
    padding: 0.9rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.job-features li:last-child {
    border-bottom: none;
}

.job-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--medical-green) 0%, var(--medical-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-features li::after {
    content: '✓';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-weight: bold;
    font-size: 0.75rem;
}

.job-card:hover .job-features li {
    padding-left: 2.8rem;
    color: var(--text-dark);
}

.job-highlight {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8EE 100%);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    font-weight: 700;
    color: var(--care-pink);
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
    border: 2px solid var(--care-coral);
}

.job-cta {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--medical-blue) 0%, var(--medical-teal) 100%);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.job-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.4);
    background: linear-gradient(135deg, var(--medical-teal) 0%, var(--medical-blue) 100%);
}

/* ============================================
   ABOUT & ACCOMMODATION - MEDICAL THEME
   ============================================ */

.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.about-content h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--medical-blue);
    font-weight: 700;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.accommodation {
    background: #fff;
    padding: 0;
    border-radius: 24px;
    margin-top: 4rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.1);
    border: 2px solid var(--medical-soft-blue);
}

.accommodation-header {
    background: linear-gradient(135deg, var(--medical-blue) 0%, var(--medical-teal) 100%);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
}

.accommodation-header::before {
    content: '+';
    position: absolute;
    font-size: 300px;
    color: rgba(255, 255, 255, 0.05);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
}

.accommodation-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 50px;
    background: #fff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.accommodation-header h3 {
    font-size: 2.5rem;
    margin: 0;
    color: #fff;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.accommodation-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin: 1rem 0 0 0;
    position: relative;
    z-index: 1;
}

.accommodation-content {
    padding: 3rem 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, var(--medical-light-blue) 0%, #F0F9FF 100%);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid var(--medical-soft-blue);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, var(--medical-blue) 0%, var(--medical-teal) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleY(1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
    border-color: var(--medical-blue);
}

.benefit-card h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.benefit-highlight {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8EE 100%);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2.5rem;
    border: 2px solid var(--care-coral);
    text-align: center;
}

.benefit-highlight h4 {
    font-size: 1.6rem;
    color: var(--care-pink);
    margin-bottom: 1rem;
    font-weight: 800;
}

.benefit-highlight p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   FORM - MEDICAL THEME
   ============================================ */

.form-section {
    padding: 6rem 2rem;
    background: var(--medical-light-blue);
}

.application-form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.1);
    border: 2px solid var(--medical-soft-blue);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--medical-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: block;
    padding: 1.5rem;
    background: var(--medical-light-blue);
    border: 2px dashed var(--medical-blue);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--medical-blue);
    font-weight: 600;
}

.file-upload-label:hover {
    background: var(--medical-soft-blue);
    border-color: var(--medical-teal);
}

.submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--medical-blue) 0%, var(--medical-teal) 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.3);
}

.success-message {
    display: none;
    padding: 1.5rem;
    background: var(--medical-green);
    color: #fff;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ============================================
   CTA SECTION - MEDICAL THEME
   ============================================ */

.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--medical-blue) 0%, var(--medical-teal) 100%);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '+';
    position: absolute;
    font-size: 400px;
    color: rgba(255, 255, 255, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(15deg);
    font-weight: bold;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* ============================================
   FOOTER - MEDICAL THEME
   ============================================ */

footer {
    padding: 2rem;
    background: var(--text-dark);
    color: #fff;
    text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero {
        padding: 1rem;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-badge {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
    
    h1 {
        margin-bottom: 1.2rem;
    }
    
    .subtitle {
        margin-bottom: 2rem;
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        width: auto;
        max-width: 100%;
    }
    
    .trust-badges {
        margin-top: 2rem;
    }
    
    .badge {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .application-form {
        padding: 2rem 1.5rem;
    }

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

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}