/* Custom Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

/* Full page sections */
.h-screen {
    height: 100vh;
    min-height: 100vh;
}

.min-h-screen {
    min-height: 100vh;
}

/* Slider Styles */
.slider-section {
    height: 100vh;
    margin-top: 30px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
    visibility: visible;
}

.slide.prev {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
    visibility: hidden;
}

.slide:first-child {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
    visibility: visible;
}

/* Slider Navigation */
.slider-nav {
    cursor: pointer;
    transition: all 0.3s ease;
    width: 16px;
    height: 16px;
    position: relative;
    z-index: 30;
}

.slider-nav.active {
    background-color: rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.2);
}

.slider-nav:hover {
    background-color: rgba(255, 255, 255, 0.6) !important;
    transform: scale(1.1);
}

/* Parallax Effect */
.contact-parallax {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slider-section {
        height: 80vh;
    }
    
    .slider-container {
        height: 100%;
    }
    
    .slide {
        height: 100%;
    }
    
    .slider-nav {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 768px) {
    .slider-section {
        height: 70vh;
    }
    
    .slider-container {
        height: 100%;
    }
    
    .slide {
        height: 100%;
    }
    
    .slider-nav {
        width: 12px;
        height: 12px;
    }
    
    .slide h1 {
        font-size: 3rem !important;
        line-height: 1.2;
    }
    
    .slide p {
        font-size: 1.25rem !important;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Hedeflerimiz sayfa responsive */
    h1 {
        font-size: 3rem !important;
    }
    
    h2 {
        font-size: 2.5rem !important;
    }
    
    h3 {
        font-size: 1.25rem !important;
    }
    
    h4 {
        font-size: 1.125rem !important;
    }
    
    p {
        font-size: 1rem !important;
    }
    
    .text-xl {
        font-size: 1.125rem !important;
    }
    
    .text-2xl {
        font-size: 1.25rem !important;
    }
    
    .text-4xl {
        font-size: 2.25rem !important;
    }
    
    .text-5xl {
        font-size: 3rem !important;
    }
    
    .text-6xl {
        font-size: 3.75rem !important;
    }
    
    /* Görseller responsive */
    img {
        max-width: 100%;
        height: auto;
    }
    
    .w-16 {
        width: 3rem !important;
        height: 3rem !important;
    }
    
    /* Butonlar responsive */
    .py-4 {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }
    
    .px-8 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    
    button, .btn, a[class*="bg-blue"], a[class*="border-2"] {
        font-size: 0.875rem !important;
    }
    
    /* Padding ve Margin responsive */
    .py-20 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .py-12 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .pt-24 {
        padding-top: 4rem !important;
    }
    
    .pb-12 {
        padding-bottom: 2rem !important;
    }
    
    .mb-16 {
        margin-bottom: 2.5rem !important;
    }
    
    .mb-12 {
        margin-bottom: 2rem !important;
    }
    
    .mb-8 {
        margin-bottom: 1.5rem !important;
    }
    
    .mb-6 {
        margin-bottom: 1rem !important;
    }
    
    .mt-8 {
        margin-top: 1.5rem !important;
    }
    
    .mt-6 {
        margin-top: 1rem !important;
    }
    
    .gap-16 {
        gap: 2.5rem !important;
    }
    
    .gap-8 {
        gap: 1.5rem !important;
    }
    
    .gap-6 {
        gap: 1rem !important;
    }
    
    .space-y-6 > * + * {
        margin-top: 1rem !important;
    }
}

@media (max-width: 640px) {
    .slider-section {
        height: 60vh;
    }
    
    .slider-container {
        height: 100%;
    }
    
    .slide {
        height: 100%;
    }
    
    .slider-nav {
        width: 10px;
        height: 10px;
    }
    
    .slide h1 {
        font-size: 2.5rem !important;
    }
    
    .slide p {
        font-size: 1.125rem !important;
    }
    
    nav .hidden {
        display: none !important;
    }
    
    /* Hedeflerimiz sayfa responsive - küçük ekran */
    h1 {
        font-size: 2.5rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    h3 {
        font-size: 1.125rem !important;
    }
    
    h4 {
        font-size: 1rem !important;
    }
    
    p {
        font-size: 0.875rem !important;
    }
    
    .text-xl {
        font-size: 1rem !important;
    }
    
    .text-2xl {
        font-size: 1.125rem !important;
    }
    
    .text-4xl {
        font-size: 1.875rem !important;
    }
    
    .text-5xl {
        font-size: 2.25rem !important;
    }
    
    .text-6xl {
        font-size: 2.5rem !important;
    }
    
    /* Görseller ve iconlar küçük ekran */
    .w-16 {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }
    
    .w-10 {
        width: 2rem !important;
        height: 2rem !important;
    }
    
    /* Butonlar küçük ekran */
    .py-4 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    
    .px-8 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    button, .btn, a[class*="bg-blue"], a[class*="border-2"] {
        font-size: 0.75rem !important;
    }
    
    /* Padding ve Margin küçük ekran */
    .py-20 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .py-12 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .pt-24 {
        padding-top: 3rem !important;
    }
    
    .pb-12 {
        padding-bottom: 1.5rem !important;
    }
    
    .mb-16 {
        margin-bottom: 2rem !important;
    }
    
    .mb-12 {
        margin-bottom: 1.5rem !important;
    }
    
    .mb-8 {
        margin-bottom: 1rem !important;
    }
    
    .mb-6 {
        margin-bottom: 0.75rem !important;
    }
    
    .mt-8 {
        margin-top: 1rem !important;
    }
    
    .mt-6 {
        margin-top: 0.75rem !important;
    }
    
    .gap-16 {
        gap: 2rem !important;
    }
    
    .gap-8 {
        gap: 1rem !important;
    }
    
    .gap-6 {
        gap: 0.75rem !important;
    }
    
    .space-y-6 > * + * {
        margin-top: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .slider-section {
        height: 50vh;
    }
    
    .slider-container {
        height: 100%;
    }
    
    .slide {
        height: 100%;
    }
    
    /* Hedeflerimiz sayfa responsive - çok küçük ekran */
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.75rem !important;
    }
    
    h3 {
        font-size: 1rem !important;
    }
    
    h4 {
        font-size: 0.875rem !important;
    }
    
    p {
        font-size: 0.75rem !important;
    }
    
    .text-xl {
        font-size: 0.875rem !important;
    }
    
    .text-2xl {
        font-size: 1rem !important;
    }
    
    .text-4xl {
        font-size: 1.5rem !important;
    }
    
    .text-5xl {
        font-size: 1.875rem !important;
    }
    
    .text-6xl {
        font-size: 2rem !important;
    }
    
    /* Görseller ve iconlar çok küçük ekran */
    .w-16 {
        width: 2rem !important;
        height: 2rem !important;
    }
    
    .w-10 {
        width: 1.5rem !important;
        height: 1.5rem !important;
    }
    
    .w-5 {
        width: 1rem !important;
        height: 1rem !important;
    }
    
    /* Butonlar çok küçük ekran */
    .py-4 {
        padding-top: 0.375rem !important;
        padding-bottom: 0.375rem !important;
    }
    
    .px-8 {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    
    button, .btn, a[class*="bg-blue"], a[class*="border-2"] {
        font-size: 0.625rem !important;
    }
    
    .flex-col {
        gap: 0.75rem !important;
    }
    
    /* Padding ve Margin çok küçük ekran */
    .py-20 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .py-12 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    .pt-24 {
        padding-top: 2.5rem !important;
    }
    
    .pb-12 {
        padding-bottom: 1rem !important;
    }
    
    .mb-16 {
        margin-bottom: 1.5rem !important;
    }
    
    .mb-12 {
        margin-bottom: 1rem !important;
    }
    
    .mb-8 {
        margin-bottom: 0.75rem !important;
    }
    
    .mb-6 {
        margin-bottom: 0.5rem !important;
    }
    
    .mt-8 {
        margin-top: 0.75rem !important;
    }
    
    .mt-6 {
        margin-top: 0.5rem !important;
    }
    
    .gap-16 {
        gap: 1.5rem !important;
    }
    
    .gap-8 {
        gap: 0.75rem !important;
    }
    
    .gap-6 {
        gap: 0.5rem !important;
    }
    
    .space-y-6 > * + * {
        margin-top: 0.5rem !important;
    }
    
    .space-y-3 > * + * {
        margin-top: 0.375rem !important;
    }
}

/* 768px-1200px arası ekranlarda hamburger menü */
@media (min-width: 768px) and (max-width: 1199px) {
    /* Desktop menüyü gizle */
    .hidden.md\:flex {
        display: none !important;
    }
    
    /* Hamburger menü butonunu göster */
    .md\:hidden {
        display: block !important;
    }
    
    /* Mobile menü varsayılan olarak gizli kalsın */
    #mobile-menu.hidden {
        display: none !important;
    }
    
    /* Mobile menü açıldığında göster (hidden class'ı JavaScript ile kaldırılınca) */
    #mobile-menu:not(.hidden) {
        display: block !important;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Gradients */
.gradient-blue {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

/* Simplified Hover Effects */
.hover-lift {
    transition: transform 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
}

/* Button Animations */
.btn-animated {
    position: relative;
    overflow: hidden;
}

.btn-animated::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: left 0.5s;
}

.btn-animated:hover::before {
    left: 100%;
}


/* Simplified Card Styles */
.card-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Text Glow Effect */
.text-glow {
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* Simple Loading Animation - Optimized */
.loading {
    opacity: 1;
    transform: translateY(0);
}