/* ==========================================================================
   CLARKS INN JOB PORTAL - LANDING PAGE STYLESHEET
   Author: Antigravity AI
   Target: Hotel & Hospitality Industry Recruitment
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
    --primary-red: #c42121;
    --primary-red-hover: #a31818;
    --primary-red-light: #fde8e8;
    --primary-red-rgb: 196, 33, 33;
    
    --accent-gold: #d4af37;
    --accent-gold-hover: #bda030;
    --accent-gold-light: #fdf8e7;
    
    --dark-bg: #0f172a;
    --dark-surface: #1e293b;
    --dark-border: #334155;
    
    --light-bg: #f8fafc;
    --light-surface: #ffffff;
    --light-border: #e2e8f0;
    
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-white: #ffffff;
    
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 10px 30px rgba(196, 33, 33, 0.15);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark-bg);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* --- Layout Containers --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-red);
    background-color: var(--primary-red-light);
    border-radius: var(--border-radius-full);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background-color: var(--light-surface);
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.btn-secondary:hover {
    background-color: var(--primary-red-light);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--dark-bg);
}

.btn-gold:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--text-white);
    color: var(--primary-red);
}

.btn-white:hover {
    background-color: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-icon {
    margin-left: 0.5rem;
    transition: var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* --- Header / Navigation --- */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: var(--transition-normal);
}

