:root {
    --primary-color: #8B5CF6;    /* Mor */
    --secondary-color: #98FB98;  /* Açık Yeşil */
    --accent-color: #FFA500;     /* Turuncu */
    --dark-color: #1F2937;
    --light-color: #F3F4F6;
}

/* Genel Stiller */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Navbar Stili */
.custom-nav {
    background-color: transparent;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    position: absolute;
    width: 100%;
    z-index: 1000;
    overflow-x: hidden;
}

.custom-nav.scrolled {
    background-color: rgba(139, 92, 246, 0.98);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

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

.nav-link {
    color: var(--light-color) !important;
    margin: 0 0.8rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Navbar Buton Stilleri */
.nav-link.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    margin: 0 0.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-link.btn::after {
    display: none;
}

.nav-link.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-link.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(152, 251, 152, 0.2);
}

.nav-link.btn-primary {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: var(--dark-color) !important;
}

.nav-link.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.nav-link.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
    color: var(--dark-color) !important;
}

.nav-link.btn-primary:hover::before {
    opacity: 1;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    position: relative;
    overflow: hidden;
}

/* Nokta Animasyonu */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1.5" fill="%23ffffff20"/></svg>');
    opacity: 0.3;
    animation: floatingDots 30s linear infinite;
}

/* Meteor Animasyonu */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.meteor {
    position: absolute;
    width: 2px;
    height: 90px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8) 60%, rgba(255, 255, 255, 0));
    animation: meteor 6s linear infinite;
    transform: rotate(-45deg);
    top: -100px;
    left: 30%;
    opacity: 0;
}

.meteor:nth-child(2) {
    left: 80%;
    animation-delay: 2s;
    height: 60px;
}

.meteor:nth-child(3) {
    left: 20%;
    animation-delay: 4s;
    height: 120px;
}

.meteor:nth-child(4) {
    left: 60%;
    animation-delay: 6s;
    height: 80px;
}

@keyframes meteor {
    0% {
        transform: translateY(0) translateX(0) rotate(-45deg);
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: translateY(1000px) translateX(1000px) rotate(-45deg);
        opacity: 0;
    }
}

/* Parıltı Efekti */
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.4);
    animation: sparkle 4s ease-in-out infinite;
}

.sparkle:nth-child(1) {
    top: 20%;
    left: 15%;
}

.sparkle:nth-child(2) {
    top: 30%;
    left: 75%;
    animation-delay: 1s;
}

.sparkle:nth-child(3) {
    top: 70%;
    left: 35%;
    animation-delay: 2s;
}

.sparkle:nth-child(4) {
    top: 60%;
    left: 85%;
    animation-delay: 3s;
}

.sparkle:nth-child(5) {
    top: 80%;
    left: 10%;
    animation-delay: 0.5s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

@keyframes floatingDots {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 180px 0 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, white, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Hero Section Buton Stilleri */
.hero-section .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-section .btn-primary {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border: none;
    color: var(--dark-color);
}

.hero-section .btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 50%);
    transform: scale(0);
    transition: transform 0.6s ease-out;
}

.hero-section .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
    color: var(--dark-color);
}

.hero-section .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.hero-section .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(152, 251, 152, 0.2);
}

.hero-section .btn i {
    transition: transform 0.3s ease;
}

.hero-section .btn:hover i {
    transform: translateX(5px);
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

/* Özellikler Section */
.features-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6B46C1 50%, #4C1D95 100%);
    color: var(--light-color);
    position: relative;
    overflow: hidden;
    padding: 70px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
}

/* Footer Arka Plan Deseni */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1.5" fill="%23ffffff10"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

.footer p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    transition: transform 0.3s ease;
    color: var(--accent-color);
}

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

