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

    :root {
        --brand-gold: #C9A227;
        --nav-link: #475569;
        --nav-link-hover: #CA8A04;
        --dp-name: #0F172A;
        --text-dark: #0F172A;
        --text-muted: #64748B;
        --stroke: #E2E8F0;
        --card-border: #E2E8F0;
        --white: #ffffff;
        --page-bg: #F5F5F5;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Public Sans', sans-serif;
        background: var(--page-bg);
        color: var(--text-dark);
        overflow-x: hidden;
    }

    /* NAV */
    nav {
        position: sticky;
        top: 0;
        z-index: 100;
        background: var(--white);
        border-bottom: 1px solid var(--stroke);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 60px;
        height: 84px;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 900;
        font-size: 20px;
        color: var(--dp-name);
        letter-spacing: -1px;
        text-decoration: none;
    }

    .nav-logo img {
        width: 48px;
        height: 48px;
    }

    .nav-links {
        display: flex;
        gap: 40px;
        list-style: none;
    }

    .nav-links a {
        font-size: 14px;
        font-weight: 500;
        color: var(--nav-link);
        text-decoration: none;
        text-transform: uppercase;
        transition: color 0.2s;
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 0;
        right: 0;
        height: 2.5px;
        background: var(--brand-gold);
        border-radius: 2px;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .nav-links a:hover::after {
        transform: scaleX(1);
    }

    .nav-links a:hover {
        color: var(--nav-link-hover);
    }

    .btn-gold {
        background: var(--brand-gold);
        color: var(--white);
        border: none;
        cursor: pointer;
        font-weight: 700;
        font-size: 15px;
        padding: 13px 28px;
        border-radius: 8px;
        transition: background 0.2s, transform 0.15s;
        text-decoration: none;
        display: inline-block;
    }

    .btn-gold:hover {
        background: #A67C1F;
        transform: translateY(-1px);
    }

    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 4px;
    }

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text-dark);
        border-radius: 2px;
        transition: 0.3s;
    }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid #E5E7EB;
        padding: 24px 24px 32px;
        z-index: 99;
        flex-direction: column;
        gap: 20px;
    }

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        font-size: 16px;
        font-weight: 500;
        color: var(--text-dark);
        text-decoration: none;
    }

    /* HERO */
    .apply-hero {
        background: #F5F5F5;
        padding: 40px 60px 52px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .apply-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #FEFCE8;
        border: 1px solid #FEF08A;
        color: #C9A227;
        font-weight: 700;
        font-size: 11px;
        letter-spacing: 1.5px;
        padding: 6px 18px;
        border-radius: 100px;
        margin-bottom: 20px;
    }

    .apply-badge span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #22c55e;
        display: inline-block;
        animation: pulse 1.8s ease-in-out infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
            transform: scale(1)
        }

        50% {
            opacity: 0.4;
            transform: scale(0.7)
        }
    }

    .apply-title {
        font-size: clamp(28px, 4vw, 48px);
        font-weight: 900;
        line-height: 1.05;
        color: var(--text-dark);
        margin-bottom: 14px;
    }

    .apply-title .gold {
        color: var(--brand-gold);
    }

    .apply-subtitle {
        font-size: 15px;
        line-height: 1.7;
        color: var(--text-muted);
        max-width: 480px;
        margin-bottom: 44px;
    }

    /* ROLE CARDS */
    .role-selector {
        display: flex;
        justify-content: center;
        gap: 14px;
        max-width: 1080px;
        width: 100%;
        margin-bottom: 48px;
        flex-wrap: wrap;
    }

    .role-card {
        width: 240px;
        flex-shrink: 0;
    }

    .role-card {
        background: var(--white);
        border: 2px solid var(--card-border);
        border-radius: 14px;
        padding: 22px 18px;
        cursor: pointer;
        text-align: left;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        position: relative;
        overflow: hidden;
    }

    .role-card:hover {
        border-color: var(--brand-gold);
        transform: translateY(-3px);
        box-shadow: 0 10px 28px rgba(201, 162, 39, 0.12);
    }

    .role-card.active {
        border-color: var(--brand-gold);
        background: #FFFDF0;
        box-shadow: 0 8px 24px rgba(201, 162, 39, 0.15);
    }

    .role-card .role-icon {
        width: 38px;
        height: 38px;
        background: #F5F5F5;
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
        color: var(--text-muted);
        transition: background 0.3s, color 0.3s;
    }

    .role-card.active .role-icon,
    .role-card:hover .role-icon {
        background: rgba(201, 162, 39, 0.12);
        color: var(--brand-gold);
    }

    .role-card .role-title {
        font-weight: 900;
        font-size: 14px;
        color: var(--text-dark);
        margin-bottom: 5px;
        line-height: 1.2;
    }

    .role-card .role-pay {
        font-size: 12px;
        font-weight: 700;
        color: var(--brand-gold);
        margin-bottom: 5px;
    }

    .role-card .role-desc {
        font-size: 11px;
        color: var(--text-muted);
        line-height: 1.5;
    }

    .role-card .role-check {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--brand-gold);
        display: none;
        align-items: center;
        justify-content: center;
    }

    .role-card.active .role-check {
        display: flex;
    }

    .role-check svg {
        width: 11px;
        height: 11px;
    }

    /* FORM */
    .form-section {
        background: var(--white);
        border-radius: 20px;
        border: 1.5px solid var(--card-border);
        max-width: 720px;
        width: 100%;
        margin: 0 auto 80px;
        overflow: hidden;
        box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
    }

    .form-header {
        background: var(--text-dark);
        padding: 26px 36px;
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .form-header-icon {
        width: 42px;
        height: 42px;
        background: rgba(201, 162, 39, 0.15);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-gold);
        flex-shrink: 0;
    }

    .form-header-title {
        font-weight: 900;
        font-size: 18px;
        color: var(--white);
        margin-bottom: 2px;
    }

    .form-header-sub {
        font-size: 12px;
        color: #9CA3AF;
    }

    .form-body {
        padding: 36px;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 7px;
    }

    .form-group.span2 {
        grid-column: span 2;
    }

    label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: var(--text-muted);
    }

    label .req {
        color: var(--brand-gold);
        margin-left: 2px;
    }

    input,
    select,
    textarea {
        font-family: 'Public Sans', sans-serif;
        font-size: 14px;
        color: var(--text-dark);
        background: #F8FAFC;
        border: 1.5px solid var(--card-border);
        border-radius: 9px;
        padding: 12px 14px;
        transition: border-color 0.2s, box-shadow 0.2s;
        outline: none;
        width: 100%;
    }

    input:focus,
    select:focus,
    textarea:focus {
        border-color: var(--brand-gold);
        box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.10);
        background: var(--white);
    }

    select {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%2364748B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 13px center;
        padding-right: 36px;
    }

    textarea {
        resize: vertical;
        min-height: 90px;
    }

    /* File upload */
    .file-upload {
        border: 1.5px dashed var(--card-border);
        border-radius: 9px;
        padding: 18px 14px;
        background: #F8FAFC;
        cursor: pointer;
        text-align: center;
        transition: border-color 0.2s, background 0.2s;
        position: relative;
    }

    .file-upload:hover {
        border-color: var(--brand-gold);
        background: #FFFDF0;
    }

    .file-upload input[type="file"] {
        position: absolute;
        inset: 0;
        opacity: 0;
        cursor: pointer;
        width: 100%;
        height: 100%;
        border: none;
        padding: 0;
        background: none;
        box-shadow: none;
    }

    .file-upload input[type="file"]:focus {
        box-shadow: none;
        border-color: transparent;
    }

    .file-upload-icon {
        color: var(--brand-gold);
        margin-bottom: 6px;
    }

    .file-upload-text {
        font-size: 12px;
        color: var(--text-muted);
        line-height: 1.5;
    }

    .file-upload-text strong {
        color: var(--text-dark);
        font-size: 13px;
        display: block;
        margin-bottom: 2px;
    }

    .file-name {
        font-size: 11px;
        color: var(--brand-gold);
        font-weight: 600;
        margin-top: 6px;
        display: none;
    }

    /* Yes/No toggle buttons */
    .toggle-group {
        display: flex;
        gap: 10px;
    }

    .toggle-btn {
        flex: 1;
        padding: 11px;
        border: 1.5px solid var(--card-border);
        border-radius: 9px;
        background: #F8FAFC;
        cursor: pointer;
        font-family: 'Public Sans', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: var(--text-muted);
        transition: all 0.2s;
        text-align: center;
    }

    .toggle-btn:hover {
        border-color: var(--brand-gold);
        color: var(--text-dark);
    }

    .toggle-btn.selected {
        border-color: var(--brand-gold);
        background: #FFFDF0;
        color: var(--brand-gold);
    }

    /* Role display */
    .selected-role-display {
        background: #FFFDF0;
        border: 1.5px solid rgba(201, 162, 39, 0.3);
        border-radius: 9px;
        padding: 12px 14px;
        font-size: 14px;
        font-weight: 700;
        color: var(--brand-gold);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .form-divider {
        border: none;
        border-top: 1.5px solid var(--card-border);
        margin: 24px 0;
    }

    .section-label {
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--brand-gold);
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .section-label::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--card-border);
    }

    .btn-submit {
        width: 100%;
        padding: 15px;
        background: var(--brand-gold);
        color: var(--white);
        border: none;
        border-radius: 9px;
        font-family: 'Public Sans', sans-serif;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        cursor: pointer;
        transition: background 0.2s, transform 0.15s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 26px;
    }

    .btn-submit:hover {
        background: #A67C1F;
        transform: translateY(-1px);
    }

    .btn-submit svg {
        width: 17px;
        height: 17px;
    }

    .form-note {
        text-align: center;
        font-size: 11px;
        color: var(--text-muted);
        margin-top: 12px;
    }

    /* Success */
    .success-state {
        display: none;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 56px 36px;
        gap: 14px;
    }

    .success-state.show {
        display: flex;
    }

    .success-icon {
        width: 68px;
        height: 68px;
        background: rgba(201, 162, 39, 0.12);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-gold);
    }

    .success-title {
        font-size: 22px;
        font-weight: 900;
        color: var(--text-dark);
    }

    .success-sub {
        font-size: 14px;
        color: var(--text-muted);
        max-width: 360px;
        line-height: 1.6;
    }

    .btn-back {
        margin-top: 6px;
        padding: 12px 26px;
        background: var(--brand-gold);
        color: var(--white);
        border: none;
        border-radius: 8px;
        font-family: 'Public Sans', sans-serif;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
    }

    /* FOOTER */
    footer {
        background: #0F0D12;
        color: var(--white);
        padding: 64px 60px 32px;
    }

    .footer-top {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
        gap: 48px;
        padding-bottom: 48px;
        border-bottom: 1px solid #2E2E2E;
        max-width: 1400px;
        width: 100%;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 900;
        font-size: 17px;
        color: var(--white);
        letter-spacing: 1px;
        text-decoration: none;
        margin-bottom: 20px;
    }

    .footer-desc {
        font-size: 13px;
        line-height: 1.8;
        color: #9CA3AF;
        margin-bottom: 24px;
    }

    .footer-socials {
        display: flex;
        gap: 12px;
    }

    .social-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1.5px solid #3A3A3A;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #9CA3AF;
        transition: border-color 0.2s, color 0.2s;
        background: none;
        text-decoration: none;
    }

    .social-btn:hover {
        border-color: var(--brand-gold);
        color: var(--brand-gold);
    }

    .footer-col-title {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #C9A227;
        margin-bottom: 20px;
    }

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

    .footer-links a {
        font-size: 14px;
        color: #9CA3AF;
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-links a:hover {
        color: var(--white);
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
    }

    .contact-icon {
        color: #C9A227;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .contact-text {
        font-size: 14px;
        color: #9CA3AF;
        line-height: 1.5;
    }

    .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
        padding-top: 32px;
    }

    .footer-copy {
        font-size: 13px;
        color: #6B7280;
    }

    .footer-bottom-links {
        display: flex;
        gap: 24px;
    }

    .footer-bottom-links a {
        font-size: 13px;
        color: #6B7280;
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-bottom-links a:hover {
        color: var(--white);
    }

    /* WhatsApp */
    .whatsapp-float {
        position: fixed;
        bottom: 28px;
        right: 28px;
        z-index: 999;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: #25D366;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
        cursor: pointer;
        text-decoration: none;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .whatsapp-float:hover {
        transform: translateY(-3px) scale(1.07);
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
        fill: #ffffff;
    }

    .wa-tooltip {
        position: absolute;
        right: 66px;
        background: #0F172A;
        color: #ffffff;
        font-size: 12px;
        font-weight: 600;
        padding: 6px 12px;
        border-radius: 6px;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }

    .wa-tooltip::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -5px;
        transform: translateY(-50%);
        border-width: 5px 0 5px 5px;
        border-style: solid;
        border-color: transparent transparent transparent #0F172A;
    }

    .whatsapp-float:hover .wa-tooltip {
        opacity: 1;
    }

    /* Success Popup */
    .popup-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .popup-overlay.show {
        opacity: 1;
        pointer-events: all;
    }

    .popup-box {
        background: var(--white);
        border-radius: 20px;
        padding: 48px 40px;
        max-width: 460px;
        width: 90%;
        text-align: center;
        position: relative;
        transform: translateY(20px);
        transition: transform 0.3s ease;
    }

    .popup-overlay.show .popup-box {
        transform: translateY(0);
    }

    .popup-check {
        width: 64px;
        height: 64px;
        background: rgba(201, 162, 39, 0.12);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: var(--brand-gold);
    }

    .popup-small {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-muted);
        letter-spacing: 0.5px;
        margin-bottom: 10px;
    }

    .popup-big {
        font-size: 24px;
        font-weight: 900;
        color: var(--text-dark);
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .popup-divider {
        border: none;
        border-top: 1.5px solid var(--card-border);
        margin: 20px 0;
    }

    .popup-address {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.8;
    }

    .popup-address strong {
        color: var(--text-dark);
        font-weight: 700;
        display: block;
        margin-bottom: 4px;
    }

    .popup-contact {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        font-size: 14px;
        font-weight: 700;
        color: var(--brand-gold);
        margin-top: 12px;
    }

    .popup-btn {
        margin-top: 28px;
        padding: 13px 32px;
        background: var(--brand-gold);
        color: var(--white);
        border: none;
        border-radius: 9px;
        font-family: 'Public Sans', sans-serif;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
        transition: background 0.2s;
    }

    .popup-btn:hover {
        background: #A67C1F;
    }

    /* Vehicle type field */
    .vehicle-type-group {
        display: none;
        grid-column: span 2;
    }

    .vehicle-type-group.show {
        display: flex;
        flex-direction: column;
        gap: 7px;
    }

    @media (max-width: 768px) {
        .vehicle-type-group {
            grid-column: span 1;
        }
    }


    /* RESPONSIVE */
    @media (max-width: 900px) {
        .role-selector {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        nav {
            padding: 0 24px;
        }

        .nav-links,
        nav>.btn-gold {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .apply-hero {
            padding: 44px 24px 36px;
        }

        .role-selector {
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .form-body {
            padding: 22px;
        }

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

        .form-group.span2 {
            grid-column: span 1;
        }

        .form-header {
            padding: 20px 22px;
        }

        .footer-top {
            grid-template-columns: 1fr 1fr;
        }

        footer {
            padding: 48px 24px 24px;
        }
    }

    @media (max-width: 480px) {
        .role-selector {
            grid-template-columns: 1fr;
        }

        .footer-top {
            grid-template-columns: 1fr;
        }
    }