/* ====================================
   HEADER DROPDOWN MENU STYLES
   ==================================== */

.site-header {
    position: relative;
    z-index: 1000;
}

.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
}

.dropdown-trigger:hover {
    background: rgba(139, 92, 246, 0.1);
}

.dropdown-trigger svg {
    transition: transform 0.3s ease;
}

.nav-dropdown.active .dropdown-trigger svg {
    transform: rotate(180deg);
}

.dropdown-menu2 {
    position: absolute;
    top: calc(100% + 5px);
    background: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    padding: 19px;
    min-width: 620px;
    box-shadow: 0 25px 70px rgba(139, 92, 246, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    pointer-events: none;
}

/* Hover köprüsü - menü ile trigger arasındaki boşluğu doldurur */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
    z-index: 9998;
}

.nav-dropdown.active .dropdown-menu2,
.nav-dropdown:hover .dropdown-menu2 {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 8px);
    pointer-events: auto;
}

.nav-dropdown.active .dropdown-trigger svg,
.nav-dropdown:hover .dropdown-trigger svg {
    transform: rotate(180deg);
}

.dropdown-header {
    color: #6B46C1;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 5px;
    border-radius: 12px;
    color: #1F2937;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-item:hover {
    background: #E0CEF6;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.2);
}

.dropdown-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    flex-shrink: 0;
}

.dropdown-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.dropdown-item span {
    font-size: 15px;
    font-weight: 600;
    color: #1F2937;
}

/* ====================================
   NEW HERO SECTION STYLES
   ==================================== */

.hero-section-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero-background-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 25%, #6D28D9 50%, #5B21B6 75%, #4C1D95 100%);
    z-index: -1;
}

.hero-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-content {
    color: white;
}

.hero-main-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    background: linear-gradient(to right, #FFFFFF, #E9D5FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px 0;
    background: linear-gradient(to right, #FFFFFF, #E9D5FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 21.2px;
    font-weight: 400;
    margin: 20px 0 10px 0;
      line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
}

.hero-description {
    font-size: 21.2px;
    margin: 0 0 30px 0;
        font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.hero-platform-info {
    margin: 30px 0;
}

.platform-users {
    font-size: 16px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.platform-stores {
    font-size: 18px;
    margin: 5px 0 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.hero-app-buttons {
    display: flex;
    gap: 16px;
    margin: 30px 0;
}



.hero-universities-badge {
    margin-top: 40px;
    position: relative;
}

.universities-text {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: white;
    position: relative;
    display: inline-block;
}

.universities-underline {
    position: absolute;
    top: 30px;
    left:50px;
    width: 100%;
}

.university-avatars-list {
    display: flex;
    margin-top: 20px;
    margin-left: 15px;
}

.university-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    margin-left: -15px;
    align-items: center;
    justify-content: center;
}

.university-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-phone-mockups {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup-container {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.phone-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 0px;
    left: 50%;
      transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}


.mouse-scroll-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mouse-scroll-btn {
    width: 20px;
    height:32px;
    border: 2px solid rgba(0, 0, 0, 1);
    border-radius: 12px;
    display: block;
}

.mouse-scroll-btn::before {
    content: '';
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-animation 2.5s infinite;
}

@keyframes scroll-animation {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.scroll-text {
    color: black;
    font-size: 14px;
    font-weight: 500;
        z-index: 2;
}

/* ====================================
   RESPONSIVE STYLES
   ==================================== */

@media (max-width: 1024px) {
    .dropdown-menu2 {
        min-width: 560px;
    }
}
@media (max-width: 968px) {
    /* Dropdown Container - Mobilde */
    .nav-dropdown {
        display: block;
        width: 100%;
    }
    
    /* Dropdown Trigger - Mobilde */
    .dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 12px 16px;
    }
    
    /* Dropdown Menu - Mobilde */
    .dropdown-menu2 {
        position: static;
        transform: none;
        width: 100%;
        min-width: auto;
        margin-top: 0;
        padding: 0;
        background: #f8f9fa;
        border-radius: 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        border-radius: 8px;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }
    
    /* Aktif durumda dropdown açık */
    .nav-dropdown.active .dropdown-menu2 {
        max-height: 600px;
        padding: 16px;
        margin-top: 8px;
    }
    
    /* Dropdown Header - Mobilde gizle */
    .dropdown-header {
        display: none;
    }
    
    /* Dropdown Grid - Mobilde 2 sütun */
    .dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    /* Dropdown Item - Mobilde */
    .dropdown-item {
        padding: 12px 8px;
        background: white;
        border-radius: 8px;
    }
    
    .dropdown-item:active {
        background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    }
    
    /* Dropdown Icon - Mobilde daha küçük */
    .dropdown-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .dropdown-item span {
        font-size: 13px;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 576px) {
    .dropdown-grid {
        gap: 8px;
    }
    
    .dropdown-item {
        padding: 10px 6px;
    }
    
    .dropdown-icon {
        width: 36px;
        height: 36px;
    }
    
    .dropdown-item span {
        font-size: 12px;
    }
}