.footer-links a:hover::before {
    color: var(--accent-color);
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-links a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Animasyonlar */
[data-aos] {
    opacity: 0;
    transition-duration: 1s;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding-top: 6rem;
    }
    
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        background-color: var(--primary-color);
        padding: 4rem 1rem;
        z-index: 1001;
        display: flex;
        align-items: center;
    }
    
    .navbar-nav {
        width: 100%;
        margin-top: -100px;
    }
    
    .nav-item {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .nav-link {
        padding: 0.8rem 0;
        display: inline-block;
    }
    
    .nav-item.ms-lg-3,
    .nav-item.ms-lg-2 {
        margin: 0.8rem 0;
    }
    
    .navbar-collapse.show {
        right: 0;
        position: relative;
    }
    
    .custom-nav {
        background-color: var(--primary-color);
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        z-index: 1000;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .custom-nav .container {
        position: relative;
        z-index: 1002;
    }
    
    .navbar-toggler {
        z-index: 1003;
        border: none;
        padding: 0.5rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
    
    .navbar-toggler-icon {
        width: 1.5em;
        height: 1.5em;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    /* Footer Mobil Düzenlemeler */
    .footer h5 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .col-6.mb-4 {
        margin-bottom: 1.5rem !important;
    }
}

/* Nasıl Çalışır Bölümü */
.how-it-works-section {
    background-color: white;
    padding: 80px 0;
    position: relative;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.step-content {
    padding: 2rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: -30px;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #6B46C1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.4);
}

.step-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.step-description {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.step-features li i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.step-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.step-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(152, 251, 152, 0.1));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(139, 92, 246, 0.3);
    overflow: hidden;
    position: relative;
    padding: 20px;
}

.step-image-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.step-image-placeholder:hover img {
    transform: scale(1.05);
}

.placeholder-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.7;
    position: absolute;
    z-index: 1;
}

.placeholder-text {
    color: var(--primary-color);
    font-weight: 500;
    opacity: 0.7;
    position: absolute;
    bottom: 20px;
    z-index: 1;
}

/* Popüler Görevler Bölümü */
.popular-tasks-section {
    background-color: var(--light-color);
    padding: 80px 0;
    position: relative;
}

.task-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.task-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.task-card.featured::before {
    content: 'Öne Çıkan';
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--accent-color);
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 1;
}

.task-card-header {
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), #6B46C1);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.task-category {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
}

.task-price {
    font-size: 1.3rem;
    font-weight: 700;
}

.task-card-body {
    padding: 1.5rem;
}

.task-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.task-description {
    color: var(--dark-color);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.task-meta {
    display: flex;
    justify-content: space-between;
    color: #6c757d;
    font-size: 0.9rem;
}

.task-meta span {
    display: flex;
    align-items: center;
}

.task-meta i {
    margin-right: 5px;
}

.task-card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* Görev Kartları Buton Stilleri */
.task-card-footer .btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.task-card-footer .btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
}

.task-card-footer .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.task-card-footer .btn-primary {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border: none;
    color: var(--dark-color);
}

.task-card-footer .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
}

.popular-tasks-section .btn-lg.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #6B46C1);
    color: white;
    padding: 1rem 2rem;
    border: none;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.popular-tasks-section .btn-lg.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

/* İstatistikler Bölümü */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6B46C1 50%, #4C1D95 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1.5" fill="%23ffffff20"/></svg>');
    opacity: 0.2;
}

.stats-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

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

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