.header-nav.scrolled {
    background-color: var(--light-surface);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 52px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-item a {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: var(--transition-normal);
}

.nav-item a:hover {
    color: var(--primary-red);
}

.nav-item a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* --- Hero Section --- */
.hero-sec {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 8rem;
    background: radial-gradient(circle at 80% 20%, rgba(196, 33, 33, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
                var(--light-bg);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 10;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--accent-gold-light);
    color: #9f7d1c;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: var(--border-radius-full);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-tagline svg {
    fill: var(--accent-gold);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-title span {
    color: var(--primary-red);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(196, 33, 33, 0.1);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 580px;
}

/* --- Search Dashboard Widget --- */
.search-widget {
    background-color: var(--light-surface);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-border);
    margin-bottom: 2.5rem;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: center;
}

.search-group {
    position: relative;
    border-right: 1px solid var(--light-border);
    padding-right: 1rem;
}

.search-group:nth-child(3) {
    border-right: none;
}

.search-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.search-input {
    width: 100%;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    background: transparent;
    padding: 0.25rem 0;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-group select.search-input {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2364748b' width='18' height='18'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 5px center;
    padding-right: 1.5rem;
}

.hero-trends {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hero-trends span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.trend-tag {
    font-size: 0.8rem;
    background-color: var(--light-border);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-full);
    font-weight: 500;
}

.trend-tag:hover {
    background-color: var(--primary-red-light);
    color: var(--primary-red);
}

/* --- Hero Visual --- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-backdrop {
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: linear-gradient(45deg, rgba(196,33,33,0.08) 0%, rgba(212,175,55,0.08) 100%);
    animation: blob-animate 12s infinite alternate;
    z-index: 1;
}

@keyframes blob-animate {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 70% 30% 50% 50% / 50% 60% 40% 60%; }
}

.visual-card {
    background-color: var(--light-surface);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    width: 100%;
    max-width: 440px;
    border: 1px solid var(--light-border);
    z-index: 5;
    position: relative;
}

.hotel-job-preview {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.preview-title {
    font-size: 1.25rem;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 0.75rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-badge {
    background-color: #e2fbf0;
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: var(--border-radius-full);
}

.job-item-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius-md);
    background-color: var(--light-bg);
    border: 1px solid transparent;
    transition: var(--transition-normal);
}

.job-item-card:hover {
    border-color: var(--primary-red-light);
    background-color: var(--light-surface);
    transform: scale(1.03);
    box-shadow: var(--shadow-sm);
}

.job-item-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    background-color: var(--primary-red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-red);
}

.job-item-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.job-item-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.job-item-meta {
    margin-left: auto;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.job-item-salary {
    font-weight: 700;
    color: var(--primary-red);
    font-size: 0.85rem;
}

.job-item-loc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- Stats Footer of Hero --- */
.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 3.5rem;
    border-top: 1px solid var(--light-border);
    padding-top: 2rem;
}

.stat-box h3 {
    font-size: 2.2rem;
    color: var(--primary-red);
    margin-bottom: 0.25rem;
}

.stat-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* --- Our Services Section --- */
.services-sec {
    background-color: var(--light-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    transition: var(--transition-normal);
    border: 1px solid var(--light-border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background-color: var(--light-surface);
}

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

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    background-color: var(--light-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-red);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--primary-red);
    color: var(--text-white);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-red);
}

.service-link svg {
    margin-left: 0.25rem;
    transition: var(--transition-fast);
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* --- Join Careers in Clarks Inn Section --- */
.career-sec {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1e293b 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.career-sec .section-title {
    color: var(--text-white);
}

.career-sec .section-desc {
    color: #94a3b8;
}

.career-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.career-media {
    position: relative;
    display: flex;
    justify-content: center;
}

.media-collage {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 400px;
}

.collage-img-1 {
    position: absolute;
    width: 75%;
    height: 280px;
    top: 0;
    left: 0;
    background-color: #334155;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 4px solid #1e293b;
    overflow: hidden;
}

.collage-img-2 {
    position: absolute;
    width: 65%;
    height: 220px;
    bottom: 0;
    right: 0;
    background-color: #475569;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 4px solid #1e293b;
    overflow: hidden;
    z-index: 2;
}

.collage-img-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.9);
    transition: var(--transition-slow);
}

.collage-img-placeholder:hover {
    transform: scale(1.08);
}

.perks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.perk-item {
    display: flex;
    gap: 1rem;
}

.perk-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.perk-text h4 {
    color: var(--text-white);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.perk-text p {
    color: #94a3b8;
    font-size: 0.85rem;
}

/* --- Contact Us Section --- */
.contact-sec {
    background-color: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    background-color: var(--light-surface);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-border);
    overflow: hidden;
}

.contact-info-panel {
    background-color: var(--dark-bg);
    color: var(--text-white);
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: rgba(196, 33, 33, 0.1);
    z-index: 1;
}

.contact-info-title {
    color: var(--text-white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info-desc {
    color: #94a3b8;
    margin-bottom: 3rem;
}

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 5;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.contact-info-text h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-info-text p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    z-index: 5;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
}

.contact-form-panel {
    padding: 3.5rem;
}

.form-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.form-desc {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--light-bg);
    outline: none;
    transition: var(--transition-fast);
    max-width: 100% !important; /* Overriding .vs style */
}

.form-control:focus {
    border-color: var(--primary-red);
    background-color: var(--light-surface);
    box-shadow: 0 0 0 3px rgba(196, 33, 33, 0.1);
}

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

/* --- Footer --- */
.footer {
    background-color: #080b11;
    color: #94a3b8;
    padding-top: 5rem;
    padding-bottom: 2rem;
    border-top: 1px solid #1e293b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-red);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .career-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel::after {
        display: none;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .nav-menu {
        display: none; /* Can be turned into hamburger drawer in logic if needed */
    }
    
    .section-padding {
        padding: 4.5rem 0;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .search-form {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .search-group {
        border-right: none;
        border-bottom: 1px solid var(--light-border);
        padding-right: 0;
        padding-bottom: 0.75rem;
    }
    
    .search-group:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .perks-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-cta {
        display: none;
    }
}

/* --- Popups & Modals (Application Form) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.career-modal {
    background-color: var(--light-surface);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 90%;
    max-width: 600px;
    overflow: hidden;
    transform: translateY(30px);
    transition: transform var(--transition-normal);
    border: 1px solid var(--light-border);
}

.modal-overlay.active .career-modal {
    transform: translateY(0);
}

.modal-header {
    background-color: var(--primary-red);
    color: var(--text-white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: var(--text-white);
    font-size: 1.35rem;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.modal-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 2rem;
    max-height: 75vh;
    overflow-y: auto;
}
