:root {
    --primary-color: #3f51b5;    /* Ana Mavi */
    --secondary-color: #5c6bc0;   /* Açık Mavi */
    --accent-color: #00bcd4;      /* Turkuaz */
    --dark-bg: #0a192f;          /* Koyu Uzay Mavisi */
    --card-bg: rgba(16, 28, 48, 0.95);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --gradient-primary: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
}

body {
    background: var(--dark-bg);
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background: linear-gradient(to bottom, #000000, var(--dark-bg));
}

.content-wrapper {
    position: relative;
    z-index: 1;
    padding-top: 50px;
}

/* Genel Bölüm Stilleri */
section {
  /*  padding: 60px 0; */
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite;
}

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

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

/* Animasyonlar */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(63, 81, 181, 0.3); }
    50% { box-shadow: 0 0 40px rgba(63, 81, 181, 0.5); }
}

/* Responsive */
@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Hero Section Yeni Stiller */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0; /* navbar height kadar üstten padding */
    margin-top: -80px; /* negative margin ile padding'i dengele */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    margin-bottom: 3.5rem;
}

/* Animasyon Alanı */
.hero-animation {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animation-circle {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(16, 28, 48, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.circle-icon.motorcycle {
    font-size: 3rem;
    animation: floatCenter 4s ease-in-out infinite;
}

.circle-icon.map {
    font-size: 2rem;
    top: 20%;
    right: 20%;
    animation: floatTop 5s ease-in-out infinite;
}

.circle-icon.mobile {
    font-size: 2rem;
    bottom: 20%;
    left: 20%;
    animation: floatBottom 5s ease-in-out infinite;
}

.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

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

@keyframes floatTop {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -10px); }
}

@keyframes floatBottom {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, 10px); }
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 0.4; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.stat-card {
    background: rgba(16, 28, 48, 0.5);
    border: 1px solid rgba(78, 136, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    background: rgba(16, 28, 48, 0.7);
}

.stat-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 400px;
}

.motorcycle-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatMain 4s ease-in-out infinite;
}

.map-wrapper {
    position: absolute;
    top: 20%;
    right: 20%;
    animation: floatSecondary 5s ease-in-out infinite;
}

.mobile-wrapper {
    position: absolute;
    bottom: 20%;
    left: 20%;
    animation: floatTertiary 6s ease-in-out infinite;
}

@keyframes floatMain {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, -60%); }
}

@keyframes floatSecondary {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -15px); }
}

@keyframes floatTertiary {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -20px); }
}

.primary-icon {
    font-size: 5rem;
    color: var(--accent-color);
}

