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

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Comfortaa', cursive;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

.nav-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: nowrap;
}

.logo {
    font-size: 20px;
    font-weight: 300;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 50px;
    flex: 1;
    flex-wrap: nowrap;
    min-width: 0;
    position: relative;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    transition: all 0.4s ease;
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 1;
    max-width: 200px;
}

.nav-links a:hover {
    color: #4EF631;
}

.nav-buttons {
    display: flex;
    gap: 20px;
    margin-left: auto;
    flex-shrink: 0;
}

.btn-login {
    padding: 12px 30px;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 300;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.btn-login:hover {
    background-color: #f0f0f0;
}

.btn-register {
    padding: 12px 30px;
    background-color: #4EF631;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.btn-register:hover {
    background-color: #3DE520;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f5f5f5;
    transition: all 0.5s ease;
    font-size: 16px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1300px;
    height: 82%;
    max-height: 680px;
    object-fit: cover;
    border-radius: 15px;
    z-index: 1;
    transition: all 0.5s ease;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1300px;
    height: 82%;
    max-height: 680px;
    background-color: rgba(60, 50, 40, 0.45);
    border-radius: 15px;
    z-index: 2;
    transition: all 0.5s ease;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: white;
    width: 80%;
    max-width: 1300px;
    height: 82%;
    max-height: 680px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 70px 90px 60px 90px;
    transition: all 0.5s ease;
}

.hero-content h1 {
    font-size: 38px;
    margin-bottom: 32px;
    font-weight: 400;
    text-align: left;
    transition: all 0.5s ease;
}

.search-container {
    display: flex;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 32px;
    width: 100%;
    max-width: 580px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.search-input {
    flex: 1;
    padding: 16px 22px;
    border: none;
    font-size: 17px;
    font-family: 'Comfortaa', cursive;
    font-weight: 300;
    color: #333;
    transition: all 0.5s ease;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    padding: 16px 22px;
    background-color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.5s ease;
}

.search-btn:hover {
    color: #333;
}

.search-btn svg {
    width: 22px;
    height: 22px;
    transition: all 0.5s ease;
}

.popular-searches {
    margin-bottom: 32px;
    text-align: left;
    transition: all 0.5s ease;
}

.popular-searches p:first-child {
    font-size: 19px;
    margin-bottom: 10px;
    font-weight: 300;
    transition: all 0.5s ease;
}

.tags {
    font-size: 19px;
    opacity: 0.95;
    font-weight: 300;
    transition: all 0.5s ease;
}

.toggle-wrapper {
    width: 100%;
    max-width: 440px;
    margin-top: 0px;
    transition: all 0.5s ease;
}

.user-type-toggle {
    position: relative;
    display: flex;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    overflow: hidden;
    width: 100%;
    padding: 4px;
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background-color: #000;
    border-radius: 50px;
    transition: transform 0.3s ease;
    z-index: 0;
    transform: translateX(0);
}

.toggle-btn {
    position: relative;
    flex: 1;
    padding: 13px 0;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    font-family: 'Comfortaa', cursive;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    z-index: 1;
}

.toggle-btn.active {
    color: white;
}

/* NEW SECTION - Potansiyelini bizimle arttır */
.potential-section {
    padding: 150px 80px;
    background: #ffffff;
    transition: all 0.5s ease;
    overflow: hidden;
    position: relative;
}

.feature-item {
    background: transparent !important;
}

.potential-container {
    max-width: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    transition: all 0.5s ease;
}

.potential-left {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}

.potential-illustration {
    width: 100%;
    max-width: 700px;
    height: auto;
    transition: all 0.5s ease;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-18px); }
    100% { transform: translateY(0px); }
}

.potential-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 580px;
    transition: all 0.5s ease;
}

.potential-title {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 50px;
    line-height: 1.15;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(0) scale(0.95);
}

.potential-title.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 14px;
    width: 100%;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-item.animate {
    animation: none;
}

.feature-item:nth-child(2).animate {
    animation-delay: 0.1s;
}

.feature-item:nth-child(3).animate {
    animation-delay: 0.2s;
}

.feature-item:nth-child(4).animate {
    animation-delay: 0.3s;
}

.feature-item:last-of-type {
    margin-bottom: 38px;
}

.feature-icon {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    object-fit: contain;
    transition: all 0.5s ease;
}

.feature-item:nth-child(3) .feature-icon {
    margin-left: 8px;
}

.feature-content {
    flex: 1;
    transition: all 0.5s ease;
}

.feature-heading {
    font-family: 'Comfortaa', cursive;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: all 0.5s ease;
}

.feature-description {
    font-family: 'Comfortaa', cursive;
    font-size: 15px;
    font-weight: 400;
    color: #777777;
    line-height: 1.55;
    transition: all 0.5s ease;
}

.join-btn {
    font-family: 'Comfortaa', cursive;
    padding: 16px 35px;
    background-color: #4EF631;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: flex-start;
    opacity: 0;
    transform: translateY(30px);
}

