/* Genel Stiller */
:root {
    --primary-color: #2563eb;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --text-color: #1e293b;
    --light-bg: #f8fafc;
    --card-bg: #ffffff;
    --gradient-1: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    --gradient-2: linear-gradient(45deg, #3b82f6 0%, #93c5fd 100%);
    --gradient-3: linear-gradient(to right, #2563eb 0%, #818cf8 100%);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--light-bg);
}

/* Loader Animation */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 40px;
    height: 40px;
    border: 4px solid var(--primary-color);
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navbar Stilleri */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1001;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.container-fluid {
    max-width: 1440px;
}

.navbar-brand-wrapper {
    flex: 0 0 auto;
}

.navbar-brand img {
    height: 40px;
    transition: transform 0.3s ease;
}

.nav-center {
    flex: 1;
    justify-content: center;
}

.navbar-nav {
    gap: 1rem;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.8rem 1.2rem !important;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--light-bg);
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.search-box:hover {
    background: #f1f5f9;
}

.search-box i {
    color: var(--text-color);
    opacity: 0.5;
}

.search-box input {
    border: none;
    background: none;
    outline: none;
    font-size: 0.9rem;
    width: 180px;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gradient-1);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: var(--gradient-2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    color: white;
}

.navbar-toggler {
    border: none;
    background: var(--light-bg);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    padding: 0;
}

/* Mobil Menü */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobile-search {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--light-bg);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.mobile-search input {
    border: none;
    background: none;
    outline: none;
    font-size: 1rem;
    width: 100%;
}

.mobile-menu .nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem !important;
}

.mobile-menu .nav-link i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .btn-download {
        display: none;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu.show {
        display: block;
    }

    .navbar-toggler {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
    background-color: #f8fafc;
}

/* Animasyonlu Gradient Arkaplan */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: linear-gradient(
        45deg,
        rgba(37, 99, 235, 0.1) 0%,
        rgba(96, 165, 250, 0.1) 33%,
        rgba(147, 197, 253, 0.1) 66%,
        rgba(219, 234, 254, 0.1) 100%
    );
    animation: gradientBg 15s ease infinite;
    z-index: -1;
}

/* Animasyonlu Şekiller */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(96, 165, 250, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(147, 197, 253, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 70% 20%, rgba(219, 234, 254, 0.05) 0%, transparent 30%);
    animation: shapeMove 20s ease-in-out infinite alternate;
}

/* Floating Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
}

.particle:nth-child(1) { top: 20%; left: 20%; animation: float 6s ease-in-out infinite; }
.particle:nth-child(2) { top: 60%; left: 80%; animation: float 8s ease-in-out infinite; }
.particle:nth-child(3) { top: 80%; left: 40%; animation: float 7s ease-in-out infinite; }
.particle:nth-child(4) { top: 40%; left: 60%; animation: float 9s ease-in-out infinite; }
.particle:nth-child(5) { top: 30%; left: 90%; animation: float 5s ease-in-out infinite; }

/* Animasyonlar */
@keyframes gradientBg {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shapeMove {
    0% { 
        transform: translateX(-2%) translateY(-2%);
        background-size: 100% 100%;
    }
    100% { 
        transform: translateX(2%) translateY(2%);
        background-size: 110% 110%;
    }
}

@keyframes float {
    0% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-20px) scale(1.1); opacity: 1; }
    100% { transform: translateY(0) scale(1); opacity: 0.5; }
}

.badge {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.store-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--gradient-1);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.store-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    background: var(--gradient-2);
    color: white;
}

.hero-image {
    position: relative;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-1 { top: 15%; left: -10%; }
.card-2 { top: 45%; right: -10%; }
.card-3 { bottom: 15%; left: 0; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Screenshots Section */
.screenshots {
    padding: 100px 0;
}

.screenshot-box {
    border-radius: 15px;
    overflow: hidden;
    /*box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
    transition: transform 0.3s ease;
}

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

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.testimonial-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.user img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 1rem;
}

.user {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    padding-right: 2rem;
}

.contact-info .badge {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info .lead {
    color: #64748b;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-method .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-method .info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text-color);
}

.contact-method .info p {
    color: #64748b;
    margin: 0;
}

.contact-cta {
    display: flex;
    gap: 1rem;
}

.contact-cta a {
    transition: transform 0.3s ease;
}

.contact-cta a:hover {
    transform: translateY(-3px);
}

.contact-cta img {
    height: 40px;
}

.contact-map {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        padding-right: 0;
        text-align: center;
    }

    .contact-method {
        justify-content: center;
    }

    .contact-cta {
        justify-content: center;
    }

    .contact-map {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-map {
        min-height: 300px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero .row {
        flex-direction: column-reverse;
    }

    .hero .col-lg-6 {
        width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-top: 2rem;
    }

    .hero-stats {
        justify-content: center;
        margin: 2rem 0;
    }

    .app-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .app-badges a {margin-bottom:1rem;}

    .store-button {
        margin: 0;
        width: 100%;
        justify-content: center;
    }

    .phone-mockup {
        width: 80%;
        margin: 0 auto;
        transform: none !important;
    }

    .screenshots .row {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 1rem;
        padding: 0.5rem;
        margin: 0 -1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .screenshots .col-lg-4 {
        flex: 0 0 85%;
        max-width: 300px;
        scroll-snap-align: center;
        padding: 0 0.5rem;
    }

    .screenshot-box {
        margin: 0;
        width: 100%;
        height: 100%;
    }

    .screenshot-box img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .screenshots .row::-webkit-scrollbar {
        display: none;
    }
    
    .screenshots .row {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

@media (max-width: 480px) {
    .screenshots .col-lg-4 {
        flex: 0 0 80%;
    }
}

/* Footer */
.footer {
    background: #1e293b;
    color: #f8fafc;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-1);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-1);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.footer-contact ul li i {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
}

.store-badge {
    display: inline-block;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

.store-badge:hover {
    transform: translateY(-3px);
}

.store-badge img {
    height: 40px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #94a3b8;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* Features Section */
.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-wrapper.blue {
    background: var(--gradient-1);
    color: white;
}

.icon-wrapper.green {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
}

.icon-wrapper.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .floating-card {
        display: none;
    }

    .phone-mockup {
        width: 60%;
        transform: perspective(1000px) rotateY(-10deg) rotateX(3deg);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .phone-mockup {
        width: 70%;
        transform: none;
        animation: float 6s ease-in-out infinite;
    }
}

/* Section header güncelleme */
.section-header h2 {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Phone mockup stilleri güncelleme */
.phone-mockup {
    position: relative;
    width: 70%; /* Boyutu küçülttük */
    margin: 0 auto;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg); /* Çapraz görünüm */
    animation: floatAndRotate 6s ease-in-out infinite;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Yeni animasyon keyframes */
@keyframes floatAndRotate {
    0% {
        transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateY(-12deg) rotateX(3deg) translateY(-20px);
    }
    100% {
        transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(0);
    }
}

/* Screenshots Section Mobil Düzenlemeler */
@media (max-width: 768px) {
    .screenshots .row {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 1rem;
        padding: 0.5rem;
        margin: 0 -1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .screenshots .col-lg-4 {
        flex: 0 0 85%;
        max-width: 300px;
        scroll-snap-align: center;
        padding: 0 0.5rem;
    }

    .screenshot-box {
        margin: 0;
        width: 100%;
        height: 100%;
    }

    .screenshot-box img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .screenshots .row::-webkit-scrollbar {
        display: none;
    }
    
    .screenshots .row {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

@media (max-width: 480px) {
    .screenshots .col-lg-4 {
        flex: 0 0 80%;
    }
} 