.secondary-icon, .tertiary-icon {
    font-size: 3rem;
    color: var(--secondary-color);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-glow {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(41, 98, 255, 0.4);
}

.btn-outline-glow {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--text-primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-glow:hover {
    background: var(--accent-color);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
    transform: translateY(-2px);
}

/* Navbar Yeni Stiller */
.navbar {
    background-color: rgba(10, 10, 10, 0.98) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    z-index: 9999;
    height: 80px; /* Sabit navbar yüksekliği */
}

.navbar-brand {
    text-decoration: none;
    padding: 0;
}

.brand-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-logo {
    height: 45px; /* Logo yüksekliği */
    width: auto;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.brand-subtext {
    font-size: 0.7rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item {
    margin: 0 0.3rem;
}

.navbar-nav .nav-link {
    color: var(--text-secondary);
    padding: 0.7rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.navbar .btn-glow {
    padding: 0.7rem 1.5rem;
}

/* Mobil Navbar Düzenlemeleri */
@media (max-width: 991px) {
    .navbar-toggler {
        display: block !important; /* Her zaman görünür */
        padding: 0.5rem;
        font-size: 1.25rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        margin-right: 0.5rem;
        position: relative;
        z-index: 1000;
    }

    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        width: 1.5em;
        height: 1.5em;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        padding: 1rem;
        border-radius: 0 0 10px 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-section {
        padding-top: 100px; /* Mobilde biraz daha fazla padding */
        margin-top: -100px;
    }

    .navbar-nav .nav-item {
        margin: 0.5rem 0;
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 0.8rem 1.5rem;
        text-align: left;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .navbar .btn-glow {
        width: 100%;
        margin: 0.5rem 0;
        text-align: left;
    }

    .brand-logo {
        height: 35px; /* Mobilde daha küçük logo */
    }
    
    .brand-content {
        max-width: 80%;
    }
}

/* Küçük mobil cihazlar için ek düzenlemeler */
@media (max-width: 576px) {
    .navbar {
        height: 70px; /* Daha küçük ekranlarda daha küçük navbar */
    }

    .hero-section {
        padding-top: 90px;
        margin-top: -90px;
    }

    .navbar-brand .brand-text {
        font-size: 1.5rem;
    }

    .navbar-brand .brand-subtext {
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .stat-card {
        padding: 0.8rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .animation-circle {
        width: 250px;
        height: 250px;
    }

    .brand-logo {
        height: 30px; /* En küçük ekranlarda daha da küçük logo */
    }
    
    .brand-subtext {
        font-size: 0.65rem;
    }
}

.footer {
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    padding: 80px 0 30px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-contact {
    background: rgba(16, 28, 48, 0.5);
    border: 1px solid rgba(78, 136, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-links h5 {
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.footer-brand {
    background: rgba(16, 28, 48, 0.5);
    border: 1px solid rgba(78, 136, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(41, 98, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(41, 98, 255, 0.5);
    }
}

/* References Slider */
.references-section {
    overflow: hidden;
    background: var(--card-bg);
}

.references-wrapper {
    position: relative;
    padding: 20px 0;
}

.references-track-left,
.references-track-right {
    display: flex;
    animation: scroll 20s linear infinite;
}

.references-track-right {
    animation-direction: reverse;
}

.reference-item {
    flex: 0 0 200px;
    margin: 0 20px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.reference-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* How It Works */
.step-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.step-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cost Reduction */
.savings-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.saving-item {
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.saving-percentage {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* Software Features */
.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card ul li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.feature-card ul li:before {
    content: "✓";
    color: var(--accent-color);
    margin-right: 10px;
}

/* FAQ Section */
.accordion-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
}

.accordion-button {
    background: var(--card-bg) !important;
    color: var(--text-primary) !important;
    box-shadow: none !important;
    border: none;
}

.accordion-button:not(.collapsed) {
    color: var(--accent-color) !important;
}

/* Blog Section */
.blog-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-card h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

.blog-card p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.btn-link {
    color: var(--accent-color);
    text-decoration: none;
    padding: 0;
}

.btn-link:hover {
    color: var(--secondary-color);
}

/* Referans Kartları */
.reference-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin: 15px;
    min-width: 300px;
    transition: all 0.3s ease;
}

.reference-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.reference-rating {
    color: #ffd700;
    margin-bottom: 15px;
}

.reference-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.reference-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reference-author i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.reference-author h4 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-primary);
}

.reference-author p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-secondary);
}

/* Blog Kartları */
.blog-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-align: center;
}

.blog-card {
    height: 100%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* İstatistik Kartları */
.stats-container {
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Hero Icon Animation */
.hero-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-icon {
    font-size: 15rem;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: float 6s ease-in-out infinite;
}

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

/* Scroll Section Yeni Stiller */
.scroll-section {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    background: rgba(13, 17, 23, 0.8);
    max-width: 100%;
}

.scroll-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #4e88ff, #0575e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.scroll-row {
    display: flex;
    gap: 20px;
    padding: 2rem 0;
    width: max-content;
    position: relative;
}

.scroll-row > div {
    flex: 0 0 auto;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(78, 136, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    width: 300px;
    margin-right: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.scroll-row > div:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(78, 136, 255, 0.3);
    box-shadow: 0 8px 16px rgba(78, 136, 255, 0.15);
}

.avatar-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.avatar-container i {
    font-size: 2rem;
    color: #4e88ff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(78, 136, 255, 0.5);
    border-radius: 8px;
}

.info h5 {
    color: #4e88ff;
    font-size: 1rem;
    margin: 0 0 0.2rem 0;
    font-weight: 500;
}

.info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    display: block;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 4rem;
}

.stars {
    color: #4e88ff;
    margin-top: 0.5rem;
    font-size: 1rem;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Gradient Blur Effect */
.scroll-section::before,
.scroll-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
}

.scroll-section::before {
    left: 0;
    background: linear-gradient(to right, rgba(13, 17, 23, 1), transparent);
}

.scroll-section::after {
    right: 0;
    background: linear-gradient(to left, rgba(13, 17, 23, 1), transparent);
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% / 4)); }
}

@keyframes scrollRight {
    0% { transform: translateX(calc(-100% / 4)); }
    100% { transform: translateX(0); }
}

.scroll-row.left {
    animation: scrollLeft 80s linear infinite;
}

.scroll-row.right {
    animation: scrollRight 80s linear infinite;
    margin-top: 20px;
}

/* Nasıl Çalışır Section Stilleri */
.process-card {
    background: rgba(16, 28, 48, 0.5);
    border: 1px solid rgba(78, 136, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.process-icon {
    position: relative;
    margin-bottom: 20px;
}

.process-icon i {
    font-size: 3rem;
    color: var(--accent-color);
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.process-card h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
}

.process-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* Biz Kimiz Section Stilleri */
.about-features {
    margin-top: 3rem;
}

.about-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 188, 212, 0.1);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.about-header {
    margin-bottom: 2rem;
}

.about-description {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(16, 28, 48, 0.5);
    border: 1px solid rgba(78, 136, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(16, 28, 48, 0.7);
    border-color: var(--accent-color);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.about-stats {
    margin-top: 3rem;
}

.stat-box {
    background: rgba(16, 28, 48, 0.5);
    border: 1px solid rgba(78, 136, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.about-image-wrapper {
    position: relative;
    padding: 2rem;
}

.about-image {
    position: relative;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--accent-color);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive düzenlemeler */
@media (max-width: 991px) {
    .about-image-wrapper {
        margin-top: 3rem;
    }
    
    .feature-item:hover {
        transform: translateY(-5px);
    }
}

/* Animasyonlu Icon Bölümü */
.about-animation {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animation-layer {
    position: relative;
    width: 300px;
    height: 300px;
    background: rgba(16, 28, 48, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.primary-icon {
    font-size: 5rem;
    color: var(--accent-color);
    animation: floatIcon 3s ease-in-out infinite;
}

.secondary-icon {
    position: absolute;
    font-size: 3rem;
    color: var(--secondary-color);
    animation: orbitIcon 8s linear infinite;
}

.tertiary-icon {
    position: absolute;
    font-size: 2.5rem;
    color: var(--primary-color);
    animation: orbitIcon 12s linear infinite reverse;
}

.pulse-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    animation: pulseCircle 2s ease-out infinite;
}

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

@keyframes orbitIcon {
    0% { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

@keyframes pulseCircle {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 0.4; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

/* Neden JetKurye kartları için stil güncellemesi */
.why-card {
    background: rgba(16, 28, 48, 0.8);
    border: 1px solid rgba(78, 136, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 188, 212, 0.1), rgba(63, 81, 181, 0.1));
    opacity: 0;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 188, 212, 0.1);
    color: var(--accent-color);
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
    background: rgba(0, 188, 212, 0.2);
}

.why-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: -60px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999999;
    opacity: 0;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
}

.scroll-to-top.active {
    bottom: 30px;
    opacity: 1;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    background: var(--secondary-color);
    box-shadow: 0 6px 16px rgba(0, 188, 212, 0.4);
}

.scroll-to-top i {
    animation: scrollTopBounce 2s infinite;
}

@keyframes scrollTopBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.footer .container .row {
    margin-top: 20px;
}

/* Icon görünürlük testi */
.fa-solid {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.feature-box {
    background: rgba(16, 28, 48, 0.5);
    border: 1px solid rgba(78, 136, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateX(10px);
    border-color: var(--accent-color);
    background: rgba(16, 28, 48, 0.7);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
}

.feature-box h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-box p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

/* 404 Sayfa Stilleri */
.error-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.error-title {
    font-size: 8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1;
}

.error-content h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
}

.error-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.error-actions {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .error-title {
        font-size: 6rem;
    }
    
    .error-content h2 {
        font-size: 2rem;
    }
    
    .error-content p {
        font-size: 1rem;
    }
    
    .error-actions .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Hakkımızda Sayfası Stilleri */
.about-hero {
    padding: 120px 0 80px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Vizyon Misyon Kartları */
.vision-card, .mission-card {
    background: rgba(16, 28, 48, 0.5);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.vision-icon, .mission-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--accent-color);
}

/* Değerler Kartları */
.value-card {
    background: rgba(16, 28, 48, 0.5);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* Ekip Kartları */
.team-card {
    background: rgba(16, 28, 48, 0.5);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-info {
    text-align: center;
    padding: 1.5rem;
}

.team-info h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 1.25rem;
}

.team-info .position {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.team-info .bio {
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .team-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .vision-card, .mission-card {
        margin-bottom: 1rem;
    }
    
    .value-card {
        margin-bottom: 1rem;
    }
}

/* Bölümler arası boşluk */
.section-spacer {
    height: 80px;
}

@media (max-width: 768px) {
    .section-spacer {
        height: 60px;
    }
}

/* Hizmetler Sayfası Stilleri */
.services-hero {
    padding: 120px 0 80px;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.services-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.services-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Hizmet Kartları */
.service-card {
    background: rgba(16, 28, 48, 0.5);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--accent-color);
}

.service-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Özel Hizmet Kartları */
.special-service-card {
    background: rgba(16, 28, 48, 0.5);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.special-service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.special-service-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.special-service-card i {
    color: var(--accent-color);
}

/* Avantaj Kartları */
.advantage-card {
    background: rgba(16, 28, 48, 0.5);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 100px 0 60px;
    }
    
    .service-card,
    .special-service-card,
    .advantage-card {
        margin-bottom: 1rem;
    }
}

/* Hero Section Animasyonlu Ekranlar */
.floating-screens {
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.screen {
    position: absolute;
    width: 280px;
    height: 180px;
    background: rgba(16, 28, 48, 0.9);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.screen-1 {
    top: 20%;
    left: 0;
    animation-delay: 0s;
}

.screen-2 {
    top: 40%;
    left: 20%;
    animation-delay: -2s;
}

.screen-3 {
    top: 60%;
    left: 40%;
    animation-delay: -4s;
}

.screen-content {
    padding: 15px;
}

.screen-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.screen-body {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rota Animasyonu */
.route-animation {
    position: relative;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.route-line {
    height: 2px;
    flex-grow: 1;
    margin: 0 10px;
    background: linear-gradient(90deg, var(--accent-color) 50%, transparent 50%);
    background-size: 20px 2px;
    animation: routeDash 2s linear infinite;
}

/* Grafik Animasyonu */
.chart-animation {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 60px;
}

.chart-bar {
    width: 30px;
    background: var(--accent-color);
    animation: chartGrow 2s ease-in-out infinite;
}

.chart-bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.chart-bar:nth-child(2) { height: 70%; animation-delay: 0.2s; }
.chart-bar:nth-child(3) { height: 50%; animation-delay: 0.4s; }

/* Animasyonlar */
@keyframes routeDash {
    to { background-position: 20px 0; }
}

@keyframes chartGrow {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.2); }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Hero Buttons */
.hero-buttons {
    margin-top: 2rem;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
}

.btn:hover {
    transform: translateY(-2px);
} 