/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-section-wrapper {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: transparent;
    min-height: 80vh;
    padding: 2rem 0;
}

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

/* Header Styles */
.hero-section-wrapper .header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hero-section-wrapper .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.hero-section-wrapper .logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
}

.hero-section-wrapper .navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.hero-section-wrapper .nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hero-section-wrapper .nav-link:hover,
.hero-section-wrapper .nav-link.active {
    color: #48bb78;
}

.hero-section-wrapper .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-section-wrapper .btn-get-started {
    background: #48bb78;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-section-wrapper .btn-get-started:hover {
    background: #38a169;
    transform: translateY(-2px);
}

.hero-section-wrapper .btn-close {
    background: #e2e8f0;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-section-wrapper .btn-close:hover {
    background: #cbd5e0;
}

/* Hero Section */
.hero-section-wrapper .hero {
    position: relative;
    padding: 6rem 0 8rem;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-section-wrapper .hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-section-wrapper .star-icon {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 30px;
    height: 30px;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

.hero-section-wrapper .gradient-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
}

.hero-section-wrapper .gradient-circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #48bb78, #38a169);
    top: 20%;
    right: 10%;
}

.hero-section-wrapper .gradient-circle-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #9ae6b4, #68d391);
    bottom: 20%;
    left: 10%;
}

.hero-section-wrapper .abstract-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,50 Q50,10 90,50" stroke="%2348bb78" stroke-width="0.5" fill="none" opacity="0.3"/></svg>');
    background-size: 200px 200px;
    opacity: 0.2;
}

.hero-section-wrapper .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 60vh;
}

.hero-section-wrapper .hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    color: #2d3748;
}

.hero-section-wrapper .hero-title::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 3.5rem;
    background: #48bb78;
    margin-left: 0.5rem;
    animation: blink 1s infinite;
}

/* Search Form */
.hero-section-wrapper .search-form {
    margin-bottom: 3rem;
}

.hero-section-wrapper .search-container {
    display: flex;
    background: white;
    border-radius: 50px;
    padding: 0.75rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 70px;
}

.hero-section-wrapper .search-input-wrapper {
    flex: 1;
    padding: 0 1rem;
}

.hero-section-wrapper .search-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 1rem 0;
    font-size: 1rem;
    background: transparent;
}

.hero-section-wrapper .search-input::placeholder {
    color: #a0aec0;
}

.hero-section-wrapper .category-wrapper {
    padding: 0 1rem;
    border-left: 1px solid #e2e8f0;
}

.hero-section-wrapper .category-select {
    border: none;
    outline: none;
    padding: 1rem 0;
    font-size: 1rem;
    background: transparent;
    cursor: pointer;
    color: #4a5568;
}

.hero-section-wrapper .search-btn {
    background: #48bb78;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section-wrapper .search-btn:hover {
    background: #38a169;
    transform: scale(1.05);
}

