/* Genel Stiller */
:root {
    --primary-color: #4e54c8;
    --secondary-color: #8f94fb;
    --accent-color: #ff6b6b;
    --text-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #333;
    --border-color: #eaeaea;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --card-gradient: linear-gradient(135deg, #fff, #f5f5f5);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 15px;
    position: relative;
    font-size: 2.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient);
    border-radius: 4px;
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(78, 84, 200, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(78, 84, 200, 0.6);
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 15px;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.mt-30 {
    margin-top: 30px;
}

.btn i {
    margin-right: 8px;
}

/* Header Stili */
header {
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled {
    background-color: white;
    box-shadow: var(--box-shadow);
    padding: 10px 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    transition: var(--transition);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.logo-container h1 {
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
    transition: var(--transition);
}

header.scrolled .logo-container h1 {
    color: var(--primary-color);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav .nav-links {
    display: flex;
    list-style: none;
}

.main-nav .nav-links li {
    margin-left: 20px;
}

.nav-button {
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav-button i {
    margin-right: 8px;
    font-size: 0.9rem;
}

header.scrolled .nav-button {
    color: var(--dark-color);
}

.nav-button:hover,
.nav-button.active {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(78, 84, 200, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    position: relative;
    transition: var(--transition);
}

header.scrolled .hamburger {
    background-color: var(--dark-color);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: white;
    transition: var(--transition);
}

header.scrolled .hamburger::before,
header.scrolled .hamburger::after {
    background-color: var(--dark-color);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Hero Bölümü */
.hero {
    background: var(--gradient);
    color: white;
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    margin-bottom: 50px;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-container form {
    display: flex;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.pulse-border {
    animation: pulseBorder 2s infinite;
}

@keyframes pulseBorder {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.search-container input:focus {
    outline: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    height: calc(100% - 10px);
    width: 60px;
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    transform: scale(1.05);
}

.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-container svg {
    width: 100%;
    height: 70px;
}

/* Öne Çıkanlar Bölümü */
.featured {
    padding: 70px 0;
    background-color: white;
    position: relative;
}

.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-gradient);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 200px; /* Kartlardaki sabit resim yüksekliği */
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi kırpmadan kapsayıcıya sığdırır */
    transition: transform 0.5s ease;
}

.category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
}

.card-content h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    color: var(--dark-color);
    font-weight: 600;
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #777;
}

.card-meta span i {
    margin-right: 5px;
    color: var(--primary-color);
}

.read-more {
    display: inline-flex;
    align-items: center;
    padding: 10px 0;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.read-more i {
    margin-left: 8px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--accent-color);
}

.read-more:hover i {
    transform: translateX(5px);
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.read-more:hover::after {
    width: 100%;
}

.wave-container.wave-top {
    transform: rotate(180deg);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Uygulamalar Bölümü */
.apps {
    background-color: #f4f9fd;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    left: -100px;
    top: 10%;
    animation: float 8s infinite alternate;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    right: -50px;
    top: 30%;
    animation: float 10s infinite alternate-reverse;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    left: 20%;
    bottom: 20%;
    animation: float 6s infinite alternate;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    right: 15%;
    bottom: 10%;
    animation: float 9s infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(30px) rotate(30deg);
    }
}

.apps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.app-item {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    border-top: 5px solid transparent;
    border-image: var(--gradient);
    border-image-slice: 1;
}

.app-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    z-index: 3;
}

.app-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f5f7fa, #eef2f7);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.app-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.app-item h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 1.4rem;
}

.app-rating {
    margin-bottom: 15px;
    color: #ffc107;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-rating i {
    margin: 0 2px;
}

.app-rating span {
    margin-left: 8px;
    color: #666;
}

.app-item p {
    margin-bottom: 20px;
    color: #666;
}

.app-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    color: #777;
}

.app-meta span i {
    margin-right: 5px;
    color: var(--primary-color);
}

.app-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: var(--gradient);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(78, 84, 200, 0.3);
    transition: var(--transition);
}

.app-button i {
    margin-right: 8px;
}

.app-button:hover {
    box-shadow: 0 10px 20px rgba(78, 84, 200, 0.5);
    transform: translateY(-3px);
    color: white;
}

/* Footer Bölümü */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #aaa;
    line-height: 1.6;
}

.footer-links h4,
.footer-categories h4,
.footer-social h4 {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-size: 1.2rem;
}

.footer-links h4::after,
.footer-categories h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.footer-links ul,
.footer-categories ul {
    list-style: none;
}

.footer-links ul li,
.footer-categories ul li {
    margin-bottom: 15px;
}

.footer-links ul a,
.footer-categories ul a {
    color: #bbb;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.footer-links ul a i,
.footer-categories ul a i {
    margin-right: 10px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.footer-links ul a:hover,
.footer-categories ul a:hover {
    color: white;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transition: var(--transition);
}

.social-icons a:hover {
    transform: translateY(-5px);
}

.social-icons a:hover::before {
    background: var(--gradient);
}

.social-icons a.facebook:hover::before {
    background: #3b5998;
}

.social-icons a.twitter:hover::before {
    background: #1da1f2;
}

.social-icons a.instagram:hover::before {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icons a.youtube:hover::before {
    background: #ff0000;
}

.newsletter h5 {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #ddd;
}

.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #aaa;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: calc(100% - 10px);
    aspect-ratio: 1/1;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.copyright p {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #aaa;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: white;
}

.scroll-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.scroll-top a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Kategori Sayfası Stilleri */
.category-hero {
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    color: white;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.category-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.category-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    backdrop-filter: blur(5px);
}

.category-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.category-hero-content .subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease;
}

.category-content {
    padding: 70px 0;
    background-color: #fff;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-info h2 {
    margin: 0 0 10px;
    font-size: 1.8rem;
    color: var(--dark-color);
}

.category-info p {
    margin: 0;
    color: #666;
}

.category-filters {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
}

.filter-group label {
    margin-right: 10px;
    color: #666;
    font-weight: 500;
}

.filter-select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: var(--dark-color);
    background-color: #f9f9f9;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(78, 84, 200, 0.1);
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tag {
    padding: 6px 15px;
    background-color: #f0f0f0;
    border-radius: 20px;
    color: #666;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.tag:hover {
    background-color: #e0e0e0;
}

.tag.active {
    background-color: var(--primary-color);
    color: white;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #777;
}

.card-meta span {
    display: flex;
    align-items: center;
}

.card-meta i {
    margin-right: 5px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 5px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #f0f0f0;
    color: #666;
    text-decoration: none;
    transition: var(--transition);
}

.page-link:hover {
    background-color: #e0e0e0;
}

.page-link.active {
    background-color: var(--primary-color);
    color: white;
}

.page-link.next {
    width: auto;
    padding: 0 15px;
}

.page-dots {
    width: 40px;
    text-align: center;
    color: #666;
}

.newsletter-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.newsletter-container {
    background: var(--gradient);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.newsletter-content h2 {
    margin: 0 0 15px;
    font-size: 1.8rem;
}

.newsletter-content p {
    margin: 0;
    opacity: 0.9;
}

.newsletter-form-large {
    display: flex;
    width: 100%;
    max-width: 450px;
}

.newsletter-form-large input {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-family: inherit;
}

.newsletter-form-large button {
    border-radius: 0 8px 8px 0;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .newsletter-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .category-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .newsletter-form-large {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form-large input {
        border-radius: 8px;
        margin-bottom: 10px;
    }
    
    .newsletter-form-large button {
        border-radius: 8px;
        width: 100%;
    }
    
    /* Menü butonunun konumunu düzeltme */
    header .container {
        position: relative;
    }
    
    .menu-toggle {
        position: absolute;
        right: 60px; /* 35px'ten 60px'e değiştirildi */
        top: 50%;
        transform: translateY(-50%);
    }
    
    .logo-container {
        margin-right: auto;
    }
    
    /* Mobil cihazlarda sidebar widget'larını gizle */
    .sidebar .widget.popular-posts,
    .sidebar .widget.newsletter-widget,
    .sidebar .widget.category-widget {
        display: none;
    }
    
    /* Sidebar boş kalmasın diye padding düzeltmesi */
    .sidebar {
        display: none;
    }
    
    /* Container genişliğini mobilde arttır */
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* İçerik ve sidebar düzenlemesi */
    .content-wrapper {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .main-content {
        padding-right: 0;
        padding-left: 0;
        width: 100%;
        margin: 0 auto;
        max-width: 100%;
    }
    
    /* Makale içeriğini mobilde tam genişliğe sığdırma */
    .article-content .container {
        padding-left: 10px;
        padding-right: 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .article-text {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    /* Makaledeki resim ve diğer öğeleri merkeze hizalama */
    .article-main-image {
        max-width: 100%;
        margin: 0 0 30px;
        width: 100%;
    }
    
    .article-image {
        max-width: 100%;
        margin: 30px 0;
        width: 100%;
    }
    
    /* Makale çağrı kutuları ve alıntıları düzenleme */
    .article-callout {
        max-width: 100%;
        margin: 30px 0;
        width: 100%;
    }
    
    /* Paylaşım ve etiket bölümlerini düzenleme */
    .share-article, 
    .article-tags {
        max-width: 100%;
        margin: 30px 0;
        width: 100%;
    }
    
    /* Hakkımızda sayfasında misyon ve vizyon bölümünü mobilde gizle */
    .mission-vision {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .article-content .container {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .article-text {
        padding: 0;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-callout {
        padding: 15px;
        margin: 20px 0;
    }
}

/* Kategoriler Sayfası Stilleri */
.categories-hero {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
}

.categories-section {
    padding: 70px 0;
    background-color: #fff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: var(--card-gradient);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    border-top: 4px solid var(--primary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    /* Arka plan görünürlüğünü sağlamak için */
    background-color: #ffffff;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(78, 84, 200, 0.3);
}

.category-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
    color: var(--dark-color);
    font-weight: 600;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.category-stats {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #777;
}

.category-stats span i {
    margin-right: 5px;
    color: var(--primary-color);
}

.category-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--gradient);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(78, 84, 200, 0.3);
    transition: var(--transition);
}

.category-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.category-link:hover {
    box-shadow: 0 8px 20px rgba(78, 84, 200, 0.5);
    color: white;
}

.category-link:hover i {
    transform: translateX(5px);
}

.popular-categories {
    background-color: #f4f9fd;
    padding: 70px 0;
    position: relative;
}

/* Web Araçları Sayfası Stilleri */
.tools-hero {
    background: linear-gradient(135deg, #3949ab, #4fc3f7);
}

.tools-category {
    padding: 70px 0;
    background-color: #fff;
}

.tools-nav {
    margin-bottom: 40px;
}

.tools-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    gap: 15px;
    margin-top: 30px;
}

.tools-filter li {
    padding: 8px 20px;
    background-color: #f5f5f5;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.9rem;
}

.tools-filter li:hover {
    background-color: #e0e0e0;
}

.tools-filter li.active {
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(78, 84, 200, 0.3);
}

.tools-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.tools-info {
    background-color: #f4f9fd;
    padding: 70px 0;
    position: relative;
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.info-text {
    padding-right: 20px;
}

.section-title.left-align {
    text-align: left;
}

.section-title.left-align::after {
    left: 0;
    transform: none;
}

.info-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #666;
}

.info-text a {
    font-weight: 500;
}

.info-list {
    list-style: none;
    margin: 25px 0;
}

.info-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.info-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.info-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .info-content {
        grid-template-columns: 1fr;
    }
    
    .info-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .info-text {
        padding-right: 0;
    }
    
    .section-title.left-align {
        text-align: center;
    }
    
    .section-title.left-align::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .card-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .apps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Menü butonunun konumunu düzeltme */
    header .container {
        position: relative;
    }
    
    .menu-toggle {
        position: absolute;
        right: 30px; /* 35px'ten 60px'e değiştirildi */
        top: 50%;
        transform: translateY(-50%);
    }
    
    .logo-container {
        margin-right: auto;
    }
    
    /* Hakkımızda sayfasında misyon ve vizyon bölümünü mobilde gizle */
    .mission-vision {
        display: none;
    }
    
    /* İletişim sayfası mobil düzeni - formun sırasını değiştir */
    .contact-grid {
        display: flex;
        flex-direction: column;
    }
    
    .contact-info {
        order: 1;
    }
    
    .contact-form-wrapper {
        order: 2;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .tools-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .tools-filter li {
        width: 100%;
        text-align: center;
    }
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .card-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .apps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        margin: 10px 0;
    }
    
    .btn-outline {
        margin-left: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-nav .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 90px);
        background-color: white;
        flex-direction: column;
        padding: 20px;
        transition: var(--transition);
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .main-nav .nav-links.show {
        left: 0;
    }
    
    .main-nav .nav-links li {
        margin-left: 0;
        margin-bottom: 15px;
    }
    
    .nav-button {
        color: var(--dark-color);
    }
    
    .card-container {
        grid-template-columns: 1fr;
    }
    
    .apps-container {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .footer-links h4::after,
    .footer-categories h4::after,
    .footer-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul a,
    .footer-categories ul a {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .search-container input {
        padding: 15px 20px;
    }
    
    .card-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .app-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* Makale Detay Sayfası Stilleri */
.article-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

.progress-bar {
    height: 100%;
    background: var(--gradient);
    width: 0;
    transition: width 0.1s linear;
}

.article-header {
    background: var(--gradient);
    color: white;
    padding: 150px 0 70px;
    position: relative;
    text-align: center;
}

.article-category {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.article-category a {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.article-category a:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.article-category i {
    margin-right: 8px;
}

.article-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.article-meta span {
    display: flex;
    align-items: center;
}

.article-meta i {
    margin-right: 8px;
}

.article-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin-right: 15px;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.article-content {
    padding: 70px 0;
    background-color: white;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
}

.main-content {
    line-height: 1.8;
}

.article-main-image {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.article-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

figcaption {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    padding: 10px;
    font-style: italic;
}

.article-intro {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.7;
}

.article-text h2 {
    font-size: 1.8rem;
    margin: 30px 0 20px;
    color: var(--dark-color);
}

.article-text p {
    margin-bottom: 20px;
    color: #555;
}

.article-callout {
    background-color: #f9f9f9;
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    margin: 30px 0;
    position: relative;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.article-callout i.fa-quote-left {
    color: rgba(0, 0, 0, 0.05);
    font-size: 2.5rem;
    position: absolute;
    top: 20px;
    left: 20px;
}

.article-callout blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
    margin-left: 40px;
}

.article-image {
    margin: 30px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.info-box {
    background: linear-gradient(135deg, rgba(78, 84, 200, 0.1), rgba(143, 148, 251, 0.1));
    border-left: none;
    border-radius: var(--border-radius);
    border-top: 4px solid var(--primary-color);
}

.info-box h4 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-box h4 i {
    font-size: 1.2rem;
    margin-right: 10px;
}

.share-article {
    margin: 40px 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.share-article h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.social-share {
    display: flex;
    gap: 10px;
}

.social-share a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-share a:hover {
    transform: translateY(-3px);
}

.social-share a.facebook {
    background-color: #3b5998;
}

.social-share a.twitter {
    background-color: #1da1f2;
}

.social-share a.whatsapp {
    background-color: #25d366;
}

.social-share a.linkedin {
    background-color: #0077b5;
}

.social-share a.email {
    background-color: #666;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

.article-tags i {
    color: #999;
    margin-right: 5px;
}

.article-tags a {
    display: inline-block;
    padding: 5px 12px;
    background-color: #f0f0f0;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #666;
    transition: var(--transition);
}

.article-tags a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 100px;
}

.widget {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    margin-bottom: 30px;
}

.widget-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.author-box {
    text-align: center;
}

.author-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #f0f0f0;
}

.author-box h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.author-box p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.author-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: var(--gradient);
    transition: var(--transition);
}

.author-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(78, 84, 200, 0.3);
}

.popular-posts ul {
    list-style: none;
}

.popular-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.popular-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-posts a {
    display: flex;
    align-items: center;
    color: var(--dark-color);
    transition: var(--transition);
}

.popular-posts a:hover {
    color: var(--primary-color);
}

.post-img {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-info h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.post-info span {
    font-size: 0.8rem;
    color: #999;
    display: flex;
    align-items: center;
}

.post-info span i {
    margin-right: 5px;
}

.sidebar-newsletter {
    position: relative;
}

.sidebar-newsletter input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 50px;
    font-size: 0.9rem;
    outline: none;
}

.sidebar-newsletter input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(78, 84, 200, 0.1);
}

.sidebar-newsletter button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: calc(100% - 10px);
    aspect-ratio: 1/1;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-newsletter button:hover {
    transform: scale(1.1);
}

.category-widget ul {
    list-style: none;
}

.category-widget li {
    margin-bottom: 12px;
}

.category-widget a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666;
    transition: var(--transition);
}

.category-widget a i {
    margin-right: 10px;
    color: var(--primary-color);
}

.category-widget a span {
    background-color: #f0f0f0;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.category-widget a:hover {
    color: var(--primary-color);
}

.category-widget a:hover span {
    background-color: var(--primary-color);
    color: white;
}

/* Related Articles Section */
.related-articles {
    background-color: #f4f9fd;
    padding: 70px 0;
    position: relative;
}

/* Comments Section */
.comments-section {
    padding: 70px 0;
    background-color: white;
}

.comment-form-container {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
}

.comment-form-container h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(78, 84, 200, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.btn-outline-dark {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.btn-outline-dark:hover {
    background: #333;
    color: white;
}

.comments-container {
    margin-top: 40px;
}

.comment {
    display: flex;
    margin-bottom: 30px;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-body {
    flex-grow: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-header h4 {
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.author-badge {
    display: inline-block;
    padding: 3px 8px;
    background: var(--gradient);
    color: white;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-left: 10px;
    font-weight: normal;
}

.comment-header span {
    font-size: 0.85rem;
    color: #999;
}

.comment-text {
    margin-bottom: 15px;
    color: #555;
}

.comment-actions {
    display: flex;
    gap: 20px;
}

.comment-actions a {
    font-size: 0.9rem;
    color: #777;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.comment-actions a i {
    margin-right: 5px;
}

.comment-actions a:hover {
    color: var(--primary-color);
}

.comment.reply {
    margin-top: 30px;
    padding-left: 30px;
    border-left: 2px solid #eee;
}

.load-more {
    text-align: center;
    margin-top: 40px;
}

/* Hakkımızda Sayfası Stilleri */
.about-hero {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.about-hero-content .subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease;
}

.about-intro {
    padding: 80px 0;
    background-color: #fff;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.intro-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.intro-text blockquote {
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    background-color: #f9f9f9;
    font-style: italic;
    color: #444;
    margin: 30px 0;
}

.about-values {
    background-color: #f4f9fd;
    padding: 80px 0;
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.value-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.mission, .vision {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.mission h3, .vision h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.mission h3 i, .vision h3 i {
    margin-right: 10px;
}

.mission p, .vision p {
    color: #555;
    line-height: 1.7;
}

.about-team {
    padding: 80px 0;
    background-color: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    height: 250px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
    background-color: #fff;
}

.team-info h3 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-desc {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-social {
    display: flex;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
}

.about-stats {
    padding: 80px 0;
    background-color: #f4f9fd;
    position: relative;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.4rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

.join-us {
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
}

.join-us h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.join-us p {
    margin-bottom: 25px;
    color: #555;
}

/* PDF-JPG Dönüştürücü Sayfası Stilleri */
.tool-hero {
    background: linear-gradient(135deg, #ff4e50, #f9d423);
    color: white;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.tool-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.tool-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.tool-hero-content .subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease;
}

.tool-main {
    padding: 70px 0;
    background-color: #fff;
}

.tool-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.tool-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(78, 84, 200, 0.3);
}

.step.completed .step-number {
    background-color: #4caf50;
    color: white;
}

.step-line {
    flex-grow: 1;
    height: 2px;
    background-color: #f0f0f0;
    margin: 0 15px;
    position: relative;
    top: -20px;
}

.step-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.upload-area {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
}

.upload-area.dragover {
    background-color: #f0f0f0;
    border-color: var(--primary-color);
}

.upload-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.upload-area h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.upload-area p {
    margin-bottom: 20px;
    color: #666;
}

.upload-info {
    font-size: 0.8rem;
    color: #999;
    margin-top: 15px;
}

.uploaded-file {
    margin-top: 20px;
}

.file-preview {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.file-icon {
    font-size: 2rem;
    color: #e74c3c;
    margin-right: 15px;
}

.file-info {
    flex-grow: 1;
}

.file-info h4 {
    margin: 0 0 5px;
    color: var(--dark-color);
}

.file-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.file-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    transition: color 0.3s ease;
}

.file-remove:hover {
    color: #e74c3c;
}

.tool-settings-container {
    margin-top: 30px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tool-settings-container h3 {
    margin-bottom: 25px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.tool-settings-container h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.settings-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.range-slider {
    display: flex;
    align-items: center;
}

.range {
    flex-grow: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: #ddd;
    border-radius: 3px;
    outline: none;
}

.range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient);
    cursor: pointer;
}

.range-value {
    margin-left: 15px;
    min-width: 40px;
    font-weight: 600;
    color: var(--primary-color);
}

.select-input, .text-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.select-input:focus, .text-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(78, 84, 200, 0.1);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
}

.page-range small {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    color: #999;
}

.settings-actions {
    display: flex;
    justify-content: space-between;
}

.tool-result-container {
    margin-top: 30px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0,  0, 0.05);
}

.result-success {
    text-align: center;
    margin-bottom: 30px;
}

.success-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 15px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.result-success h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.result-success p {
    color: #666;
}

.result-preview {
    margin-bottom: 30px;
}

.result-preview h4 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.preview-images {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 15px;
}

.preview-image {
    position: relative;
    flex-shrink: 0;
}

.preview-image img {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.page-number {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.result-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tool-features {
    margin-top: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9fd;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(78, 84, 200, 0.3);
}

.feature-item h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.tool-instructions {
    background-color: #f4f9fd;
    padding: 80px 0;
    position: relative;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.instruction-item {
    display: flex;
    align-items: flex-start;
}

.instruction-number {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.instruction-content h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.instruction-content p {
    color: #666;
    line-height: 1.6;
}

/* Mobil İçerik Genişliği İçin Ekstra Sınıf */
.mobile-full-width {
    width: 100%;
}

@media (max-width: 768px) {
    .mobile-full-width {
        width: 100vw;
        max-width: 100vw;
        margin-left: -10px;
        margin-right: -10px;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Container için ek düzeltme */
    .mobile-full-width .article-text {
        width: 100%;
        max-width: 100%;
        padding: 0 5px;
    }
    
    .mobile-full-width .article-main-image,
    .mobile-full-width .article-image {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

/* Duvar Kağıtları Bölümü */
.wallpapers {
    position: relative;
    background-color: #333;
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.wallpapers .section-title {
    color: #fff;
    margin-bottom: 40px;
}

.wallpapers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.wallpaper-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.wallpaper-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.wallpaper-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.wallpaper-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wallpaper-item:hover .wallpaper-image img {
    transform: scale(1.1);
}

.wallpaper-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.wallpaper-item h3 {
    padding: 15px 20px 5px;
    font-size: 1.2rem;
    font-weight: 600;
}

.wallpaper-rating {
    padding: 0 20px;
    color: #ffd700;
    margin-bottom: 10px;
}

.wallpaper-rating span {
    color: #fff;
    margin-left: 5px;
}

.wallpaper-meta {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.wallpaper-button {
    display: block;
    margin: 15px 20px;
    padding: 10px;
    text-align: center;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.wallpaper-button:hover {
    background: linear-gradient(135deg, #2ecc71, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .wallpapers-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.contact-card-icon {
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-card-content h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.contact-card-content p {
    margin-bottom: 0;
    color: #666;
    font-size: 0.95rem;
}

.social-contact {
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
}

.social-contact h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--dark-color);
    text-align: center;
}

.social-contact .social-icons {
    justify-content: center;
}

/* Sosyal medya ikonlarını renklendirme */
.social-contact .social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 5px;
    transition: var(--transition);
}

.social-contact .social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-contact .social-icons a.facebook {
    background-color: #3b5998;
}

.social-contact .social-icons a.twitter {
    background-color: #1da1f2;
}

.social-contact .social-icons a.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-contact .social-icons a.youtube {
    background-color: #ff0000;
}

.social-contact .social-icons a.linkedin {
    background-color: #0077b5;
}

.form-container {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
}

/* Lottie animasyonu için stil */
.lottie-animation {
    width: 100%;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SSS Bölümü İyileştirilmiş Stiller */
.faq-section {
    padding: 70px 0;
    background-color: #f4f9fd;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-item.active {
    border-left: 4px solid var(--primary-color);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #f0f4ff;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background-color: var(--primary-color);
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer p {
    color: #666;
    padding-bottom: 20px;
    margin: 0;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding-top: 5px;
}

/* Yazı ve görsellerin seçilmesini ve sürüklenmesini engelleme */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    -webkit-user-select: none;  /* Chrome, Safari, Opera */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* IE/Edge */
    user-select: none;          /* Standart sözdizimi */
    -webkit-user-drag: none;    /* Safari */
    -khtml-user-drag: none;     /* Konqueror */
    -moz-user-drag: none;       /* Firefox */
    -o-user-drag: none;         /* Opera */
    user-drag: none;            /* Standart sözdizimi (henüz desteklenmiyor) */
}

/* Form elemanları için istisnalar */
input, textarea, select, option, button {
    -webkit-user-select: auto;  /* Chrome, Safari, Opera */
    -moz-user-select: auto;     /* Firefox */
    -ms-user-select: auto;      /* IE/Edge */
    user-select: auto;          /* Standart sözdizimi */
}

/* Görsellere özel engelleme */
img {
    pointer-events: none; /* Görsellere tıklama ve sürüklemeyi engeller */
    -webkit-touch-callout: none; /* iOS için uzun dokunma menüsünü engeller */
}
