/* Base styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #1a202c;
    scroll-behavior: smooth;
}

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-left {
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.6s ease-out;
}

.animate-right {
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.6s ease-out 0.2s;
}

.animated .animate-left,
.animated .animate-right {
    transform: translateX(0);
    opacity: 1;
}

/* Service Cards */
.service-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Navbar */
nav {
    transition: all 0.3s ease-in-out;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-color: #ffffff !important;
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 9999 !important;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    opacity: 1 !important;
}

/* Tailwind bg-white sınıfını ezmek için */
#mobile-menu {
    background-color: #3be9af !important;
    background: #ffffff !important;
}

#mobile-menu.hidden {
    background-color: #3be9af !important;
    background: #ffffff !important;
}

.mobile-menu.hidden {
    transform: translateX(100%);
}

.mobile-menu.active {
    transform: translateX(0);
    background-color: #ffffff !important;
    background: #ffffff !important;
}

.mobile-menu a {
    display: block !important;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none !important;
    color: #374151 !important;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #3be9af !important;
}

.mobile-menu a:hover {
    color: #2563eb !important;
    background-color: #f3f4f6 !important;
}

#mobile-menu a {
    display: block !important;
    text-decoration: none !important;
    color: #374151 !important;
}

#mobile-menu a:hover {
    color: #2563eb !important;
    background-color: #f3f4f6 !important;
}

/* Buttons */
.cta-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.cta-button:active {
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

/* Özel bileşenler */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
}
