body {
    font-family: 'Outfit', sans-serif;
}

/* Giriş Yap Buton Hover Animasyonu */
.login-button {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    border: none;
}

.login-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.login-button:hover::before {
    left: 100%;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(21, 101, 216, 0.3);
    background-color: #1657c9;
}

.login-button:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(21, 101, 216, 0.2);
}

/* Bütün butonlara hover efekti uygula */
.btn-hover {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.btn-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.btn-hover:hover::before {
    left: 100%;
}

.btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(21, 101, 216, 0.3);
}

.btn-hover:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(21, 101, 216, 0.2);
}

/* Fiyatlandırma kartı hover efekti */
.pricing-card {
    transition: all 0.4s ease-in-out;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: #1e70f8 !important;
    z-index: 10;
}

.pricing-card:hover .pricing-title {
    color: #1e70f8;
}

.pricing-card:hover .btn-pricing-outlined {
    background-color: #1e70f8;
    color: white;
}

.pricing-card:hover .btn-pricing-primary {
    background-color: #1657c9;
}

/* Menü hover animasyonu */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1e70f8;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #1e70f8;
}

/* Logo animasyonu */
.logo {
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Hero bölümü için arka plan ve stil */
.hero-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1521017432531-fbd92d768814?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2340&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.demo-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.demo-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.demo-button:hover::before {
    left: 100%;
}

.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(21, 101, 216, 0.3);
}

.solutions-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.solutions-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hero video */
.hero-video {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

/* Scroll durumunda navbar renk değişimi */
.navbar {
    transition: all 0.3s ease;
}

.navbar-transparent {
    background-color: transparent;
    box-shadow: none;
}

.navbar-solid {
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* En üstteyken navbar link rengi */
.navbar-transparent .nav-link {
    color: white;
}

/* En üstteyken logo rengi */
.navbar-transparent .logo-text {
    color: white;
}

/* Dropdown menü stilleri */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 8px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform-origin: top center;
    transform: translateX(-50%) translateY(10px) scale(0.95);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 20;
    padding: 0.5rem 0;
    margin-top: 0.25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: white;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item {
    display: block;
    padding: 0.6rem 1.5rem;
    color: #4b5563;
    transition: all 0.2s ease;
    text-align: center;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: #f3f4f6;
    color: #1e70f8;
}

/* Mobil dropdown menü */
.mobile-dropdown-menu {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    padding-left: 1rem;
}

.mobile-dropdown-menu.open {
    height: auto;
}

/* Hero başlık stili - ölçekleri küçülttüm */
.hero-heading {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.5rem;
    }
}

/* Özellik kartları için hover efekti */
.feature-card {
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 112, 248, 0.05) 0%, rgba(30, 112, 248, 0.01) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(30, 112, 248, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    transition: all 0.3s ease-in-out;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15);
    background-color: rgba(30, 112, 248, 0.15);
}

.feature-card:hover h3 {
    color: #1e70f8;
}