 /* ============ CSS VARIABLES ============ */
        :root {
            --primary: #C41E3A;
            --primary-dark: #A01830;
            --primary-light: #E8354F;
            --secondary: #2D3748;
            --accent: #1A202C;
            --text-dark: #1A202C;
            --text-light: #4A5568;
            --text-muted: #718096;
            --white: #FFFFFF;
            --off-white: #F7FAFC;
            --gray-light: #E2E8F0;
            --gray: #CBD5E0;
            --success: #25D366;
            --warning: #F59E0B;
            --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            --gradient-dark: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
            --shadow-sm: 0 2px 10px rgba(26, 32, 44, 0.08);
            --shadow-md: 0 4px 20px rgba(26, 32, 44, 0.1);
            --shadow-lg: 0 10px 40px rgba(26, 32, 44, 0.15);
            --shadow-xl: 0 20px 50px rgba(26, 32, 44, 0.2);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
        }

        /* ============ RESET & BASE ============ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--white);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            line-height: 1.3;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ============ HEADER ============ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--white);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .top-bar {
            background: var(--accent);
            color: var(--white);
            padding: 8px 0;
            font-size: 0.85rem;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .top-bar a {
            color: var(--white);
            margin-left: 15px;
            opacity: 0.9;
        }

        .top-bar a:hover {
            opacity: 1;
        }

        .top-bar-right {
            display: flex;
            align-items: center;
        }

        .nav-main {
            padding: 12px 0;
            border-bottom: 1px solid var(--gray-light);
        }

        .nav-main .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 0;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
        }

        .nav-cta {
            background: var(--gradient-primary);
            color: var(--white) !important;
            padding: 12px 25px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            white-space: nowrap;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .mobile-toggle span {
            width: 25px;
            height: 2px;
            background: var(--text-dark);
            transition: all 0.3s;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ============ PAGE HERO ============ */
        .page-hero {
            margin-top: 98px;
            background: var(--gradient-primary);
            padding: 80px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.3;
        }

        .page-hero .container {
            position: relative;
            z-index: 2;
        }

        .page-hero h1 {
            font-size: 3rem;
            color: var(--white);
            margin-bottom: 15px;
        }

        .page-hero .subtitle {
            font-size: 1.4rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .page-hero p {
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.2);
            padding: 12px 25px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            margin-bottom: 20px;
            font-size: 1rem;
            font-weight: 600;
        }

        .hero-badge .icon {
            font-size: 1.5rem;
        }

        /* ============ JOB DETAILS SECTION ============ */
        .job-details-section {
            padding: 80px 0;
            background: var(--off-white);
        }

        .job-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .job-main {
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
        }

        .position-header {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 25px 30px;
            border-radius: var(--radius-md);
            margin-bottom: 35px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .position-header .icon {
            font-size: 2.5rem;
        }

        .position-header h2 {
            font-size: 1.8rem;
            margin: 0;
        }

        .job-section {
            margin-bottom: 35px;
        }

        .job-section h3 {
            font-size: 1.4rem;
            color: var(--text-dark);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--gray-light);
        }

        .job-details-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .detail-card {
            background: var(--off-white);
            padding: 20px;
            border-radius: var(--radius-md);
            border-left: 4px solid var(--primary);
        }

        .detail-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px;
        }

        .detail-value {
            font-size: 1.05rem;
            color: var(--text-dark);
            font-weight: 600;
        }

        .requirements-list {
            list-style: none;
            padding: 0;
        }

        .requirements-list li {
            padding: 12px 15px 12px 45px;
            background: var(--off-white);
            margin-bottom: 12px;
            border-radius: var(--radius-sm);
            position: relative;
            font-size: 0.95rem;
            color: var(--text-dark);
        }

        .requirements-list li::before {
            content: '✓';
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 22px;
            height: 22px;
            background: var(--success);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .locations-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .location-badge {
            background: var(--white);
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 10px 15px;
            border-radius: var(--radius-sm);
            text-align: center;
            font-weight: 600;
            font-size: 0.95rem;
        }

        /* ============ QUICK INFO SIDEBAR ============ */
        .quick-info {
            position: sticky;
            top: 130px;
        }

        .info-card {
            background: var(--white);
            padding: 30px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            margin-bottom: 20px;
        }

        .info-card h4 {
            font-size: 1.2rem;
            color: var(--text-dark);
            margin-bottom: 20px;
            text-align: center;
        }

        .info-items {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: var(--off-white);
            border-radius: var(--radius-sm);
        }

        .info-item .icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .info-item-content {
            flex: 1;
        }

        .info-item-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            display: block;
        }

        .info-item-value {
            font-size: 0.95rem;
            color: var(--text-dark);
            font-weight: 600;
        }

        .apply-cta {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 15px 25px;
            border-radius: var(--radius-md);
            text-align: center;
            font-weight: 700;
            font-size: 1.1rem;
            display: block;
            margin-top: 20px;
            transition: all 0.3s;
        }

        .apply-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
        }

        /* ============ APPLICATION FORM SECTION ============ */
        .application-section {
            padding: 80px 0;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .section-header .subtitle {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .section-header h2 {
            font-size: 2.2rem;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .section-header p {
            color: var(--text-light);
            font-size: 1.05rem;
        }

        .application-form-wrapper {
            max-width: 900px;
            margin: 0 auto;
            background: var(--white);
            padding: 50px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
            border: 1px solid var(--gray-light);
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 10px;
            font-size: 0.95rem;
        }

        .form-group label span {
            color: var(--primary);
        }

        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group input[type="tel"],
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--gray-light);
            border-radius: var(--radius-md);
            font-family: 'Open Sans', sans-serif;
            font-size: 1rem;
            color: var(--text-dark);
            background: var(--white);
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 18px;
            padding-right: 45px;
        }

        .file-upload-wrapper {
            position: relative;
            overflow: hidden;
            border: 2px dashed var(--gray);
            border-radius: var(--radius-md);
            background: var(--off-white);
            padding: 30px;
            text-align: center;
            transition: all 0.3s;
        }

        .file-upload-wrapper:hover {
            border-color: var(--primary);
            background: rgba(196, 30, 58, 0.05);
        }

        .file-upload-wrapper input[type="file"] {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
        }

        .file-upload-label {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .file-upload-icon {
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .file-upload-text {
            font-size: 0.95rem;
            color: var(--text-dark);
            font-weight: 600;
        }

        .file-upload-hint {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .file-name {
            margin-top: 10px;
            font-size: 0.9rem;
            color: var(--success);
            font-weight: 600;
        }

        .btn-submit {
            width: 100%;
            padding: 18px 35px;
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-md);
            font-family: 'Open Sans', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
        }

        .btn-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .form-note {
            text-align: center;
            margin-top: 20px;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .form-note a {
            color: var(--primary);
            font-weight: 600;
        }

        /* Success Message */
        .success-message {
            display: none;
            text-align: center;
            padding: 50px 30px;
        }

        .success-message.show {
            display: block;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: var(--success);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2.5rem;
        }

        .success-message h3 {
            font-size: 1.8rem;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .success-message p {
            color: var(--text-light);
            font-size: 1.05rem;
            margin-bottom: 25px;
        }

        /* ============ FOOTER ============ */
        .footer {
            background: var(--off-white);
            padding: 60px 0 0;
            border-top: 1px solid var(--gray-light);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 40px;
            padding-bottom: 40px;
        }

        .footer-brand img {
            height: 50px;
            margin-bottom: 20px;
        }

        .footer-brand p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .footer-contact p {
            color: var(--text-light);
            margin-bottom: 5px;
        }

        .footer-contact strong {
            color: var(--primary);
        }

        .footer h5 {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--text-light);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a::before {
            content: '›';
            color: var(--primary);
            font-weight: bold;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .social-icons {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .social-icons a:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }

        .footer-app {
            margin-top: 20px;
        }

        .footer-app p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .footer-app img {
            height: 50px;
            border-radius: 8px;
        }

        .footer-bottom {
            background: var(--accent);
            padding: 20px 0;
        }

        .footer-bottom .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }

        .footer-bottom strong {
            color: var(--white);
        }

        .footer-bottom a {
            color: var(--primary-light);
        }

        /* ============ FLOATING WHATSAPP ============ */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background: var(--success);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 9999;
            transition: all 0.3s;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        .whatsapp-float svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1023px) {
            .top-bar {
                display: none;
            }

            .page-hero {
                margin-top: 70px;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                gap: 0;
                box-shadow: var(--shadow-lg);
                display: none;
                max-height: calc(100vh - 70px);
                overflow-y: auto;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                display: block;
                padding: 15px;
                border-bottom: 1px solid var(--gray-light);
            }

            .nav-links a::after {
                display: none;
            }

            .nav-cta {
                margin-top: 10px;
                text-align: center;
            }

            .mobile-toggle {
                display: flex;
            }

            .job-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .quick-info {
                position: static;
            }

            .job-details-grid {
                grid-template-columns: 1fr;
            }

            .locations-list {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767px) {
            .page-hero {
                padding: 50px 0 40px;
            }

            .page-hero h1 {
                font-size: 2rem;
            }

            .page-hero .subtitle {
                font-size: 1.1rem;
            }

            .job-main {
                padding: 25px;
            }

            .position-header {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }

            .position-header h2 {
                font-size: 1.4rem;
            }

            .application-form-wrapper {
                padding: 30px 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .section-header h2 {
                font-size: 1.6rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand img {
                margin: 0 auto 20px;
            }

            .social-icons {
                justify-content: center;
            }

            .footer-links a {
                justify-content: center;
            }

            .footer-bottom .container {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 479px) {
            .page-hero h1 {
                font-size: 1.6rem;
            }

            .hero-badge {
                font-size: 0.85rem;
                padding: 8px 15px;
            }
        }