/* Not Sat Butonu */
.hero-section-wrapper .not-sat-button-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.hero-section-wrapper .not-sat-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(72, 187, 120, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-section-wrapper .not-sat-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(72, 187, 120, 0.4);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-section-wrapper .not-sat-btn:active {
    transform: translateY(-1px);
}

.hero-section-wrapper .not-sat-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero-section-wrapper .not-sat-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-section-wrapper .not-sat-arrow {
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.hero-section-wrapper .not-sat-btn:hover .not-sat-arrow {
    transform: translateX(5px);
}

/* Popular Jobs */
.hero-section-wrapper .popular-jobs {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-section-wrapper .popular-label {
    font-weight: 600;
    color: #4a5568;
}

.hero-section-wrapper .job-tag {
    background: rgba(72, 187, 120, 0.1);
    color: #48bb78;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-section-wrapper .job-tag:hover {
    background: rgba(72, 187, 120, 0.2);
    transform: translateY(-2px);
    color: #48bb78;
    text-decoration: none;
}

/* Hero Visual */
.hero-section-wrapper .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.hero-section-wrapper .character-container {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section-wrapper .character-image {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 25px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1/1;
}

/* Info Cards */
.hero-section-wrapper .info-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-section-wrapper .top-categories {
    top: -30px;
    left: -60px;
    width: 180px;
}

.hero-section-wrapper .top-categories h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.hero-section-wrapper .chart-placeholder {
    display: flex;
    align-items: end;
    gap: 0.4rem;
    height: 80px;
}

.hero-section-wrapper .chart-bar {
    width: 25px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero-section-wrapper .customer-success {
    top: -40px;
    right: -70px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
}

.hero-section-wrapper .success-content {
    display: flex;
    flex-direction: column;
}

.hero-section-wrapper .success-text {
    font-size: 0.9rem;
    color: #4a5568;
}

.hero-section-wrapper .success-percentage {
    font-weight: 700;
    color: #2d3748;
    font-size: 1.1rem;
}

.hero-section-wrapper .google-logo {
    width: 25px;
    height: 25px;
}

.hero-section-wrapper .equality-message {
    position: absolute;
    bottom: -50px;
    right: -50px;
    background: white;
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 220px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-section-wrapper .people-icons {
    display: flex;
    gap: 0.3rem;
}

.hero-section-wrapper .person-icon {
    width: 10px;
    height: 10px;
    background: #48bb78;
    border-radius: 50%;
}

.hero-section-wrapper .equality-message p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.4;
}

/* Trust Section */
.hero-section-wrapper .trust-section {
    background: white;
    padding: 2rem 0;
    border-top: 1px solid #e2e8f0;
}

.hero-section-wrapper .trust-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-section-wrapper .trust-text {
    font-weight: 600;
    color: #4a5568;
    font-size: 1.1rem;
}

.hero-section-wrapper .company-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hero-section-wrapper .company-logo {
    font-weight: 600;
    color: #48bb78;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-section-wrapper .company-logo:hover {
    transform: translateY(-2px);
    color: #38a169;
}

/* Talent Preview */
.hero-section-wrapper .talent-preview {
    background: #f0f9f4;
    padding: 3rem 0;
    text-align: center;
}

.hero-section-wrapper .talent-preview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.hero-section-wrapper .talent-preview p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section-wrapper .hero-content {
        gap: 3rem;
    }
    
    .hero-section-wrapper .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-section-wrapper .hero-visual {
        position: relative;
    }
    
    .hero-section-wrapper .character-image {
        width: 450px;
        height: 450px;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .hero-section-wrapper {
        min-height: auto;
        padding: 0;
        background: transparent;
    }
    
    .hero-section-wrapper .container {
        padding: 0 15px;
    }
    
    .hero-section-wrapper .nav-wrapper {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 0;
    }
    
    .hero-section-wrapper .navigation ul {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        margin: 0;
        padding: 0;
    }
    
    .hero-section-wrapper .navigation ul li {
        margin: 0;
    }
    
    .hero-section-wrapper .header-actions {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .hero-section-wrapper .btn-get-started {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .hero-section-wrapper .hero {
        padding: 1rem 0 2rem;
        min-height: auto;
        display: block;
    }
    
    .hero-section-wrapper .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-height: auto;
        text-align: center;
        display: block;
    }
    
    .hero-section-wrapper .hero-main {
        order: 1;
    }
    
    .hero-section-wrapper .hero-visual {
        order: 2;
        min-height: 300px;
        margin-top: 1rem;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-section-wrapper .character-container {
        position: relative;
        z-index: 5;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-section-wrapper .character-image {
        width: 100%;
        height: auto;
        max-width: 350px;
        max-height: 350px;
        border-radius: 20px;
        object-fit: cover;
        aspect-ratio: 1/1;
    }
    
    .hero-section-wrapper .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .hero-section-wrapper .hero-title::after {
        height: 2rem;
        width: 3px;
    }
    
    .hero-section-wrapper .search-form {
        margin-bottom: 1.5rem;
    }
    
    .hero-section-wrapper .search-container {
        flex-direction: column;
        gap: 0.75rem;
        min-height: auto;
        padding: 1rem;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .hero-section-wrapper .search-input-wrapper {
        padding: 0;
        width: 100%;
    }
    
    .hero-section-wrapper .search-input {
        padding: 0.75rem 0;
        text-align: center;
        width: 100%;
        font-size: 1rem;
    }
    
    .hero-section-wrapper .category-wrapper {
        border-left: none;
        border-top: 1px solid #e2e8f0;
        padding: 0.5rem 0 0;
        width: 100%;
    }
    
    .hero-section-wrapper .category-select {
        padding: 0.75rem 0;
        text-align: center;
        width: 100%;
        font-size: 1rem;
    }
    
    .hero-section-wrapper .search-btn {
        width: 50px;
        height: 50px;
        margin: 0 auto;
        flex-shrink: 0;
    }
    
    .hero-section-wrapper .search-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-section-wrapper .popular-jobs {
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-top: 1rem;
    }
    
    .hero-section-wrapper .popular-label {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
    
    .hero-section-wrapper .job-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin: 0.1rem;
    }
    
    .hero-section-wrapper .info-card {
        display: none !important;
    }
    
    .hero-section-wrapper .top-categories {
        display: none !important;
    }
    
    .hero-section-wrapper .customer-success {
        display: none !important;
    }
    
    .hero-section-wrapper .equality-message {
        display: none !important;
    }
    
    .hero-section-wrapper .trust-section {
        padding: 1.5rem 0;
    }
    
    .hero-section-wrapper .trust-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-section-wrapper .trust-text {
        font-size: 1rem;
    }
    
    .hero-section-wrapper .company-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-section-wrapper .company-logo {
        font-size: 0.9rem;
        padding: 0.25rem 0.5rem;
    }
    
    .hero-section-wrapper .talent-preview {
        padding: 2rem 0;
    }
    
    .hero-section-wrapper .talent-preview h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-section-wrapper .talent-preview p {
        font-size: 1rem;
        padding: 0 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .hero-section-wrapper {
        min-height: auto;
        padding: 0;
        background: transparent;
    }
    
    .hero-section-wrapper .container {
        padding: 0 10px;
    }
    
    .hero-section-wrapper .hero {
        padding: 0.5rem 0 1.5rem;
    }
    
    .hero-section-wrapper .hero-content {
        gap: 1rem;
    }
    
    .hero-section-wrapper .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .hero-section-wrapper .hero-title::after {
        height: 1.5rem;
        width: 2px;
    }
    
    .hero-section-wrapper .search-form {
        margin-bottom: 1rem;
    }
    
    .hero-section-wrapper .search-container {
        padding: 0.75rem;
        border-radius: 15px;
        gap: 0.5rem;
    }
    
    .hero-section-wrapper .search-input {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .hero-section-wrapper .category-select {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .hero-section-wrapper .search-btn {
        width: 45px;
        height: 45px;
    }
    
    .hero-section-wrapper .search-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .hero-section-wrapper .popular-jobs {
        gap: 0.4rem;
        margin-top: 0.75rem;
    }
    
    .hero-section-wrapper .popular-label {
        margin-bottom: 0.25rem;
        font-size: 0.85rem;
    }
    
    .hero-section-wrapper .job-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        margin: 0.05rem;
    }
    
    .hero-section-wrapper .hero-visual {
        min-height: 200px;
        margin-top: 0.5rem;
    }
    
    .hero-section-wrapper .character-container {
        max-width: 280px;
    }
    
    .hero-section-wrapper .character-image {
        max-width: 280px;
        max-height: 280px;
        border-radius: 15px;
    }
    
    .hero-section-wrapper .trust-section {
        padding: 1rem 0;
    }
    
    .hero-section-wrapper .trust-text {
        font-size: 0.9rem;
    }
    
    .hero-section-wrapper .company-logos {
        gap: 0.5rem;
    }
    
    .hero-section-wrapper .company-logo {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
    
    .hero-section-wrapper .talent-preview {
        padding: 1.5rem 0;
    }
    
    .hero-section-wrapper .talent-preview h2 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-section-wrapper .talent-preview p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
        line-height: 1.4;
    }
}

@media (max-width: 360px) {
    .hero-section-wrapper {
        min-height: auto;
        padding: 0;
        background: transparent;
    }
    
    .hero-section-wrapper .container {
        padding: 0 8px;
    }
    
    .hero-section-wrapper .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-section-wrapper .hero-title::after {
        height: 1.2rem;
        width: 2px;
    }
    
    .hero-section-wrapper .search-container {
        padding: 0.5rem;
        border-radius: 12px;
    }
    
    .hero-section-wrapper .search-input,
    .hero-section-wrapper .category-select {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .hero-section-wrapper .search-btn {
        width: 40px;
        height: 40px;
    }
    
    .hero-section-wrapper .search-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .hero-section-wrapper .hero-visual {
        min-height: 150px;
    }
    
    .hero-section-wrapper .character-container {
        max-width: 220px;
    }
    
    .hero-section-wrapper .character-image {
        max-width: 220px;
        max-height: 220px;
        border-radius: 12px;
    }
    
    .hero-section-wrapper .job-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
        margin: 0.02rem;
    }
    
    .hero-section-wrapper .talent-preview h2 {
        font-size: 1.4rem;
    }
    
    .hero-section-wrapper .talent-preview p {
        font-size: 0.85rem;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section-wrapper .hero {
        padding: 0.5rem 0 1rem;
    }
    
    .hero-section-wrapper .hero-content {
        gap: 1rem;
    }
    
    .hero-section-wrapper .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-section-wrapper .hero-visual {
        min-height: 120px;
    }
    
    .hero-section-wrapper .character-container {
        max-width: 150px;
    }
    
    .hero-section-wrapper .character-image {
        max-width: 150px;
        max-height: 150px;
        border-radius: 15px;
    }
}

/* Not Sat Butonu Mobil */
.hero-section-wrapper .not-sat-button-container {
    margin-bottom: 1.5rem;
}

.hero-section-wrapper .not-sat-btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    gap: 0.5rem;
}

.hero-section-wrapper .not-sat-icon {
    font-size: 1.2rem;
}

.hero-section-wrapper .not-sat-arrow {
    font-size: 1.1rem;
}

.hero-section-wrapper .popular-jobs {
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Not Sat Butonu Küçük Mobil */
.hero-section-wrapper .not-sat-button-container {
    margin-bottom: 1rem;
}

.hero-section-wrapper .not-sat-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    gap: 0.4rem;
}

.hero-section-wrapper .not-sat-icon {
    font-size: 1.1rem;
}

.hero-section-wrapper .not-sat-arrow {
    font-size: 1rem;
}

.hero-section-wrapper .popular-jobs {
    gap: 0.4rem;
    margin-top: 0.75rem;
}

/* Not Sat Butonu Çok Küçük Ekranlar */
.hero-section-wrapper .not-sat-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    gap: 0.3rem;
}

.hero-section-wrapper .not-sat-icon {
    font-size: 1rem;
}

.hero-section-wrapper .not-sat-arrow {
    font-size: 0.9rem;
}

.hero-section-wrapper .hero-visual {
    min-height: 150px;
}

