:root {
    scroll-padding-top: 80px;
    --primary-color: #f59e0b;
    --secondary-color: #d97706;
    --accent-color: #fbbf24;
    --primary-dark: #92400e;
    --primary-light: #fef3c7;
    --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --background: #ffffff;
    --surface: #fffbeb;
    --border: #e5e7eb;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    background: var(--background);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    background: none;
    -webkit-text-fill-color: unset;
}

.logo-on {
    color: var(--text-primary);
}

.logo-call {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-login, .btn-register {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-login:hover {
    color: var(--secondary-color);
}

.btn-register {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-register:hover {
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hero {
    margin-top: 70px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    background: url("../images/teamwork.jpg") no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    max-width: 900px;
}

.hero-content {
    width: 100%;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
    background: none;
    -webkit-text-fill-color: white;
}

.hero-content p {
    font-size: 1.2rem;
    color: #f1f1f1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--gold-gradient);
    color: white;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-image {
    flex: 1 1 500px;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

.how-it-works {
    padding: 80px 0;
    background: var(--background);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.step {
    flex: 1 1 220px;
    max-width: 250px;
    background: #fff;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(245,158,11,0.25);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.jobs-section {
    text-align: center;
    padding: 60px 20px;
    background: var(--background);
}

.jobs-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 700;
}

.jobs-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.jobs-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.job-column {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    text-align: left;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-column:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(245,158,11,0.25);
}

.job-column h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.job-column p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.job-column ul {
    list-style: none;
    padding: 0;
}

.job-column ul li {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.job-column ul li::before {
    content: "✔";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
}

.build-sorsoganon {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    overflow: hidden;
}

.build-sorsoganon-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    gap: 4rem;
    align-items: center;
}

.build-text {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeSlide 1s ease forwards;
}

.build-text h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.build-text p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.build-text ul {
    list-style: none;
    padding: 0;
}

.build-text ul li {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.8rem;
    color: var(--text-primary);
}

.build-text ul li::before {
    content: "✔";
    font-size: 1.4rem;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

.build-image {
    text-align: center;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeSlide 1s ease forwards;
    animation-delay: 0.4s;
}

.build-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    object-fit: cover;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-join {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    position: relative;
    text-align: center;
}

.why-join .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-join h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 2rem;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.join-group {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    min-height: 200px;
}

.join-group:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.join-group:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(245, 158, 11, 0.3);
}

.join-group h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.join-group p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.main-footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--text-primary) 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .footer-bottom {
        gap: 0.8rem;
        padding-top: 1.5rem;
    }
}

/* MOBILE RESPONSIVE STYLES - FIXED HAMBURGER MENU */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        width: 220px;
        background: #fff;
        padding: 20px;
        gap: 1rem;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        z-index: 9999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .build-sorsoganon-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .build-image {
        margin-top: 2.5rem;
        animation-delay: 0.6s;
    }
    
    .build-text h2 {
        font-size: 2.5rem;
    }
    
    .build-text p {
        font-size: 1.2rem;
    }
    
    .build-text ul li {
        font-size: 1.1rem;
    }
    
    .join-content {
        grid-template-columns: 1fr;
    }
    
    .join-group:nth-child(5) {
        grid-column: 1;
    }
    
    .jobs-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .job-column {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .build-text h2 {
        font-size: 2rem;
    }
    
    .why-join h2 {
        font-size: 2rem;
    }
    
    .jobs-title {
        font-size: 2rem;
    }
}