/* Custom Styles */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #0A0118, #1A0B3E);
    color: white;
}

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

/* Navbar Styles */
nav {
    transition: all 0.3s ease;
}

/* Form Styles */
input, textarea {
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* Button Hover Effects */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Section Transitions */
section {
    transition: all 0.3s ease;
}

/* Custom Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 1s ease forwards;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-text {
        font-size: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Header Stilleri */
header {
    background: #0A0118 !important;
    border-bottom: 1px solid #1A0B3E;
    height: 80px;
}

header * {
    backdrop-filter: none !important;
}

/* Mobil Menü Stilleri */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 1rem;
    z-index: 50;
    background: #0A0118;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.hidden {
    display: none;
}

.mobile-menu:not(.hidden) {
    display: flex;
}

.mobile-nav-link {
    display: block;
    padding: 1rem;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #7000FF;
}

.btn-primary-mobile {
    background: linear-gradient(to right, #4F46E5, #7C3AED, #2563EB);
    border-radius: 9999px;
    margin-top: 1rem;
    text-align: center;
    padding: 0.75rem 1.5rem;
    color: white;
    text-decoration: none;
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu,
    .mobile-menu-button {
        display: none;
    }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(90deg, #7000FF, #FF00C7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Kart Stilleri */
.feature-card {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(112, 0, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

/* Buton Stilleri */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: bold;
    color: white;
    transition: all 0.3s ease;
    border-radius: 9999px;
    overflow: hidden;
    isolation: isolate;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #4F46E5, #7C3AED, #2563EB);
    border-radius: inherit;
    z-index: -2;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #00A3FF, #7000FF, #FF00C7);
    border-radius: inherit;
    filter: blur(15px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.btn-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: bold;
    color: white;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.btn-secondary:hover::before {
    background: rgba(255, 255, 255, 0.2);
}

.btn-secondary span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

/* Arka Plan Desenleri */
.hero-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* İstatistik Kartları */
.stats-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.stats-card:hover {
    transform: translateZ(20px) rotateX(5deg);
}

/* Referans Kartları */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(112, 0, 255, 0.2);
}

/* Partner Logoları */
.partner-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    flex: 0 0 auto;
    width: 250px;
    padding: 1.5rem;
    margin: 0 1rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06),
                inset 0 0 20px rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    position: relative;
}

.partner-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.partner-logo:hover::before {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.3));
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Zaman Çizelgesi */
.timeline-item {
    position: relative;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #2563eb, #1e40af);
}

.timeline-dot {
    position: absolute;
    left: -0.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

/* Partner Slider */
.partners-container {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.partners-slider {
    display: flex;
    transition: transform 0.5s ease;
    cursor: grab;
    animation: scroll 30s linear infinite;
}

.partners-slider:hover {
    animation-play-state: paused;
}

.partners-track {
    display: flex;
    width: calc(300px * 12);
    gap: 2rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 6));
    }
}

.partners-slider:active {
    cursor: grabbing;
}

.partners-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.partners-nav:hover {
    background: rgba(255, 255, 255, 1);
}

.partners-nav.prev {
    left: 1rem;
}

.partners-nav.next {
    right: 1rem;
}

/* Bölüm Başlıkları */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #7000FF, #FF00C7);
    border-radius: 3px;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 800px;
    margin: 1rem auto 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Bölüm Arka Planları */
.hero-section {
    background: linear-gradient(to bottom right, #0A0118, #1A0B3E, #1F0C4C);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(147,51,234,0.15) 0%, transparent 70%);
}

.stats-section {
    background: linear-gradient(to bottom right, #1A0B3E, #1F0C4C);
}

.why-choose-section {
    background: linear-gradient(to bottom right, #1F0C4C, #2A1163);
}

.benefits-section {
    background: linear-gradient(to bottom right, #2A1163, #1F0C4C);
}

.platform-section {
    background: linear-gradient(to bottom right, #1F0C4C, #1A0B3E);
}

.how-it-works-section {
    background: linear-gradient(to bottom right, #1A0B3E, #0A0118);
}

.testimonials-section {
    background: linear-gradient(to bottom right, #0A0118, #1A0B3E);
}

.partners-section {
    background: linear-gradient(to bottom right, #1A0B3E, #1F0C4C);
}

.cta-section {
    background: linear-gradient(to bottom right, #1F0C4C, #0A0118);
}

/* Metin Renkleri */
.text-gray-600 {
    color: rgba(255, 255, 255, 0.7);
}

/* Ürün Sayfası Stilleri */
.urun-hero {
    background: linear-gradient(135deg, #1E0B41 0%, #2A1155 100%);
    position: relative;
    overflow: hidden;
}

.urun-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.svg') repeat;
    opacity: 0.1;
    z-index: 1;
}

.urun-hero .gradient-text {
    background: linear-gradient(90deg, #7000FF 0%, #FF00FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.urun-benefits {
    background: linear-gradient(180deg, #1E0B41 0%, #2A1155 100%);
}

.urun-capabilities {
    background: linear-gradient(180deg, #2A1155 0%, #1A0A35 100%);
}

.urun-platform {
    background: linear-gradient(180deg, #1A0A35 0%, #150829 100%);
}

.urun-cta {
    background: linear-gradient(180deg, #150829 0%, #1E0B41 100%);
}

.urun-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.urun-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.urun-icon {
    color: #7000FF;
}

.urun-text {
    color: rgba(255, 255, 255, 0.8);
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #2A1155 0%, #1A0A35 100%);
    position: relative;
}

/* Capabilities Section */
.capabilities-section {
    background: linear-gradient(135deg, #1A0A35 0%, #150829 100%);
    position: relative;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #150829 0%, #1E0B41 100%);
    position: relative;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(112, 0, 255, 0.3);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #7000FF 0%, #FF00FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Button Styles */
.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(90deg, #7000FF 0%, #FF00FF 100%);
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(112, 0, 255, 0.3);
}

/* Footer Stilleri */
footer {
    background: #2D2D3A !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #2D2D3A, #1F1F2E);
    opacity: 0.95;
    z-index: 0;
}

footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 200px;
    opacity: 0.1;
    z-index: 0;
}

footer > div {
    position: relative;
    z-index: 1;
}

footer .border-t {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

footer .text-gray-300 {
    color: rgba(255, 255, 255, 0.7) !important;
}

footer .text-gray-400 {
    color: rgba(255, 255, 255, 0.5) !important;
} 