.join-btn.animate {
    animation: fadeInUp 0.5s ease-out 0.4s forwards;
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(78, 246, 49, 0.3);
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Solutions Section */
.solutions-section {
    width: 100%;
    padding: 20px 5% 80px 5%;
    background-color: #FFFFFF;
}

.solutions-container {
    max-width: 1450px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.solutions-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-family: 'Comfortaa', cursive;
    font-size: 48px;
    font-weight: 400;
    text-align: center;
    color: #000000;
    margin-bottom: 60px;
}

/* Job Categories Grid */
.job-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    width: 100%;
}

.job-category-box {
    background-color: #E6E6E6;
    border: 3px solid #CDCACA;
    border-radius: 12px;
    padding: 45px 35px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    outline: none;
}

.job-category-box:focus {
    outline: none;
}

.job-category-box:hover,
.job-category-box.clicked {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: none;
}

.job-category-box[data-category="yazi-ceviri"]:hover,
.job-category-box[data-category="yazi-ceviri"].clicked {
    background: linear-gradient(90deg, #ffde59, #ff914d);
}

.job-category-box[data-category="grafik-tasarim"]:hover,
.job-category-box[data-category="grafik-tasarim"].clicked {
    background: linear-gradient(90deg, #5de0e6, #004aad);
}

.job-category-box[data-category="is-yonetim"]:hover,
.job-category-box[data-category="is-yonetim"].clicked {
    background: linear-gradient(90deg, #5170ff, #ff66c4);
}

.job-category-box[data-category="video-animasyon"]:hover,
.job-category-box[data-category="video-animasyon"].clicked {
    background: linear-gradient(90deg, #ff3131, #ff914d);
}

.job-category-box[data-category="ses-muzik"]:hover,
.job-category-box[data-category="ses-muzik"].clicked {
    background: linear-gradient(90deg, #fff7ad, #ffa9f9);
}

.job-category-box[data-category="internet-reklamciligi"]:hover,
.job-category-box[data-category="internet-reklamciligi"].clicked {
    background: linear-gradient(90deg, #000000, #ffffff);
}

.job-category-box[data-category="danismanlik"]:hover,
.job-category-box[data-category="danismanlik"].clicked {
    background: linear-gradient(45deg, #6ae70e, #08fded, #0072ed);
}

.job-category-box[data-category="data"]:hover,
.job-category-box[data-category="data"].clicked {
    background: linear-gradient(180deg, #001f65, #6895fd);
}

.job-category-box[data-category="kisisel-gelisim"]:hover,
.job-category-box[data-category="kisisel-gelisim"].clicked {
    background: linear-gradient(180deg, #84a9ff, #f5f8ff);
}

.job-category-box[data-category="yazilim-teknoloji"]:hover,
.job-category-box[data-category="yazilim-teknoloji"].clicked {
    background: linear-gradient(90deg, #89d957, #c9e265);
}

.job-category-box[data-category="fotografcilik"]:hover,
.job-category-box[data-category="fotografcilik"].clicked {
    background: linear-gradient(90deg, #8c52ff, #5ce1e6);
}

.job-title {
    font-family: 'Comfortaa', cursive;
    font-size: 22px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0;
    line-height: 1.3;
    transition: color 0.6s ease;
}

.job-category-box:hover .job-title,
.job-category-box.clicked .job-title {
    color: #FFFFFF;
}

/* Dropdown Menu Styles */
.nav-links > a {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 25px);
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    padding: 20px 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    min-width: 250px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

/* Invisible bridge for main dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -20px;
    right: -20px;
    height: 35px;
    background: transparent;
    pointer-events: auto;
}

.nav-links > a:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li {
    padding: 12px 0;
    font-family: 'Comfortaa', cursive;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: color 0.2s ease;
    position: static !important;
}

.dropdown-menu li:hover {
    color: #4EF631;
}

.dropdown-menu li:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Submenu styles */
.dropdown-submenu {
    position: absolute !important;
    top: 20px !important;
    bottom: auto !important;
    left: calc(100% + 10px) !important;
    background-color: white;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    padding: 20px 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    width: 250px;
    height: 450px;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

/* Invisible bridge between dropdown and submenu */
.dropdown-submenu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -50px;
    width: 70px;
    height: calc(100% + 20px);
    background: transparent;
    pointer-events: auto;
}

.dropdown-submenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Nasıl Çalışır Section */
.nasil-calisir-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.nasil-calisir-section .section-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 42px;
    text-align: center;
    color: #333;
    margin-bottom: 80px;
    font-weight: 400;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    max-width: 1800px;
    margin: 0 auto;
    flex-wrap: nowrap;
    transition: gap 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card {
    flex: 1;
    min-width: 0;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-illustration img {
    width: 75%;
    height: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
    image-rendering: auto;
}

.step-card:first-child .step-illustration {
    clip-path: inset(5px 0 0 0);
}

.step-card:nth-child(2) .step-illustration {
    clip-path: inset(0 0 5px 0);
}

.step-title {
    display: none;
}

.step-number {
    display: none;
}

/* Image Section */
.image-section {
    padding: 80px 2rem;
    background: white;
}

.image-section:last-of-type {
    padding-top: 20px;
}

.content-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 100px 0 350px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-section img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 0 0 auto;
    border-radius: 20px;
}

.text-content {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease, transform 1s ease;
    padding-left: 20px;
    line-height: 1.2;
    margin-top: -90px;
}

.text-content.animate {
    opacity: 1;
    transform: translateX(0);
}

.text-content h2 {
    margin-bottom: 45px;
    margin-top: 0;
}

.text-alaninda {
    font-family: 'League Spartan', sans-serif;
   font-size: clamp(1.8rem, 2.6vw, 3.0rem);
    font-weight: 700;
    color: #000;
    display: inline;
    margin-right: 3px;
}

.text-uzman {
    font-family: 'League Spartan', sans-serif;
  font-size: clamp(1.7rem, 2.65vw, 3.05rem);
    color: #0066FF;
    display: inline;
    font-style: normal;
    margin-right: 3px;
}

.text-freelancer {
    font-family: 'League Spartan', sans-serif;
  font-size: clamp(1.7rem, 2.65vw, 3.05rem);
    color: #FFDE59;
    display: inline;
    margin-top: 0;
}

.text-ile {
    font-family: 'League Spartan', sans-serif;
font-size: clamp(1.7rem, 2.65vw, 3.05rem);
    color: #000000;
    display: inline;
    margin-top: 0;
}

.text-iki {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(1.8rem, 2.6vw, 3.0rem);
    font-weight: 700;
    color: #000;
    display: inline;
    margin-top: 5px;
}

.text-content ul {
    list-style: none;
    margin-top: 50px;
}

.text-content ul li {
    font-family: 'Comfortaa', cursive !important;
    font-weight: bold;
    font-size: clamp(0.85rem, 1.1vw, 1.25rem);
    color: #000;
    margin-bottom: 30px;
    padding-left: 0;
}

/* Second Image Section */
.content-wrapper-single {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 100px 0 350px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
}

.text-komisyon-content {
    padding-right: 10px;
    transform: scale(0.9);
    transform-origin: left center;
    margin-top: -50px;
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.text-komisyon-content.animate {
    opacity: 1;
    transform: scale(0.9) translateY(0);
}

.text-komisyon-content h2 {
    margin-bottom: 60px;
    line-height: 1.3;
}

.komisyon-zero {
    font-family: 'Glacial Indifference', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #00FF00;
}

.komisyon-text {
    font-family: 'Glacial Indifference', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #000000;
}

.geliriniz-text {
    font-family: 'Glacial Indifference', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #000000;
}

.sizde-text {
    font-family: 'Glacial Indifference', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #C77DFF;
}

.kalsin-text {
    font-family: 'Glacial Indifference', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #000000;
}

.text-komisyon-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-komisyon-content ul li {
    font-family: 'Comfortaa', cursive !important;
    font-weight: bold;
    font-size: 1.25rem;
    color: #000000;
    margin-bottom: 30px;
}

.content-wrapper-single img {
    width: 100%;
    max-width: 530px;
    height: auto;
    display: block;
    margin: 0 0 0 -80px;
    border-radius: 20px;
}

@media (max-width: 1300px) {
    .content-wrapper {
        padding: 0 60px 0 200px;
        gap: 60px;
    }

    .content-wrapper-single {
        padding: 0 60px 0 100px;
        gap: 40px;
    }
}

@media (max-width: 1200px) {
    .content-wrapper-single {
        grid-template-columns: 1fr;
        padding: 0 60px;
        gap: 40px;
        max-width: 700px;
        margin: 0 auto;
    }

    .text-komisyon-content {
        text-align: center;
        padding-right: 0;
        margin-top: 0;
        order: 1;
        transform: scale(1);
    }

    .text-komisyon-content.animate {
        transform: scale(1) translateY(0);
    }

    .content-wrapper-single img {
        margin: 0 auto;
        max-width: 450px;
        width: 100%;
        order: 2;
    }
}

@media (max-width: 1000px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        padding: 0 60px;
        gap: 40px;
        max-width: 700px;
        margin: 0 auto;
    }

    .image-section img {
        max-width: 450px;
        margin: 0 auto;
    }

    .text-content {
        padding-left: 0;
        margin-top: 0;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .text-content ul {
        margin-top: 30px;
        text-align: left;
    }

    .text-content ul li {
        margin-bottom: 20px;
    }

    .content-wrapper-single {
        grid-template-columns: 1fr;
        padding: 0 60px;
        gap: 40px;
        max-width: 700px;
        margin: 0 auto;
    }

    .text-komisyon-content {
        text-align: center;
        padding-right: 0;
        margin-top: 0;
        order: 1;
    }

    .content-wrapper-single img {
        margin: 0 auto;
        max-width: 450px;
        width: 100%;
        order: 2;
    }
}

@media (max-width: 600px) {
    .content-wrapper,
    .content-wrapper-single {
        padding: 0 30px;
        gap: 30px;
        max-width: 500px;
    }

    .image-section img,
    .content-wrapper-single img {
        max-width: 320px;
    }
}

@media (max-width: 400px) {
    .content-wrapper,
    .content-wrapper-single {
        padding: 0 20px;
    }

    .image-section img,
    .content-wrapper-single img {
        max-width: 260px;
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .nav-container {
        gap: 45px;
    }

    .nav-links {
        gap: 45px;
    }

    .hero {
        min-height: 700px;
    }

    .hero-video,
    .hero-overlay,
    .hero-content {
        width: 82%;
        height: 82%;
        max-height: 650px;
    }

    .hero-content {
        padding: 65px 85px 55px 85px;
    }

    .hero-content h1 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .search-container {
        max-width: 550px;
        margin-bottom: 30px;
    }

    .search-input {
        padding: 15px 20px;
        font-size: 16px;
    }

    .search-btn {
        padding: 15px 20px;
    }

    .popular-searches {
        margin-bottom: 30px;
    }

    .popular-searches p:first-child,
    .tags {
        font-size: 18px;
    }

    .toggle-wrapper {
        max-width: 420px;
        margin-top: 0px;
    }

    .toggle-btn {
        padding: 12px 0;
        font-size: 14.5px;
    }

    .potential-section {
        padding: 140px 70px;
    }

    .potential-container {
        max-width: 1350px;
        gap: 55px;
    }

    .potential-illustration {
        max-width: 650px;
    }

    .potential-title {
        font-size: 46px;
        margin-bottom: 48px;
    }

    .feature-icon {
        width: 135px;
        height: 135px;
    }

    .feature-item:nth-child(3) .feature-icon {
        margin-left: 7px;
    }

    .feature-heading {
        font-size: 19px;
    }

    .feature-description {
        font-size: 14.5px;
    }
}

@media (max-width: 1300px) {
    .nav-container {
        gap: 40px;
    }

    .nav-links {
        gap: 40px;
    }

    .hero-content {
        padding: 60px 80px 50px 80px;
    }

    .hero-content h1 {
        font-size: 34px;
        margin-bottom: 28px;
    }

    .search-container {
        max-width: 520px;
        margin-bottom: 28px;
    }

    .search-input {
        padding: 14px 19px;
        font-size: 15px;
    }

    .search-btn {
        padding: 14px 19px;
    }

    .popular-searches {
        margin-bottom: 28px;
    }

    .popular-searches p:first-child,
    .tags {
        font-size: 17px;
    }

    .toggle-wrapper {
        max-width: 400px;
        margin-top: 0px;
    }

    .toggle-btn {
        padding: 12px 0;
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 26px;
    }

    .search-container {
        max-width: 490px;
        margin-bottom: 26px;
    }

    .search-input {
        padding: 13px 18px;
        font-size: 14.5px;
    }

    .search-btn {
        padding: 13px 18px;
    }

    .popular-searches {
        margin-bottom: 26px;
    }

    .popular-searches p:first-child,
    .tags {
        font-size: 16.5px;
    }

    .toggle-wrapper {
        max-width: 380px;
        margin-top: 0px;
    }

    .toggle-btn {
        padding: 11px 0;
        font-size: 13.5px;
    }

    .potential-section {
        padding: 130px 60px;
    }

    .potential-container {
        max-width: 1200px;
        gap: 50px;
    }

    .potential-illustration {
        max-width: 600px;
    }

    .potential-title {
        font-size: 44px;
        margin-bottom: 45px;
    }

    .feature-icon {
        width: 130px;
        height: 130px;
    }

    .feature-item:nth-child(3) .feature-icon {
        margin-left: 7px;
    }

    .feature-heading {
        font-size: 18.5px;
    }

    .feature-description {
        font-size: 14px;
    }

    .feature-item {
        margin-bottom: 35px;
    }

    .solutions-section {
        padding: 18px 5% 75px 5%;
    }

    .section-title {
        font-size: 44px;
        margin-bottom: 55px;
    }

    .job-categories-grid {
        gap: 30px;
    }

    .job-category-box {
        padding: 42px 32px;
        min-height: 135px;
    }

    .job-title {
        font-size: 21px;
    }

    .text-alaninda, .text-uzman {
        font-size: 1.8rem;
    }

    .text-freelancer, .text-iki {
        font-size: 1.8rem;
    }

    .text-content ul li {
        font-size: 1.05rem;
    }
}

@media (max-width: 1150px) {
    .nav-container {
        padding: 0 40px;
        gap: 35px;
    }

    .nav-links {
        gap: 35px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .nav-links a:nth-child(4) {
        opacity: 0;
        max-width: 0;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .hero {
        min-height: 650px;
    }

    .hero-video,
    .hero-overlay,
    .hero-content {
        width: 85%;
        height: 80%;
        max-height: 600px;
    }

    .hero-content {
        padding: 55px 75px 50px 75px;
    }

    .hero-content h1 {
        font-size: 30px;
        margin-bottom: 24px;
    }

    .search-container {
        max-width: 460px;
        margin-bottom: 24px;
    }

    .search-input {
        padding: 12px 17px;
        font-size: 14px;
    }

    .search-btn {
        padding: 12px 17px;
    }

    .popular-searches {
        margin-bottom: 24px;
    }

    .popular-searches p:first-child,
    .tags {
        font-size: 16px;
    }

    .toggle-wrapper {
        max-width: 360px;
        margin-top: 0px;
    }

    .toggle-btn {
        padding: 11px 0;
        font-size: 13px;
    }
}

@media (max-width: 1000px) {
    .nav-container {
        gap: 30px;
    }

    .nav-links {
        gap: 30px;
    }

    .nav-links a:nth-child(3) {
        opacity: 0;
        max-width: 0;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .hero {
        min-height: 600px;
    }

    .hero-video,
    .hero-overlay,
    .hero-content {
        width: 87%;
        height: 78%;
        max-height: 550px;
    }

    .hero-content {
        padding: 50px 70px 45px 70px;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 22px;
    }

    .search-container {
        max-width: 430px;
        margin-bottom: 22px;
    }

    .search-input {
        padding: 11px 16px;
        font-size: 13.5px;
    }

    .search-btn {
        padding: 11px 16px;
    }

    .popular-searches {
        margin-bottom: 22px;
    }

    .popular-searches p:first-child,
    .tags {
        font-size: 15.5px;
    }

    .toggle-wrapper {
        max-width: 340px;
        margin-top: 0px;
    }

    .toggle-btn {
        padding: 10px 0;
        font-size: 12.5px;
    }

    .potential-section {
        padding: 120px 50px;
    }

    .potential-container {
        grid-template-columns: 1fr;
        max-width: 700px;
        gap: 50px;
    }

    .potential-illustration {
        max-width: 550px;
    }

    .potential-right {
        align-items: center;
        max-width: 650px;
        margin: 0 auto;
    }

    .potential-title {
        text-align: center;
        font-size: 42px;
        margin-bottom: 42px;
    }

    .feature-icon {
        width: 125px;
        height: 125px;
    }

    .feature-item:nth-child(3) .feature-icon {
        margin-left: 6px;
    }

    .feature-heading {
        font-size: 18px;
    }

    .feature-description {
        font-size: 13.5px;
    }

    .join-btn {
        align-self: center;
    }
}

@media (max-width: 992px) {
    .solutions-section {
        padding: 16px 5% 70px 5%;
    }

    .section-title {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .job-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .job-category-box {
        padding: 40px 30px;
        min-height: 130px;
    }

    .job-title {
        font-size: 20px;
    }

    .content-wrapper-single {
        grid-template-columns: 1fr;
        padding: 0 60px;
        gap: 50px;
    }

    .text-komisyon-content {
        text-align: center;
        padding-right: 0;
        order: 1;
        transform: scale(1);
        margin-top: 0;
    }

    .text-komisyon-content.animate {
        transform: scale(1) translateY(0);
    }

    .content-wrapper-single img {
        margin: 0 auto;
        max-width: 500px;
        order: 2;
    }
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .step-card {
        width: 80%;
        max-width: 450px;
    }
}

@media (max-width: 880px) {
    .nav-container {
        padding: 0 30px;
        gap: 25px;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-links a:nth-child(2) {
        opacity: 0;
        max-width: 0;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .logo {
        font-size: 18px;
    }

    .btn-login,
    .btn-register {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero {
        min-height: 550px;
        padding: 60px 40px;
    }

    .hero-video,
    .hero-overlay,
    .hero-content {
        width: 90%;
        height: 75%;
        max-height: 500px;
    }

    .hero-content {
        padding: 45px 65px 40px 65px;
    }

    .hero-content h1 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .search-container {
        max-width: 400px;
        margin-bottom: 20px;
    }

    .search-input {
        padding: 10px 15px;
        font-size: 13px;
    }

    .search-btn {
        padding: 10px 15px;
    }

    .search-btn svg {
        width: 19px;
        height: 19px;
    }

    .popular-searches {
        margin-bottom: 20px;
    }

    .popular-searches p:first-child,
    .tags {
        font-size: 15px;
    }

    .toggle-wrapper {
        max-width: 320px;
        margin-top: 0px;
    }

    .toggle-btn {
        padding: 9px 0;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .search-container {
        max-width: 370px;
        margin-bottom: 18px;
    }

    .search-input {
        padding: 9px 14px;
        font-size: 12.5px;
    }

    .search-btn {
        padding: 9px 14px;
    }

    .popular-searches {
        margin-bottom: 18px;
    }

    .popular-searches p:first-child,
    .tags {
        font-size: 14.5px;
    }

    .toggle-wrapper {
        max-width: 300px;
        margin-top: 0px;
    }

    .toggle-btn {
        padding: 8px 0;
        font-size: 11.5px;
    }

    .potential-section {
        padding: 100px 40px;
    }

    .potential-container {
        max-width: 600px;
        gap: 45px;
    }

    .potential-illustration {
        max-width: 480px;
    }

    .potential-title {
        font-size: 38px;
        margin-bottom: 38px;
    }

    .feature-icon {
        width: 120px;
        height: 120px;
    }

    .feature-item:nth-child(3) .feature-icon {
        margin-left: 6px;
    }

    .feature-heading {
        font-size: 17px;
    }

    .feature-description {
        font-size: 13px;
    }

    .feature-item {
        margin-bottom: 32px;
    }

    .solutions-section {
        padding: 14px 5% 60px 5%;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 45px;
    }

    .job-categories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .job-category-box {
        padding: 38px 28px;
        min-height: 120px;
    }

    .job-title {
        font-size: 20px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        padding: 0 40px;
        gap: 50px;
        max-width: 600px;
    }

    .image-section img {
        max-width: 400px;
        margin: 0 auto;
    }

    .text-content {
        padding-left: 0;
        max-width: 500px;
        margin: 0 auto;
    }

    .text-content h2 {
        text-align: center;
    }

    .text-alaninda, .text-uzman {
        font-size: 1.6rem;
    }

    .text-freelancer, .text-iki {
        font-size: 1.6rem;
    }

    .text-content ul {
        margin-top: 35px;
        text-align: center;
    }

    .text-content ul li {
        font-size: 1.05rem;
        margin-bottom: 20px;
        text-align: left;
        display: inline-block;
        width: 100%;
        max-width: 400px;
    }

    .content-wrapper-single {
        padding: 0 40px;
    }

    .komisyon-zero, .komisyon-text, .geliriniz-text, .sizde-text, .kalsin-text {
        font-size: 2.2rem;
    }

    .text-komisyon-content ul li {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .content-wrapper-single img {
        max-width: 400px;
    }
}

@media (max-width: 720px) {
    .nav-links a:nth-child(1) {
        opacity: 0;
        max-width: 0;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .hero {
        min-height: 500px;
        padding: 50px 30px;
    }

    .hero-video,
    .hero-overlay,
    .hero-content {
        width: 92%;
        height: 72%;
        max-height: 450px;
    }

    .hero-content {
        padding: 40px 60px 35px 60px;
    }

    .hero-content h1 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .search-container {
        max-width: 340px;
        margin-bottom: 16px;
    }

    .search-input {
        padding: 8px 13px;
        font-size: 12px;
    }

    .search-btn {
        padding: 8px 13px;
    }

    .popular-searches {
        margin-bottom: 16px;
    }

    .popular-searches p:first-child,
    .tags {
        font-size: 14px;
    }

    .toggle-wrapper {
        max-width: 280px;
        margin-top: 0px;
    }

    .toggle-btn {
        padding: 8px 0;
        font-size: 11px;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 450px;
        padding: 40px 25px;
    }

    .hero-video,
    .hero-overlay,
    .hero-content {
        width: 94%;
        height: 70%;
        max-height: 400px;
    }

    .hero-content {
        padding: 35px 55px 30px 55px;
    }

    .hero-content h1 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .search-container {
        max-width: 310px;
        margin-bottom: 14px;
    }

    .search-input {
        padding: 8px 12px;
        font-size: 11.5px;
    }

    .search-btn {
        padding: 8px 12px;
    }

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

    .popular-searches {
        margin-bottom: 14px;
    }

    .popular-searches p:first-child,
    .tags {
        font-size: 13.5px;
    }

    .toggle-wrapper {
        max-width: 260px;
        margin-top: 0px;
    }

    .toggle-btn {
        padding: 7px 0;
        font-size: 10.5px;
    }

    .potential-section {
        padding: 90px 30px;
    }

    .potential-container {
        max-width: 500px;
        gap: 40px;
    }

    .potential-illustration {
        max-width: 420px;
    }

    .potential-title {
        font-size: 34px;
        margin-bottom: 35px;
    }

    .feature-icon {
        width: 115px;
        height: 115px;
    }

    .feature-item:nth-child(3) .feature-icon {
        margin-left: 5px;
    }

    .feature-heading {
        font-size: 16px;
    }

    .feature-description {
        font-size: 12.5px;
    }

    .join-btn {
        padding: 14px 32px;
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .nasil-calisir-section {
        padding: 80px 20px;
    }

    .nasil-calisir-section .section-title {
        font-size: 42px;
        margin-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
        gap: 20px;
    }

    .logo {
        font-size: 17px;
    }

    .btn-login,
    .btn-register {
        padding: 8px 15px;
        font-size: 13px;
    }

    .hero {
        min-height: 400px;
        padding: 30px 15px;
    }

    .hero-video,
    .hero-overlay,
    .hero-content {
        width: 96%;
        height: 68%;
        max-height: 350px;
    }

    .hero-content {
        padding: 30px 50px 25px 50px;
    }

    .hero-content h1 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .search-container {
        max-width: 280px;
        margin-bottom: 12px;
    }

    .search-input {
        padding: 7px 11px;
        font-size: 11px;
    }

    .search-btn {
        padding: 7px 11px;
    }

    .search-btn svg {
        width: 16px;
        height: 16px;
    }

    .popular-searches {
        margin-bottom: 12px;
    }

    .popular-searches p:first-child,
    .tags {
        font-size: 13px;
    }

    .toggle-wrapper {
        max-width: 240px;
        margin-top: 0px;
    }

    .toggle-btn {
        padding: 6px 0;
        font-size: 10px;
    }

    .potential-section {
        padding: 80px 25px;
    }

    .potential-container {
        max-width: 400px;
        gap: 35px;
    }

    .potential-illustration {
        max-width: 350px;
    }

    .potential-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .feature-icon {
        width: 110px;
        height: 110px;
    }

    .feature-item:nth-child(3) .feature-icon {
        margin-left: 5px;
    }

    .feature-heading {
        font-size: 15px;
    }

    .feature-description {
        font-size: 12px;
    }

    .feature-item {
        margin-bottom: 28px;
    }

    .join-btn {
        padding: 12px 28px;
        font-size: 16px;
    }

    .solutions-section {
        padding: 12px 5% 50px 5%;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .job-category-box {
        padding: 35px 25px;
        min-height: 110px;
    }

    .job-title {
        font-size: 19px;
    }

    .image-section {
        padding: 60px 1.5rem;
    }

    .content-wrapper {
        padding: 0 25px;
        gap: 40px;
        max-width: 400px;
    }

    .image-section img {
        max-width: 280px;
    }

    .text-content {
        max-width: 350px;
    }

    .text-alaninda, .text-uzman {
        font-size: 1.3rem;
    }

    .text-freelancer, .text-iki {
        font-size: 1.3rem;
    }

    .text-content ul {
        margin-top: 30px;
    }

    .text-content ul li {
        font-size: 0.95rem;
        margin-bottom: 18px;
        max-width: 300px;
    }

    .content-wrapper-single {
        padding: 0 25px;
        gap: 40px;
    }

    .komisyon-zero, .komisyon-text, .geliriniz-text, .sizde-text, .kalsin-text {
        font-size: 1.8rem;
    }

    .text-komisyon-content ul li {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .content-wrapper-single img {
        max-width: 320px;
    }
}

@media (max-width: 380px) {
    .solutions-section {
        padding: 10px 5% 45px 5%;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .job-category-box {
        padding: 32px 22px;
    }

    .job-title {
        font-size: 18px;
    }
}



.footer {
    width: calc(100% - 80px);
    min-height: auto;
    height: auto;
    background-color: #000000;
    border-radius: 30px;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 80px;
}

.footer-content {
    display: flex;
    gap: clamp(15px, 2.5vw, 60px);
    padding: 60px clamp(20px, 4vw, 80px) 40px clamp(20px, 4vw, 80px);
    position: relative;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.footer-column {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(11px, 1.3vw, 18px);
    color: #FFFFFF;
    margin-bottom: 35px;
    text-decoration: none;
    border-bottom: none;
}

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

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

.footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(12px, 1.2vw, 15px);
    color: #FFFFFF;
    text-decoration: none;
    outline: none;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-divider {
    width: 3px;
    background-color: #FFFFFF;
    margin: 0 20px;
    align-self: stretch;
    border-radius: 2px;
    min-height: 400px;
}

.footer-company-info {
    margin-top: 60px;
    padding-top: 30px;
}

.footer-company-info p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    opacity: 0.6;
    margin: 6px 0;
    line-height: 1.4;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    position: absolute;
    bottom: 37px;
    left: 0;
    right: 0;
}

.footer-social-section {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-social-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    margin: 0;
}

.footer-social-icons {
    display: flex;
    gap: 25px;
    align-items: center;
}

.footer-social-icons a {
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icons svg {
    width: 24px;
    height: 24px;
}

.footer-social-icons a:hover {
    opacity: 0.7;
}

.footer-contact {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    margin-left: 50px;
}

.footer-contact:hover {
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .footer {
        width: calc(100% - 40px);
        padding-bottom: 30px;
    }
    .footer-content {
        padding: 30px 0 20px 0;
        gap: 0;
        flex-direction: column;
    }
    .footer-column {
        min-width: unset;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    .footer-column.footer-column-last {
        border-bottom: none;
    }
    .footer-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 30px;
        margin-bottom: 0;
        cursor: pointer;
        font-size: 16px;
    }
    .footer-title::after {
        content: '›';
        font-size: 22px;
        transition: transform 0.3s ease;
        display: inline-block;
        transform: rotate(90deg);
    }
    .footer-title.open::after {
        transform: rotate(270deg);
    }
        .footer-links {
        display: block;
        max-height: 0;
        overflow: hidden;
        padding: 0 30px;
        opacity: 0;
        transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s ease,
                    padding 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .footer-links a {
        font-size: 14px;
    }
    .footer-links li {
        margin-bottom: 32px;
    }
        .footer-links.open {
        max-height: 600px;
        opacity: 1;
        padding: 10px 30px 30px 30px;
    }
    .footer-divider {
        display: none;
    }
    .footer-company-info {
        margin-top: 0;
        padding: 20px 30px;
    }
    .footer-bottom {
        position: relative;
        bottom: unset;
        padding: 20px 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .footer-social-section {
        gap: 20px;
        flex-wrap: wrap;
    }
    .footer-contact {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .footer {
        width: calc(100% - 30px);
        border-radius: 20px;
        padding-bottom: 160px;
    }
    .footer-content {
        padding: 40px 30px 30px 30px;
        gap: 30px;
        justify-content: flex-start;
    }
    .footer-column {
        min-width: 140px;
        text-align: left;
    }
    .footer-bottom {
        padding: 0 30px;
        flex-direction: column;
        align-items: flex-start;
        bottom: 25px;
        gap: 15px;
    }
    .footer-social-section {
        gap: 20px;
    }
    .footer-contact {
        margin-left: 0;
    }
    .footer-company-info {
        margin-top: 100px;
    }
}

@media (max-width: 480px) {
    .footer {
        width: calc(100% - 20px);
        border-radius: 15px;
    }
    .footer-content {
        padding: 30px 20px 20px 20px;
        gap: 25px;
    }
    .footer-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .footer-links a {
        font-size: 13px;
    }
    .footer-links li {
        margin-bottom: 22px;
    }
    .footer-social-icons {
        gap: 15px;
    }
}

/* Third level submenu */
.dropdown-submenu-level3 {
    position: absolute !important;
    top: 0px !important;
    bottom: auto !important;
    left: calc(100% + 10px) !important;
    background-color: white;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    padding: 20px 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    width: 250px;
    height: 450px;
    z-index: 1002;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.dropdown-submenu-level3::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -50px;
    width: 70px;
    height: calc(100% + 20px);
    background: transparent;
    pointer-events: auto;
}

.dropdown-submenu li {
    position: relative;
}
.dropdown-submenu li::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    width: 15px;
    height: 100%;
    background: transparent;
}

.dropdown-submenu li:hover .dropdown-submenu-level3 {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-submenu-level3 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-submenu-level3 li {
    padding: 12px 0;
    font-family: 'Comfortaa', cursive;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: color 0.2s ease;
}

.dropdown-submenu-level3 li:hover {
    color: #4EF631;
}

/* Scrollable submenu */
.dropdown-submenu.scrollable-submenu {
    overflow: visible !important;
}

.dropdown-submenu.scrollable-submenu > ul {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 410px;
    margin-right: -30px;
    padding-right: 36px;
}

.dropdown-submenu.scrollable-submenu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -50px;
    width: 70px;
    height: calc(100% + 20px);
    background: transparent;
    pointer-events: auto;
}

.dropdown-submenu.scrollable-submenu li {
    position: relative;
}

.dropdown-submenu.scrollable-submenu li:hover .dropdown-submenu-level3 {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-submenu.scrollable-submenu > ul::-webkit-scrollbar {
    width: 6px;
}

.dropdown-submenu.scrollable-submenu > ul::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.dropdown-submenu.scrollable-submenu > ul::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.dropdown-submenu.scrollable-submenu > ul::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.dropdown-submenu li {
    white-space: normal;
    line-height: 1.4;
}

.scrollable-level3 {
    max-height: 400px;
    overflow: visible !important;
}
.scrollable-level3 > ul {
    max-height: 360px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px;
}

/* ===== IMMERSIVE SECTION ===== */
#immersive-section {
    position: relative;
    background: #0a0a0f;
    overflow: hidden;
    cursor: none;
}

#immersive-cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    opacity: 0;
    transition: opacity 0.3s, width 0.3s, height 0.3s, background 0.3s;
}

#immersive-cursor.cursor-ring {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.6);
}

#immersive-cursor.visible {
    opacity: 1;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.immersive-panel {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 10vw;
    z-index: 1;
    overflow: hidden;
}

.immersive-bg-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: transform 0.15s linear;
}

.immersive-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.immersive-content-right {
    margin-left: auto;
    text-align: right;
    position: relative;
    z-index: 3;
}

.immersive-content-right .imm-features {
    align-items: flex-end;
}

.immersive-content-right .imm-feat {
    flex-direction: row-reverse;
    transform: translateX(24px);
}

.imm-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    margin-top: 12px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.imm-heading {
    font-family: 'Montserrat', 'Comfortaa', sans-serif;
    font-size: clamp(32px, 4vw, 64px);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 56px;
    letter-spacing: -1px;
    text-decoration: none;
}

.imm-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.imm-accent-blue   { color: #3b82f6; }
.imm-accent-yellow { color: #f59e0b; }
.imm-accent-green  { color: #10b981; }
.imm-accent-purple { color: #a855f7; }

.imm-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.imm-feat {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    cursor: default;
}

.imm-feat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.25);
    min-width: 24px;
}

.imm-feat-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
    line-height: 1.5;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 16px;
    transition: color 0.3s, border-color 0.3s;
}

.imm-feat:hover .imm-feat-text {
    color: rgba(255,255,255,0.95);
    border-left-color: rgba(255,255,255,0.5);
}

.imm-floating-badge {
    position: absolute;
    right: 10vw;
    bottom: 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: scale(0.85) translateY(20px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
    pointer-events: none;
}

#panel-2 .imm-floating-badge {
    right: auto;
    left: 10vw;
}

.badge-number {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: clamp(56px, 7vw, 96px);
    font-weight: 700;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    letter-spacing: -4px;
}

.badge-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.15);
    margin-top: -8px;
}

.imm-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    margin: 0 10vw;
    position: relative;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    isolation: isolate;
}

.immersive-panel.revealed .imm-eyebrow {
    opacity: 1;
    transform: translateY(0);
}

.immersive-panel.revealed .imm-word {
    opacity: 1;
    transform: translateY(0);
}

.immersive-panel.revealed .imm-feat {
    opacity: 1;
    transform: translateX(0);
}

.immersive-panel.revealed .imm-floating-badge {
    opacity: 1;
    transform: scale(1) translateY(0);
}
@keyframes badgePulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.12); }
    100% { transform: scale(1); }
}