.stat-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Kullanıcı Yorumları Bölümü */
.testimonials-section {
    background-color: white;
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    padding: 2rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 5rem;
    color: rgba(139, 92, 246, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: var(--dark-color);
    line-height: 1.6;
}

.testimonial-user {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(139, 92, 246, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    background: linear-gradient(135deg, var(--primary-color), #6B46C1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.testimonial-info h5 {
    margin: 0;
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

/* Hakkımızda Sayfası Stilleri */
.about-hero {
    min-height: 80vh;
}

.about-section {
    padding: 80px 0;
    background-color: white;
}

.about-content h2 {
    color: var(--primary-color);
    position: relative;
    margin-bottom: 2rem;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.about-image img {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: translateY(-10px);
}

/* Değerlerimiz Bölümü */
.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.value-card:hover .value-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.value-card h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Ekibimiz Bölümü */
.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
    position: relative;
    overflow: hidden;
}

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

.team-card:hover .team-image img {
    transform: scale(1.1);
}

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

.team-info h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-position {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Başarılarımız Bölümü */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    width: 50%;
    left: 0;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 30px;
    left: 50%;
}

.timeline-dot {
    position: absolute;
    top: 10px;
    right: -8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(255, 165, 0, 0.2);
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -8px;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    width: 100%;
    max-width: 350px;
}

.timeline-content h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content p {
    margin-bottom: 0;
}

/* Neden Biz Bölümü */
.why-us-section {
    padding: 80px 0;
    background-color: white;
}

.why-us-image img {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.why-us-image img:hover {
    transform: translateY(-10px);
}

.why-us-content h2 {
    color: var(--primary-color);
    position: relative;
    margin-bottom: 2rem;
}

.why-us-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.why-us-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}

.why-us-item h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-us-item p {
    margin-bottom: 0;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-right: 0;
        padding-left: 60px;
        left: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-dot {
        left: 22px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-dot {
        left: 22px;
    }
    
    .timeline-content {
        max-width: 100%;
    }
    
    .about-content h2, .why-us-content h2 {
        text-align: center;
    }
    
    .about-content h2::after, .why-us-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-image, .why-us-image {
        margin-bottom: 2rem;
    }
}

/* Özellikler Sayfası Stilleri */
.features-main {
    background-color: white;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.feature-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--accent-color);
    margin-right: 10px;
}

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

.feature-benefits li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.feature-benefits li i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.feature-content {
    padding: 2rem;
}

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

.feature-image img {
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

/* Fiyatlandırma Kartları */
.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
    border: 2px solid var(--primary-color);
}

.pricing-card.featured::before {
    content: 'En Popüler';
    position: absolute;
    top: 12px;
    right: -35px;
    background: var(--accent-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-header h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: var(--accent-color);
    margin-right: 10px;
}

.pricing-card .btn {
    width: 100%;
    padding: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.pricing-card .btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #6B46C1);
    border: none;
}

.pricing-card .btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.pricing-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.pricing-card .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
        margin: 1rem 0;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .feature-content {
        text-align: center;
        padding: 1rem;
    }
    
    .feature-benefits li {
        justify-content: center;
    }
    
    .feature-image {
        margin: 2rem 0;
    }
}

/* İletişim Sayfası Stilleri */
.contact-section {
    background-color: white;
}

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

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
    background: rgba(139, 92, 246, 0.1);
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-info-item h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-info-item p {
    margin-bottom: 0;
    color: var(--dark-color);
}

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

.contact-form-card .form-label {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-form-card .form-control {
    padding-left: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.contact-form-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

.contact-form-card .input-group-text {
    background: transparent;
    border: none;
    color: var(--primary-color);
    padding-right: 0.75rem;
}

.contact-form-card .form-control::placeholder {
    color: #999;
    opacity: 0.8;
}

.contact-form-card .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}

.contact-form-card .btn-primary:hover {
    background: #7c3aed;
    border-color: #7c3aed;
    transform: translateY(-2px);
}

/* Harita Stilleri */
.map-container {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    overflow: hidden;
}

/* SSS Stilleri */
.faq-section {
    background-color: white;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    background-color: white;
}

.accordion-button:not(.collapsed) {
    color: white;
    background: linear-gradient(45deg, var(--primary-color), #6B46C1);
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 1.2rem;
    background: rgba(139, 92, 246, 0.05);
}

/* İletişim Sosyal Medya Linkleri */
.contact-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color) !important;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .contact-info-card,
    .contact-form-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-info-item {
        padding: 0.8rem;
    }
    
    .contact-info-item i {
        font-size: 1.2rem;
    }
    
    .map-container {
        margin-top: 1.5rem;
    }
}

/* Blog Sayfası Stilleri */
.blog-section {
    background-color: white;
}

.blog-categories {
    margin-bottom: 3rem;
}

.blog-categories .btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-categories .btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 15px;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.blog-content p {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-content .btn-outline-primary {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-content .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

/* Blog Sayfalama Stilleri */
.blog-pagination {
    margin-top: 3rem;
}

.pagination .page-link {
    border: none;
    padding: 0.8rem 1.2rem;
    margin: 0 5px;
    color: var(--primary-color);
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background: transparent;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .blog-image img {
        height: 200px;
    }
    
    .blog-content {
        padding: 1.2rem;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }
    
    .blog-meta {
        font-size: 0.8rem;
    }
    
    .blog-categories .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

/* Blog Hero Bölümü */
.blog-hero {
    min-height: 50vh !important;
}

.blog-hero .hero-content {
    padding: 120px 0 80px 0;
    min-height: auto;
}

/* Blog Detay Sayfası Stilleri */
.blog-detail-section {
    background: #fff;
}

.blog-category-badge {
    display: inline-block;
    padding: 6px 15px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2d3748;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    color: #718096;
    font-size: 0.95rem;
}

.blog-meta span i {
    margin-right: 5px;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

.blog-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #2d3748;
}

.blog-quote {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.05);
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    font-size: 1.2rem;
    color: #4a5568;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-tags .tag {
    padding: 5px 12px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
    border-radius: 15px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-tags .tag:hover {
    background: var(--primary-color);
    color: white;
}

.author-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 10px;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.author-info p {
    color: #718096;
    margin-bottom: 1rem;
}

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

.author-social a {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.author-social a:hover {
    color: #4a5568;
}

.comments-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
}

.comment {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-header h5 {
    margin: 0;
    color: #2d3748;
}

.comment-header span {
    color: #718096;
    font-size: 0.9rem;
}

.btn-reply {
    background: none;
    border: none;
    color: var(--primary-color);
    padding: 0;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reply:hover {
    color: #4a5568;
}

.sidebar-widget {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.sidebar-widget h4 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.search-form .input-group {
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    overflow: hidden;
}

.search-form .form-control {
    border: none;
    padding: 0.8rem 1.2rem;
}

.search-form .btn {
    padding: 0.8rem 1.5rem;
    border-radius: 0 25px 25px 0;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.8rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: var(--primary-color);
}

.popular-post-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.popular-post-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.post-info h5 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.post-info h5 a {
    color: #2d3748;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-info h5 a:hover {
    color: var(--primary-color);
}

.post-info span {
    font-size: 0.85rem;
    color: #718096;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tags-cloud .tag {
    padding: 5px 12px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
    border-radius: 15px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tags-cloud .tag:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }

    .blog-meta {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar {
        margin: 0 auto;
    }

    .author-social {
        justify-content: center;
    }

    .comment {
        flex-direction: column;
        text-align: center;
    }

    .comment-avatar {
        margin: 0 auto;
    }

    .comment-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .sidebar-widget {
        margin-top: 2rem;
    }
}

.blog-hero .blog-category-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.2);
    color: white;
    border-radius: 25px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.blog-hero .blog-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-top: 1.5rem;
}

.blog-hero .blog-meta span {
    display: flex;
    align-items: center;
}

.blog-hero .blog-meta i {
    margin-right: 8px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .blog-hero .blog-meta {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
}

/* Blog Buton Stilleri */
.blog-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.blog-btn-outline {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
}

.blog-btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.blog-btn-primary {
    background: var(--primary-color);
    border: none;
    color: white;
}

.blog-btn-primary:hover {
    background: #7c3aed;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

/* Blog Detay Yorum Butonu */
.blog-comment-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.blog-comment-btn:hover {
    background: #7c3aed;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

/* Giriş ve Üyelik Formları için Mobil Düzenlemeler */
@media (max-width: 768px) {
    .login-card {
        padding: 1.5rem;
        margin: 0.5rem;
        width: calc(100% - 1rem);
        max-width: 100%;
        border-radius: 10px;
    }

    .login-card .row {
        margin: 0;
    }

    .login-card .col-md-6 {
        padding: 0;
    }

    .login-card .input-group {
        margin-bottom: 1rem;
    }

    .login-card .form-label {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }

    .login-card .btn {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .login-card .form-check-label {
        font-size: 0.9rem;
    }

    .hero-section .container {
        padding: 0 1rem;
    }

    .hero-content {
        padding-top: 6rem;
        padding-bottom: 2rem;
        min-height: auto;
    }

    .hero-section {
        min-height: auto;
    }
}

.login-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    backdrop-filter: blur(8px);
}

.login-card h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.login-card .form-label {
    color: var(--primary-color);
    font-weight: 500;
}

.login-card .input-group {
    margin-bottom: 0.5rem;
}

.login-card .input-group-text {
    background-color: transparent;
    border-right: none;
    color: var(--primary-color);
    padding-right: 0.75rem;
}

.login-card .form-control {
    border-left: none;
    padding-left: 15px;
}

.login-card .form-control::placeholder {
    color: #999;
}

.login-card .btn-outline-secondary {
    border-left: none;
    color: var(--primary-color);
}

.login-card .btn-outline-secondary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.login-card .forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.login-card .forgot-password:hover {
    text-decoration: underline;
}

.login-card .register-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.login-card .register-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .login-card {
        padding: 1.5rem;
        margin: 0.5rem;
    }
}

// Sayfa Yüklendiğinde
document.addEventListener('DOMContentLoaded', function() {
    // Mobil Menü İşlevselliği
    const navLinks = document.querySelectorAll('.navbar-nav .nav-link');
    const navbarCollapse = document.querySelector('.navbar-collapse');
    const navbarToggler = document.querySelector('.navbar-toggler');
    
    // Menü linklerine tıklandığında menüyü kapat
    navLinks.forEach(link => {
        link.addEventListener('click', () => {
            if (navbarCollapse.classList.contains('show')) {
                navbarToggler.click();
            }
        });
    });
});

/* Kullanım Koşulları Sayfası Stilleri */
.terms-section {
    background-color: white;
    min-height: calc(100vh - 400px);
}

.terms-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.terms-content h2 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.8rem;
}

.terms-content p {
    color: var(--dark-color);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.terms-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.terms-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.terms-update {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
}

@media (max-width: 768px) {
    .terms-card {
        padding: 1.5rem;
        margin: 1rem;
    }

    .terms-content h2 {
        font-size: 1.5rem;
    }

    .terms-content p {
        font-size: 1rem;
    }
}

/* Yardım Merkezi Stilleri */
.help-category-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.help-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.help-category-card .icon-box {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.help-category-card .icon-box i {
    font-size: 2rem;
    color: #fff;
}

.help-category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem 0;
    text-align: center;
    color: var(--primary-color);
}

.help-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.help-links a {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.help-links a i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

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

.search-box {
    max-width: 600px;
    margin: 0 auto;
}

.search-box .form-control {
    border-radius: 30px 0 0 30px;
    padding: 0.8rem 1.5rem;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-box .btn {
    border-radius: 0 30px 30px 0;
    padding: 0.8rem 2rem;
}

.contact-cta {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

.contact-cta h3 {
    font-weight: 600;
}

.contact-cta .btn-primary {
    background: #fff;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .help-category-card {
        padding: 1.5rem;
    }

    .help-category-card .icon-box {
        width: 60px;
        height: 60px;
    }

    .help-category-card .icon-box i {
        font-size: 1.5rem;
    }

    .help-category-card h3 {
        font-size: 1.3rem;
    }

    .search-box .form-control,
    .search-box .btn {
        padding: 0.6rem 1rem;
    }
} 