/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #ffffff;
    line-height: 1.6;
    direction: rtl;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* ===== HEADER STYLES ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
    filter: brightness(1.2);
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: brightness(1.4);
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 5px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-1px);
}

.nav-link.active {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ===== HEADER BUTTONS ===== */
.header-buttons {
    display: flex;
    gap: 10px;
    margin-right: 20px;
}

.header-btn {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    border: none;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(45deg, #f4d03f, #d4af37);
}



.share-btn {
    background: linear-gradient(45deg, #d4af37, #f4d03f) !important;
    color: #000000 !important;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.share-btn:hover::before {
    left: 100%;
}

.share-btn:hover {
    background: linear-gradient(45deg, #f4d03f, #d4af37) !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ===== RED BUTTONS SHARED STYLES ===== */
.register-btn,
.service-request-btn {
    background: linear-gradient(45deg, #8b1538, #b91d47) !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.register-btn::before,
.service-request-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.register-btn:hover::before,
.service-request-btn:hover::before {
    left: 100%;
}

.register-btn:hover,
.service-request-btn:hover {
    background: linear-gradient(45deg, #b91d47, #8b1538) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

/* Make header links behave like buttons */
.header-btn[href] {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-btn[href]:hover {
    text-decoration: none;
}



.language-selector {
    display: flex;
    gap: 8px;
    margin-right: 20px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn img {
    width: 18px;
    height: 13px;
    border-radius: 2px;
}

.lang-btn:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.lang-btn.active {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.2);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: #e0e0e0;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle:hover span {
    background: #d4af37;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.header.scrolled {
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

/* ===== MODAL STYLES (UNIFIED) ===== */
.talent-registration-modal,
.login-modal,
.how-it-works-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

/* Modal content for registration and login */
.talent-registration-modal .modal-content,
.login-modal .modal-content {
    background: #0a0a0a;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    max-width: 400px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    animation: slideIn 0.3s ease;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* Modal content for how it works (wider) */
.how-it-works-modal .modal-content {
    background: #0a0a0a;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    animation: slideIn 0.3s ease;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* Unified modal header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-header h3 {
    color: #d4af37;
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
}

.how-it-works-modal .modal-header h3 {
    font-size: 1.8rem;
}

.modal-close {
    background: none;
    border: none;
    color: #cccccc;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

.modal-body {
    padding: 0;
}

.talent-form .form-group {
    margin-bottom: 25px;
}

.talent-form label {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.talent-form input {
    width: 100%;
    padding: 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.talent-form input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.talent-form input::placeholder {
    color: #888;
    font-family: 'Cairo', sans-serif;
}

.confirm-btn {
    width: 100%;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    border: none;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(45deg, #f4d03f, #d4af37);
}

.links-section {
    margin-bottom: 25px;
}

.links-section p {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.login-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: #f4d03f;
}

.how-it-works-btn {
    width: 100%;
    background: #1a1a1a;
    color: #ffffff;
    border: 1px solid #333;
    padding: 12px;
    font-size: 0.95rem;
    font-family: 'Cairo', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.how-it-works-btn:hover {
    background: #2d2d2d;
    border-color: #d4af37;
}

.terms-section {
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
    margin-bottom: 15px;
}

.checkbox-label:last-child {
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #d4af37;
    border-color: #d4af37;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-size: 12px;
    font-weight: bold;
}

.terms-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #f4d03f;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    margin-top: 80px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
                url('../Image/BG.png') center/cover no-repeat;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    background: linear-gradient(45deg, #f4d03f, #d4af37);
}

/* ===== SECTION STYLES ===== */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #d4af37;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    border-radius: 2px;
}

/* ===== TOP WORKS SECTION ===== */
.top-works-section {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 100px 0;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.work-item {
    position: relative;
    text-align: center;
    transition: transform 0.3s ease;
}

.work-item:hover {
    transform: translateY(-10px);
}

.work-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.work-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.work-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-item:hover .work-image img {
    transform: scale(1.05);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: #0f0f0f;
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-item {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #000;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #d4af37;
    margin-top: 20px;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 100px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
    align-items: center;
}

.partner-item {
    text-align: center;
    padding: 20px;
    background: #0f0f0f;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.partner-item:hover {
    transform: scale(1.05);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.partner-item img {
    max-width: 100%;
    height: auto;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.partner-item:hover img {
    filter: brightness(1);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: #0f0f0f;
    padding: 100px 0;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #333;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
    font-family: 'Cairo', sans-serif;
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-top: 1px solid #333;
    padding: 60px 0 20px;
}

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

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(1.2);
    transition: filter 0.3s ease;
}

.footer-logo:hover img {
    filter: brightness(1.4);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    border-radius: 1px;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section p:last-child {
    margin-bottom: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #d4af37;
    transform: translateX(-5px);
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    min-width: 120px;
    justify-content: center;
}

.social-link:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.social-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.social-link span {
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.footer-bottom p {
    color: #888888;
    font-size: 0.9rem;
    margin: 0;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ===== NOTIFICATIONS ===== */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 10000;
    max-width: 400px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.notification-close:hover {
    opacity: 0.8;
}

.notification-message {
    white-space: pre-line;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .nav-list {
        gap: 0;
        padding: 4px;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    .header-buttons {
        gap: 8px;
    }

    .header-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }

    .logo img {
        height: 40px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        background: transparent;
        border: none;
        border-radius: 0;
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
        border-radius: 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        font-size: 1rem;
        margin: 0;
        text-transform: none;
        letter-spacing: normal;
    }

    .nav-link:hover {
        background: rgba(212, 175, 55, 0.1);
        transform: none;
        border: none;
    }

    .header-buttons {
        display: flex;
        gap: 6px;
        margin-right: 15px;
    }

    .header-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

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

    .language-selector {
        margin-right: 15px;
    }

    .main-content {
        margin-top: 70px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .works-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .social-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-link {
        min-width: 100px;
        padding: 8px 12px;
    }

    /* Modal responsive */
    .talent-registration-modal {
        padding: 15px;
    }

    .modal-content {
        width: 100%;
        padding: 20px;
        margin: 0;
        max-height: 85vh;
    }

    .modal-header h3 {
        font-size: 1.5rem;
    }

    .talent-form input {
        padding: 12px;
        font-size: 0.95rem;
    }

    .confirm-btn {
        padding: 12px;
        font-size: 0.95rem;
    }

    .how-it-works-btn {
        padding: 10px;
        font-size: 0.9rem;
    }

    .checkbox-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
        height: 60px;
    }

    .logo img {
        height: 35px;
    }

    .nav-menu {
        top: 60px;
    }

    .header-buttons {
        display: flex;
        gap: 4px;
        margin-right: 10px;
    }

    .header-btn {
        padding: 5px 8px;
        font-size: 0.7rem;
        min-width: auto;
    }

    .language-selector {
        gap: 5px;
        margin-right: 10px;
    }

    .lang-btn {
        padding: 5px;
    }

    .lang-btn img {
        width: 16px;
        height: 11px;
    }

    .main-content {
        margin-top: 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

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

    .footer-container {
        padding: 0 15px;
    }

    .footer-logo img {
        height: 45px;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-section p,
    .footer-links a,
    .social-link {
        font-size: 0.9rem;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        min-width: 120px;
    }

    .container {
        padding: 0 15px;
    }

    .notification {
        right: 15px;
        left: 15px;
        max-width: none;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    /* Modal responsive for very small screens */
    .talent-registration-modal {
        padding: 10px;
    }

    .modal-content {
        padding: 15px;
        max-height: 80vh;
    }

    .modal-header h3 {
        font-size: 1.3rem;
    }

    .talent-form input {
        padding: 10px;
        font-size: 0.9rem;
    }

    .confirm-btn {
        padding: 10px;
        font-size: 0.9rem;
    }

    .how-it-works-btn {
        padding: 8px;
        font-size: 0.85rem;
    }

    .checkbox-label {
        font-size: 0.8rem;
        gap: 8px;
    }

    .checkmark {
        width: 16px;
        height: 16px;
    }
}



/* ===== LOGIN MODAL SPECIFIC STYLES ===== */

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.login-form input {
    width: 100%;
    padding: 12px 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.login-form input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.login-form input::placeholder {
    color: #666;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.forgot-password {
    color: #d4af37;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #f4d03f;
}

.login-btn {
    width: 100%;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.register-link {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.register-link p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

.register-link-btn {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.register-link-btn:hover {
    color: #f4d03f;
}

/* ===== HOW IT WORKS MODAL SPECIFIC STYLES ===== */

.intro-text {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.intro-text p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.steps-container {
    margin-bottom: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.step-number {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-left: 15px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.step-content p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-size: 0.95rem;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.benefits-section {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(212, 175, 55, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.benefits-section h4 {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.benefit-item span {
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-section {
    text-align: center;
    padding: 25px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-section p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin: 0 0 20px 0;
    font-weight: 500;
}

.start-registration-btn {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.start-registration-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}



/* ===== UNIFIED MODAL RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .talent-registration-modal,
    .login-modal,
    .how-it-works-modal {
        padding: 15px;
    }

    .talent-registration-modal .modal-content,
    .login-modal .modal-content,
    .how-it-works-modal .modal-content {
        width: 100%;
        padding: 20px;
        margin: 0;
        max-height: 85vh;
    }

    .how-it-works-modal .modal-header h3 {
        font-size: 1.5rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 0 15px 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .talent-registration-modal,
    .login-modal,
    .how-it-works-modal {
        padding: 10px;
    }

    .talent-registration-modal .modal-content,
    .login-modal .modal-content,
    .how-it-works-modal .modal-content {
        padding: 15px;
        max-height: 80vh;
    }

    .modal-header h3 {
        font-size: 1.3rem;
    }

    .how-it-works-modal .modal-header h3 {
        font-size: 1.4rem;
    }

    .intro-text p {
        font-size: 1rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

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

    .feature-tag {
        font-size: 0.75rem;
        padding: 3px 10px;
    }

    .talent-form input,
    .login-form input {
        padding: 12px;
        font-size: 0.9rem;
    }

    .confirm-btn,
    .login-btn {
        padding: 12px;
        font-size: 0.95rem;
    }

    .how-it-works-btn {
        padding: 10px;
        font-size: 0.9rem;
    }

    .checkbox-label {
        font-size: 0.85rem;
        gap: 8px;
    }

    .checkmark {
        width: 16px;
        height: 16px;
    }
}

/* ===== MULTI-STEP MODAL STYLES ===== */
.talent-registration-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    padding: 20px;
    backdrop-filter: blur(5px);
    min-height: 100vh;
    width: 100vw;
    height: 100vh;
}

.talent-registration-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.talent-registration-modal .modal-content {
    max-width: 900px;
    width: 100%;
    background: white;
    color: #212529;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    max-height: 85vh;
    overflow-y: auto;
    margin: auto;
    animation: modalSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translate(0, 0);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal Tabs */
.modal-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 5px;
    max-width: 300px;
    margin: 0 auto 20px auto;
}

.tab-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: #6c757d;
    font-weight: 600;
    font-size: 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.tab-btn:hover:not(.active) {
    color: #495057;
    background: rgba(212, 175, 55, 0.1);
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 0;
    gap: 30px;
    position: relative;
}

.step-indicator.hidden {
    display: none;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    height: 2px;
    background: #dee2e6;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #dee2e6;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.step.completed .step-number {
    background: #28a745;
    color: #000;
}

.step.completed .step-number::after {
    content: '✓';
    font-size: 14px;
}

.step-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
    text-align: center;
}

.step.active .step-label {
    color: #000;
    font-weight: 600;
}

/* Step Content */
.step-content {
    display: none;
    padding: 30px;
}

.step-content.active {
    display: block;
    animation: stepFadeIn 0.4s ease-out;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-header {
    text-align: center;
    margin-bottom: 30px;
}

.step-header h3 {
    color: #212529;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-header p {
    color: #6c757d;
    font-size: 16px;
    margin: 0;
}

/* Verification Code Input */
.verification-input {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.code-digit {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    color: #212529;
}

.code-digit:focus {
    outline: none;
    border-color: #d4af37;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.code-digit.filled {
    border-color: #28a745;
    background: #f8fff9;
}

.resend-section {
    text-align: center;
    margin: 20px 0;
}

.resend-btn {
    background: none;
    border: none;
    color: #d4af37;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.resend-btn:hover {
    color: #b8941f;
}

/* Form Rows and Groups */
.talent-registration-modal .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.talent-registration-modal .form-row .form-group.full-width {
    grid-column: 1 / -1;
}

.talent-registration-modal .form-section {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
}

.talent-registration-modal .form-section h4 {
    color: #212529;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Radio Groups */
.talent-registration-modal .radio-group {
    display: flex;
    gap: 20px;
    align-items: center;
}

.talent-registration-modal .radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    color: #212529;
}

.talent-registration-modal .radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #d4af37;
}

/* Languages and Social Buttons */
.languages-buttons,
.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.language-btn,
.social-btn {
    padding: 8px 16px;
    border: 2px solid #dee2e6;
    background: #f8f9fa;
    color: #495057;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.language-btn:hover,
.social-btn:hover {
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.language-btn.active,
.social-btn.active {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    border-color: #d4af37;
    color: #000;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.language-btn.active:hover,
.social-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Animation for button selection */
.language-btn.active::before,
.social-btn.active::before {
    content: '✓';
    position: absolute;
    top: 2px;
    right: 6px;
    font-size: 12px;
    font-weight: bold;
    color: #000;
}

/* Languages Grid (legacy) */
.languages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

/* Social Media Section */
.social-media-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-checkboxes {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

.next-step-btn,
.prev-step-btn,
.submit-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.next-step-btn,
.submit-btn {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.next-step-btn:hover,
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.prev-step-btn {
    background: #6c757d;
    color: #000;
}

.prev-step-btn:hover {
    background: #545b62;
    transform: translateY(-2px);
}

/* Required Field Indicator */
.required {
    color: #dc3545;
    font-weight: 600;
}

/* Multi-step form field styles */
.talent-registration-modal .form-group label {
    color: #212529;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.talent-registration-modal .form-group input,
.talent-registration-modal .form-group select,
.talent-registration-modal .form-group textarea {
    background: white;
    border: 1px solid #dee2e6;
    color: #212529;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    width: 100%;
    transition: all 0.3s ease;
}

.talent-registration-modal .form-group input:focus,
.talent-registration-modal .form-group select:focus,
.talent-registration-modal .form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Login Tab Styles */
.login-content {
    padding: 30px;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h3 {
    color: #212529;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.login-header p {
    color: #6c757d;
    font-size: 16px;
    margin: 0;
}

.password-input-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    color: #6c757d;
}

.password-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.forgot-password {
    color: #d4af37;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #b8941f;
    text-decoration: underline;
}

.login-submit-btn {
    width: 100%;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    margin-bottom: 20px;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #dee2e6;
}

.divider span {
    background: white;
    color: #6c757d;
    padding: 0 15px;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.register-section {
    text-align: center;
}

.register-section p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 15px;
}

.register-link-btn {
    background: none;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.register-link-btn:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* How It Works Modal Styles */
.how-it-works-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    padding: 20px;
    backdrop-filter: blur(5px);
    min-height: 100vh;
    width: 100vw;
    height: 100vh;
}

.how-it-works-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-works-modal .modal-content {
    max-width: 900px;
    width: 100%;
    background: white;
    color: #212529;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    max-height: 85vh;
    overflow-y: auto;
    margin: auto;
    animation: modalSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translate(0, 0);
}

.how-it-works-modal .modal-header {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    padding: 25px 30px;
    border-radius: 15px 15px 0 0;
    position: relative;
    text-align: center;
}

.how-it-works-modal .modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.how-it-works-modal .modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.how-it-works-modal .modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.how-it-works-content {
    padding: 40px 30px;
}

.intro-text {
    text-align: center;
    margin-bottom: 40px;
}

.intro-text p {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 5px solid #d4af37;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.step-number {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.step-content h4 {
    color: #212529;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.step-content p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.cta-section {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 2px dashed rgba(212, 175, 55, 0.3);
}

.cta-section p {
    font-size: 18px;
    color: #495057;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.start-registration-btn {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.start-registration-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive Design for How It Works Modal */
@media (max-width: 768px) {
    .how-it-works-modal {
        padding: 10px;
        align-items: center;
        justify-content: center;
        height: 100vh;
        width: 100vw;
    }

    .how-it-works-modal .modal-content {
        max-width: 95%;
        width: 95%;
        margin: auto;
        max-height: 90vh;
        transform: translate(0, 0);
    }

    .how-it-works-content {
        padding: 30px 20px;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .step-number {
        align-self: center;
    }

    .step-features {
        justify-content: center;
    }
}

/* Responsive Design for Multi-step */
@media (max-width: 768px) {
    .talent-registration-modal {
        padding: 10px;
        align-items: center;
        justify-content: center;
        height: 100vh;
        width: 100vw;
    }

    .talent-registration-modal .modal-content {
        max-width: 95%;
        width: 95%;
        margin: auto;
        max-height: 90vh;
        transform: translate(0, 0);
    }

    .step-indicator {
        gap: 15px;
        padding: 20px 15px 15px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .step-label {
        font-size: 11px;
    }

    .talent-registration-modal .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .verification-input {
        gap: 10px;
    }

    .code-digit {
        width: 40px;
        height: 50px;
        font-size: 18px;
    }

    .talent-registration-modal .radio-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .social-checkboxes {
        flex-direction: column;
        gap: 10px;
    }

    .form-actions {
        flex-direction: column;
        gap: 15px;
    }

    .form-actions button {
        width: 100%;
    }
}

/* Social Media Platforms */
.social-platforms-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-platform-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    background: white;
    transition: all 0.3s ease;
}

.social-platform-item:hover {
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.platform-header i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.platform-header i.fab.fa-instagram {
    color: #E4405F;
}

.platform-header i.fab.fa-twitter {
    color: #1DA1F2;
}

.platform-header i.fab.fa-facebook {
    color: #1877F2;
}

.platform-header i.fab.fa-youtube {
    color: #FF0000;
}

.platform-header i.fab.fa-tiktok {
    color: #000000;
}

.platform-header i.fas.fa-globe {
    color: #6c757d;
}

.platform-input {
    display: flex;
    gap: 10px;
}

.platform-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
}

.platform-input input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.add-platform-btn {
    padding: 12px 20px;
    border: 2px dashed #007bff;
    border-radius: 8px;
    background: rgba(0, 123, 255, 0.05);
    color: #007bff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.add-platform-btn:hover {
    background: rgba(0, 123, 255, 0.1);
    border-color: #0056b3;
}

.add-platform-btn i {
    font-size: 1rem;
}

/* Health and Travel Questions */
.questions-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.question-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    background: white;
    transition: all 0.3s ease;
}

.question-item:hover {
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}

.question-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.question-label .required {
    color: #dc3545;
    margin-right: 4px;
}

.yes-no-group {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.yes-no-group .radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.yes-no-group .radio-label:hover {
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.05);
}

.yes-no-group .radio-label input[type="radio"] {
    margin: 0;
}

.yes-no-group .radio-label input[type="radio"]:checked + span {
    color: #007bff;
    font-weight: 600;
}

.details-box {
    margin-top: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.details-box textarea {
    width: 100%;
    min-height: 80px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    resize: vertical;
    font-family: inherit;
}

.details-box textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.details-box textarea::placeholder {
    color: #6c757d;
    font-style: italic;
}

/* Responsive for questions */
@media (max-width: 768px) {
    .questions-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .platform-input {
        flex-direction: column;
    }

    .social-platforms-container {
        gap: 10px;
    }
}
