/* CSS Variables */
:root {
    --primary-color: #28a745;
    --secondary-color: #fbce10;
    --text-color: #1e293b;
    --text-muted: #475569;
    --background: #ffffff;
    --background-alt: #f8fafc;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
}
  
 
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding-top: 80px;
}

/* Ana sayfa için padding-top'u sıfırla */
.home-page body {
    padding-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
  
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #b39000 0%, #fbcd12 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
     box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
	 color:#fff;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #4f46e5;
    padding: 12px 24px;
    border: 2px solid #4f46e5;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background: #4f46e5;
    color: white;
    transform: translateY(-2px); 
}

.btn-login {
    color: #4f46e5;
    font-weight: 500;
    padding: 8px 16px;
    border: 2px solid #4f46e5;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-login:hover {
    background: #f3f4f6;
    text-decoration: underline;
    color: #080366;
}

.btn-trial {
    background: #4f46e5;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-trial:hover {
    background: #3730a3;
    transform: translateY(-1px);
    text-decoration: underline;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    padding: 0;
}

.header-top {
    background: #f8fafc;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.header-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    font-size: 14px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-links a {
    color: #64748b;
    transition: color 0.3s ease;
}

.header-links a:hover {
    color: #4f46e5;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.nav-brand .logo img {
    height: 40px;
}

.logo-mobile {
    display: none;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 35px;
    background: transparent;
    z-index: 999;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

 


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--background);
    box-shadow: var(--shadow-medium);
    border-radius: var(--border-radius);
    padding: 20px;
    min-width: 400px;
    max-width: 1200px;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 1001;
    border: 1px solid var(--border-color);
}

.dropdown-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
    display: flex !important;
    flex-direction: row !important;
    gap: 25px !important;
    min-width: 820px !important;
    justify-content: flex-start !important;
}

/* 2 Kolon Dropdown Yapısı */
.dropdown-column {
    flex: 1 !important;
    min-width: 350px !important;
    width: 50% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.dropdown-item {
    display: block !important;
    padding: 10px 0px !important;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: all .3s ease;
    color: var(--text-color);
    margin-bottom: 5px !important;
    border-radius: 0 !important;
    background: white;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #f8fafc !important;
    color: var(--primary-color);
     border-color: transparent;
}

.dropdown-item-content {
    display: block;
}

.item-title {
    display: block;
    font-weight: 500;
    color: var(--text-color);
     font-size: 14px;
}

.item-desc {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
	font-weight:300;
}

.dropdown-item:hover .item-title {
    color: var(--primary-color);
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}


.dropdown-section {
    flex: 1;
}

.dropdown-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-section a {
    display: block;
    padding: 5px 0;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.dropdown-section a:last-child {
    border-bottom: none;
}

.dropdown-section a:hover {
    background: #f8fafc;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -10px;
    margin-right: -10px;
}

.dropdown-section a .dropdown-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.dropdown-section a i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 2px;
    min-width: 20px;
    flex-shrink: 0;
}

.dropdown-section a .dropdown-content {
    flex: 1;
}

.dropdown-section a span {
    display: block;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0px;
}

.dropdown-section a small {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.dropdown-section a:hover span {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #374151;
    transition: all 0.3s ease;
}

/* Main Content */
.main-content {
    margin-top: 35px;
}
/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    margin-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Prevent grid overflow on smaller screens */
@media (max-width: 991px) {
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

.hero-title {
    margin-bottom: 20px;
}

.hero-title {
    margin-bottom: 20px;
}

.title-main {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}

.title-quote {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: #4f46e5;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #64748b;
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-actions {
    margin-top: 30px;
}

.hero-image img {
    width: 100%;
  }

/* Features Highlight */
.features-highlight {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-image {
    flex-shrink: 0;
}

.feature-image img {
    
    object-fit: cover;
    border-radius: 8px;
}

.feature-content h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-content p {
    margin-bottom: 20px;
    color: #64748b;
}

/* Rating Section */
.rating-section {
    padding: 30px 0;
    background: #f8fafc;
    text-align: center;
}

.rating-content h2 {
    color: #1e293b;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.rating-content p {
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #64748b;
}

.rating-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

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

.rating-stars {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: center;
}

.rating-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.rating-item p {
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

/* Main Features */
.main-features {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.main-features h2 {
    color: #1e293b;
    margin-bottom: 20px;
}

.main-features > p {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #64748b;
}

.features-tabs {
    max-width: 1300px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    border-bottom: 2px solid #e2e8f0;
	
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
	
}

.tab-btn.active {
    color: #28a745;
    border-bottom-color: #28a745;
}

.tab-btn:hover {
    color: #28a745;
}

.tab-content {
    margin-top: 40px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 30px;
    margin-top: 20px;
    background: #fafafa;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}

.feature-showcase .feature-image img {
    width: 100%;
     
}

.feature-details h3 {
    color: #1e293b;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.feature-details ul {
    list-style: none;
    margin-bottom: 30px;
}

.feature-details li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 25px;
	text-align: left;
	line-height: normal;
}

.feature-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Solutions */
.solutions {
    padding: 50px 0;
   background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    text-align: center;
    color: white;
}

.solutions h2 {
    color: white;
    margin-bottom: 20px;
}

.solutions p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.solutions .btn-primary {
    background: white;
    color: #495057;
}

.solutions .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.testimonials h2 {
    color: #1e293b;
    margin-bottom: 20px;
}

.testimonials > p {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #64748b;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.testimonial-item {
    display: block;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    align-items: center;
    text-align: left;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-text blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author h4 {
    color: #1e293b;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #64748b;
    margin: 0;
    font-size: 14px;
}

.testimonial-cta {
    text-align: center;
}

.testimonial-cta p {
    margin-top: 15px;
    color: #64748b;
    font-size: 14px;
}

/* Mobile App */
.mobile-app {
    padding: 80px 0;
    background: #f8fafc;
}

.mobile-app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mobile-app-text h2 {
    color: #1e293b;
    margin-bottom: 20px;
}

.mobile-app-text p {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.app-download-buttons {
     gap: 15px;
}

.app-download-buttons img {
    height: 50px;
    transition: transform 0.3s ease;
}

.app-download-buttons a:hover img {
    transform: scale(1.05);
}

.mobile-app-image img {
    width: 100%;
    height: auto;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: white;
}

.blog-section h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 20px;
}

.blog-section > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #64748b;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 25px;
}

.blog-category {
    color: #4f46e5;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-content h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.blog-content p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.read-more {
    color: #4f46e5;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #3730a3;
}

.blog-cta {
    text-align: center;
}

/* Partners */
.partners {
    padding: 30px 0;
    background: #f8fafc;
}

.partner-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.partner-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 25px;
}

.partner-logo img {
    height: 150px;
    width: 200px;
	border-radius: 12px;
}

.partner-content p {
    margin-bottom: 5px;
    color: #64748b;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.contact-section h2 {
    color: #1e293b;
    margin-bottom: 20px;
}

.contact-section > .container > p {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #64748b;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.contact-method {
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-method h3 {
    color: #1e293b;
    margin-bottom: 15px;
}

.contact-method p {
    color: #64748b;
    margin-bottom: 20px;
}

.contact-link {
    color: #4f46e5;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link:hover {
    color: #3730a3;
}
.contact-link:focus {
     
}
.contact-cta {
    text-align: center;
}

/* Final CTA */
.final-cta {
    padding: 30px 0;
    background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
    text-align: center;
    color: white;
}

.final-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.final-cta .btn-primary {
    background: #fbcf14;
    margin-bottom: 20px;
}

.cta-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section h4 {
    color: #cbd5e1;
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #94a3b8;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-subsection {
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item h4 {
    color: #cbd5e1;
    margin-bottom: 5px;
    font-size: 14px;
}

.contact-item a {
    color: #94a3b8;
    font-size: 14px;
}

.contact-item a:hover {
    color: white;
}

.footer-mobile-app {
    text-align: center;
	width: 380px;
     margin-bottom: 40px;
    padding: 30px;
    background: #334155;
    border-radius: 12px;
}

.footer-mobile-app h3 {
    margin-bottom: 20px;
}

.footer-social {
    text-align: center;
    margin-bottom: 40px;
}

.footer-social h3 {
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #fbcd10;
    transform: translateY(-2px);
}

.social-links i {
    font-size: 25px;
}

.footer-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.partner-item {
    background: #334155;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.partner-item h4 {
    color: white;
    margin-bottom: 15px;
}

.partner-item img {
    height: 40px;
    margin-bottom: 15px;
}

.partner-item p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 15px;
}

.partner-item a {
    color: #495057;
    font-weight: 600;
    font-size: 14px;
}

.partner-item a:hover {
    color: #3a3a3a;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal a {
    color: #94a3b8;
    font-size: 12px;
}

.footer-legal a:hover {
    color: white;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-badges img {
    height: 30px;
}

/* Blog Styles - Verdiğiniz HTML yapısına uygun */

/* Breadcrumb Section */
.breadcrumb-section {
    padding: 15px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-item {
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb-item a {
    color: #4f46e5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #3730a3;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #495057;
    font-weight: 500;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #6c757d;
}

/* Blog Header */
.blog-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.blog-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.blog-header-content p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Categories */
.blog-categories {
    padding: 50px 0;
    background: white;
}

.categories-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 10px 20px;
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-item:hover,
.category-item.active {
    background: #4f46e5;
    border-color: #4f46e5;
    color: white;
    transform: translateY(-2px);
}

.category-name {
    font-size: 14px;
}

.category-count {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.category-item.active .category-count {
    background: rgba(255, 255, 255, 0.3);
}

/* Featured Posts */
.featured-posts {
    padding: 60px 0;
    background: #f8f9fa;
}

.featured-posts h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 40px;
    text-align: center;
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-main {
    display: grid;
    gap: 0;
}

.featured-main .featured-image {
    height: 300px;
}

.featured-main .featured-content {
    padding: 30px;
     
}

.featured-image {
    height: 200px;
    overflow: hidden;
}

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

.featured-card:hover .featured-image img {
    transform: scale(1.05);
}

.featured-content {
    padding: 25px;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.featured-meta .category {
    color: #4f46e5;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-meta .date {
    color: #6c757d;
    font-size: 12px;
}

.featured-content h3 {
    margin-bottom: 15px;
}

.featured-content h3 a {
    color: #1e293b;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.featured-main .featured-content h3 a {
    font-size: 1.5rem;
}

.featured-content h3 a:hover {
    color: #4f46e5;
}

.featured-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.featured-author span {
    color: #6c757d;
    font-size: 13px;
    font-weight: 500;
}

/* Blog Posts */
.blog-posts {
    padding: 60px 0;
    background: white;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-main {
    min-width: 0;
}

.posts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.posts-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.posts-count {
    color: #6c757d;
    font-size: 14px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #e2e8f0;
}

.post-image {
    height: 200px;
    overflow: hidden;
}

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

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.post-meta .category {
    color: #4f46e5;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-meta .date {
    color: #6c757d;
    font-size: 12px;
}

.post-content h3 {
    margin-bottom: 15px;
}

.post-content h3 a {
    color: #1e293b;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.post-content h3 a:hover {
    color: #4f46e5;
}

.post-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-author span {
    color: #6c757d;
    font-size: 13px;
    font-weight: 500;
}

.read-more {
    color: #4f46e5;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #3730a3;
    text-decoration: underline;
}

/* Blog Sidebar */
.blog-sidebar {
    min-width: 0;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.sidebar-widget p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input[type="email"] {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    border-color: #fcce0f;
}

.newsletter-form .btn-primary {
    background: #fcce0f;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form .btn-primary:hover {
    background: #fcce0f;
}

/* Recent Posts */
.recent-posts {
        display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 10px;
}

.recent-post {
     
    border-bottom: 1px solid #f1f5f9;
}

.recent-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-content {
    flex: 1;
    min-width: 0;
}

.recent-content h4 {
    margin-bottom: 8px;
}

.recent-content h4 a {
    color: #1e293b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-content h4 a:hover {
    color: #4f46e5;
}

.recent-date {
    color: #6c757d;
    font-size: 12px;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 10px;
    margin: 0;
}

.category-list li {
     
    border-bottom: 1px solid #f1f5f9;
}

.category-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.category-list a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #4f46e5;
}

.category-list span {
    color: #6c757d;
    font-size: 12px;
    background: #f8f9fa;
    padding: 2px 8px;
    border-radius: 10px;
}

/* Blog CTA */
.blog-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn-primary {
    background: white;
    color: #4f46e5;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-content .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.breadcrumb-section {
    padding: 20px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: #4f46e5;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #64748b;
}

.blog-latest {
    padding: 60px 0;
    background: white;
}

.blog-all {
    padding: 60px 0;
    background: #f8fafc;
}

.blog-featured {
    padding: 60px 0;
    background: white;
}

.blog-latest h2,
.blog-all h2,
.blog-featured h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1e293b;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 25px;
}

.blog-category {
    color: #4f46e5;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-content h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.blog-content p {
    color: #64748b;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.blog-meta {
    margin-bottom: 15px;
}

.blog-date {
    color: #94a3b8;
    font-size: 12px;
}

.read-more {
    color: #4f46e5;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #3730a3;
}

.blog-cta {
    text-align: center;
    margin-top: 40px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
}

.pagination-btn,
.pagination-current {
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-btn {
    background: white;
    color: #4f46e5;
    border: 1px solid #e2e8f0;
}

.pagination-btn:hover {
    background: #4f46e5;
    color: white;
    border-color: #4f46e5;
}

.pagination-current {
    background: #4f46e5;
    color: white;
    border: 1px solid #4f46e5;
}

/* Blog Sayfalama Stilleri */
.blog-pagination {
    margin: 50px 0 30px !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    clear: both !important;
}

.pagination-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    max-width: 100% !important;
    flex-direction: row !important;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    color: #4f46e5;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pagination-btn:hover {
    background: #4f46e5;
    color: white;
    border-color: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.pagination-btn i {
    font-size: 12px;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    background: white;
    color: #64748b;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    background: #f1f5f9;
    color: #4f46e5;
    border-color: #4f46e5;
    transform: translateY(-2px);
}

.pagination-number.current {
    background: #4f46e5;
    color: white;
    border-color: #4f46e5;
    cursor: default;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.pagination-dots {
    color: #94a3b8;
    font-weight: bold;
    padding: 0 5px;
    user-select: none;
}

.no-content {
    text-align: center;
    padding: 60px 20px;
}

.no-content h3 {
    color: #1e293b;
    margin-bottom: 15px;
}

.no-content p {
    color: #64748b;
}

.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 20px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.newsletter-form .btn-primary {
    background: white;
    color: #4f46e5;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.form-checkboxes {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    margin-top: 2px;
}

.checkbox-label a {
    color: rgba(10, 1, 1, 0.9);
    text-decoration: underline;
}

.video-blogs {
    padding: 80px 0;
    background: #f8fafc;
}

.video-blogs h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1e293b;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(79, 70, 229, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    background: #4f46e5;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-content {
    padding: 25px;
}

.video-category {
    color: #4f46e5;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.video-content h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.4;
}

.video-link {
    color: #4f46e5;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.video-link:hover {
    color: #3730a3;
}

.video-cta {
    text-align: center;
}

.blog-testimonials {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.testimonials-content h2 {
    color: #1e293b;
    margin-bottom: 20px;
}

.testimonials-content > p {
    color: #64748b;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.testimonial-highlight {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    align-items: center;
    text-align: left;
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-highlight .testimonial-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-highlight blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-highlight .testimonial-author h4 {
    color: #1e293b;
    margin-bottom: 5px;
}

.testimonial-highlight .testimonial-author p {
    color: #64748b;
    margin: 0;
    font-size: 14px;
}

.testimonial-cta {
    text-align: center;
}

.testimonial-cta p {
    margin-top: 15px;
    color: #64748b;
    font-size: 14px;
}

/* Feature Detail Page Styles */
.feature-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.feature-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.feature-hero-text p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.feature-hero-actions {
    margin-top: 30px;
}

.feature-hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-navigation {
    padding: 9px 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 125px;
    z-index: 100;
}

.feature-nav-links {
    display: flex;
    justify-content: center;
     flex-wrap: wrap;
}

.nav-link {
color: #64748b;
    font-weight: 500;
    text-decoration: none;
    padding: 4px 10px;
    margin: 2px;
    border-radius: 6px;
    border: 1px solid #ddd;
    transition: all .3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #4f46e5;
    background: #f8fafc;
}

.feature-what-is {
    padding: 60px 0;
    background: white;
 }

.feature-what-is h2 {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 2rem;
}

.feature-what-is p {
     margin: 0 auto;
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

.feature-capabilities {
    padding: 80px 0;
    background: #f8fafc;
}

.feature-capabilities h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 50px;
    font-size: 2rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.capability-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
}

.capability-image {
    height: 200px;
    overflow: hidden;
}

.capability-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.capability-content {
    padding: 25px;
}

.capability-content h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.capability-content p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.capability-link {
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.capability-link:hover {
    color: #3730a3;
}

.feature-main-features {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 2rem;
}

.section-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.main-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.main-feature-item {
    text-align: center;
}

.main-feature-image {
    margin-bottom: 20px;
}

.main-feature-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}

.main-feature-content h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.main-feature-content p {
    color: #64748b;
    line-height: 1.6;
}

.feature-advantages {
    padding: 20px 0;
    background: #f8fafc;
}

.feature-advantages h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 50px;
    font-size: 2rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.advantage-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-image {
    margin-bottom: 20px;
}

.advantage-image img {
     height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.advantage-content h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.advantage-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 14px;
}

.feature-usage-guide {
    padding: 80px 0;
    background: white;
}

.usage-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.guide-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.guide-item:hover {
    transform: translateY(-5px);
}

.guide-image {
    height: 200px;
    overflow: hidden;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.guide-content {
    padding: 25px;
}

.guide-content h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.guide-content p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
}

.guide-link {
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.guide-link:hover {
    color: #3730a3;
}

.guide-cta {
    text-align: center;
}

.feature-mobile-app {
    padding: 80px 0;
    background: #f8fafc;
}

.feature-testimonials {
    padding: 80px 0;
    background: white;
}

.feature-faq {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-content > p {
    text-align: center;
    color: #64748b;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.faq-list {
    margin-bottom: 40px;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    background: #f8fafc;
    padding: 20px;
    margin: 0;
    color: #1e293b;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.faq-item h3:hover {
    background: #e2e8f0;
}

.faq-item h3:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active h3:after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
    padding: 0 20px;
     overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin-bottom: 40px;
}

.faq-category {
    background: white;
    color: #495057;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-category:hover {
    background: #495057;
    color: white;
    border-color: #495057;
}

.faq-cta {
    text-align: center;
}

.feature-blog {
    padding: 80px 0;
    background: white;
}

.related-features {
    padding: 80px 0;
    background: #f8fafc;
}

.related-features h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 50px;
    font-size: 2rem;
}

.related-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.related-feature-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.related-feature-item:hover {
    transform: translateY(-5px);
}

.related-feature-image {
    height: 150px;
    overflow: hidden;
}

.related-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-feature-content {
    padding: 25px;
}

.related-feature-content h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.related-feature-link {
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-feature-link:hover {
    color: #3730a3;
}


/* SSS (FAQ) Page Styles */

/* SSS Header */
.sss-header {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.sss-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.sss-header-content p {
    font-size: 1.2rem;
    color: #64748b;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* SSS Search */
.sss-search {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.sss-search input {
    width: 100%;
    padding: 16px 60px 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sss-search input:focus {
    border-color: #4f46e5;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.2);
}

.sss-search button {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: #4f46e5;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sss-search button:hover {
    background: #3730a3;
    transform: translateY(-50%) scale(1.05);
}

/* SSS Categories */
.sss-categories {
    padding: 80px 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    gap: 12px;
}

.category-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #4f46e5;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.category-icon i {
    font-size: 32px;
    color: white;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.category-card:hover h3 {
    color: #4f46e5;
}

.category-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
}

.category-count {
    background: #f1f5f9;
    color: #4f46e5;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.category-card:hover .category-count {
    background: #4f46e5;
    color: white;
}

/* Popular Questions */
.popular-questions {
    padding: 80px 0;
    background: #f8fafc;
}

.popular-questions h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 50px;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: #e2e8f0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #f8fafc;
    color: #28a745;
}

.faq-question.active {
    background: #f8fafc;
    color: #28a745;
    border-bottom: 1px solid #e2e8f0;
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
    padding-right: 20px;
}

.faq-question i {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: #64748b;
}

.faq-question.active i {
    transform: rotate(180deg);
    color: #4f46e5;
}

.faq-answer {
    display: none;
    padding: 0 5px 5px;
    background: white;
}

.faq-content {
    color: #64748b;
    line-height: 1.7;
    font-size: 15px;
}

.faq-content p {
    margin-bottom: 15px;
}

/* FAQ Helpful Section */
.faq-helpful {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.faq-helpful span {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.helpful-buttons {
    display: flex;
    gap: 10px;
}

.helpful-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.helpful-btn:hover {
    background: #4f46e5;
    color: white;
    border-color: #4f46e5;
    transform: translateY(-2px);
}

.helpful-btn i {
    font-size: 12px;
}

.helpful-thanks {
    color: #10b981;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    background: #f0fdf4;
    border-radius: 20px;
    border: 1px solid #bbf7d0;
}

/* All Categories FAQ */
.all-categories-faq {
    padding: 80px 0;
    background: white;
}

.all-categories-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 60px;
}

.category-section {
    max-width: 900px;
    margin: 0 auto 60px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.category-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.view-all-link {
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 16px;
    border: 1px solid #4f46e5;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    background: #4f46e5;
    color: white;
    transform: translateY(-2px);
}

/* SSS Contact Section */
.sss-contact {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-content {
    text-align: center;
    margin-bottom: 50px;
}

.contact-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.contact-content p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.contact-method {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-method:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #fbcd10;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbcd10 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-method:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.contact-icon i {
    font-size: 32px;
    color: white;
}

.contact-method h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.contact-method p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 15px;
}

.contact-link {
    color: #4e4e4e;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    padding: 12px 24px;
    border: 2px solid #fcce12;
    border-radius: 25px;
    display: inline-block;
    transition: all .3s ease;
}

.contact-link:hover {
    background: #e2e8f0;
    color: #4e4e4e;
    transform: translateY(-2px);
}

/* SSS CTA Section */
.sss-cta {
    padding: 40px 0;
    background: linear-gradient(135deg, #fbce10 0%, #28a745 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn-primary {
    background: white;
    color: #4f46e5;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-content .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States */
button:focus,
a:focus {
     
    outline-offset: 2px;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* ========================================
   SSS KATEGORİ SAYFASI CSS
   ======================================== */

/* SSS Kategori Hero Section */
.sss-kategori-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.sss-kategori-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.sss-kategori-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.sss-kategori-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.sss-kategori-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.kategori-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

/* SSS Kategori Ana İçerik Layout */
.sss-kategori-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.sss-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

/* SSS Listesi */
.sss-main {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.sss-header {
    padding: 30px;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sss-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.sss-header p {
    color: #6c757d;
    margin: 0;
}

.sss-count {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 10px;
}

/* SSS Arama Kutusu */
.sss-search {
    padding: 20px 30px;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.search-box .search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

/* SSS Öğeleri */
.sss-list {
    padding: 0;
}

.sss-item {
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.sss-item:last-child {
    border-bottom: none;
}

.sss-item:hover {
    background: #f8f9fa;
}

.sss-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.sss-question:hover {
    color: #007bff;
}

.sss-question.active {
    color: #007bff;
    background: #f8f9fa;
}

.sss-question .question-text {
    flex: 1;
    margin-right: 15px;
    line-height: 1.5;
}

.sss-question .toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #6c757d;
}

.sss-question.active .toggle-icon {
    transform: rotate(180deg);
    color: #007bff;
}

.sss-answer {
    display: none;
    padding: 0 30px 25px;
    color: #495057;
    line-height: 1.7;
    animation: slideDown 0.3s ease;
}

.sss-answer.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sss-answer p {
    margin-bottom: 1rem;
}

.sss-answer p:last-child {
    margin-bottom: 0;
}

/* SSS Faydalı Butonları */
.sss-helpful {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sss-helpful span {
    font-size: 0.9rem;
    color: #6c757d;
}

.helpful-btn {
    background: none;
    border: 1px solid #e9ecef;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.helpful-btn:hover {
    background: #f8f9fa;
    border-color: #007bff;
    color: #007bff;
}

.helpful-btn.voted {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

/* SSS Sidebar */
.sss-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.widget-header {
    padding: 20px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.widget-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.widget-content {
    padding: 20px;
}

 

.category-list li {
    border-bottom: 1px solid #e9ecef;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: #28a745;
    padding-left: 20px;
}

.category-list a.active {
    color: #28a745;
    font-weight: 500;
}

.category-count {
    background: #e9ecef;
    color: #6c757d;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.category-list a:hover .category-count,
.category-list a.active .category-count {
    background: #28a745;
    color: white;
}

/* SSS Popüler SSS */
.popular-sss {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-sss li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.popular-sss li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-sss a {
    color: #495057;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    display: block;
    transition: color 0.3s ease;
}

.popular-sss a:hover {
    color: #007bff;
}

/* SSS İletişim Widget */
.contact-widget {
    text-align: center;
}

.contact-widget p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.5;
}

.contact-btn {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40,167,69,0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40,167,69,0.4);
    color: white;
    text-decoration: none;
}

/* SSS Sayfalama */
.sss-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.pagination li {
    display: flex;
}

.pagination-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pagination-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border: 1px solid #e9ecef;
    color: #495057;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    min-width: 45px;
}

.pagination a:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination .current {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination .disabled {
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.5;
}

/* ========================================
   SSS SAYFASI CSS
   ======================================== */

/* SSS Sayfası Hero Section */
.sss-sayfasi-hero {
    background: linear-gradient(135deg, #17a2b8 0%, #007bff 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.sss-sayfasi-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="40" height="20" patternUnits="userSpaceOnUse"><path d="M0 10 Q10 0 20 10 T40 10 V20 H0 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    opacity: 0.3;
}

.sss-sayfasi-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.sss-sayfasi-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.sss-sayfasi-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* SSS Arama Bölümü */
.sss-arama {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.arama-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.arama-container h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.arama-container p {
    color: #6c757d;
    margin-bottom: 2rem;
}

.arama-form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.arama-form input {
    width: 100%;
    padding: 15px 60px 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.arama-form input:focus {
    border-color: #17a2b8;
    outline: none;
    box-shadow: 0 4px 20px rgba(23,162,184,0.2);
}

.arama-form button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #17a2b8;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arama-form button:hover {
    background: #138496;
    transform: translateY(-50%) scale(1.05);
}

/* SSS Kategoriler */
.sss-kategoriler {
    padding: 60px 0;
    background: #f8f9fa;
}

.kategoriler-header {
    text-align: center;
    margin-bottom: 50px;
}

.kategoriler-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.kategoriler-header p {
    color: #6c757d;
    font-size: 1.1rem;
}

.kategoriler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.kategori-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.kategori-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #17a2b8 0%, #007bff 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.kategori-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: #17a2b8;
    text-decoration: none;
    color: inherit;
}

.kategori-card:hover::before {
    transform: scaleX(1);
}

.kategori-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #17a2b8 0%, #007bff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto -10px;
    padding: 8px 4px 7px 10px;
    transition: all 0.3s ease;
    color: white;
}

.kategori-card:hover .kategori-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(23,162,184,0.3);
}

.kategori-icon i {
    font-size: 2rem;
    color: white;
}

.kategori-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.kategori-card:hover h3 {
    color: #17a2b8;
}

.kategori-card p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.kategori-soru-sayisi {
    background: #e9ecef;
    color: #495057;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.kategori-card:hover .kategori-soru-sayisi {
    background: #17a2b8;
    color: white;
}

/* Popüler SSS */
.populer-sss {
    padding: 80px 0;
    background: white;
}

.populer-header {
    text-align: center;
    margin-bottom: 50px;
}

.populer-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.populer-header p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* SSS Accordion */
.sss-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.sss-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.sss-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #17a2b8;
}

.sss-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.sss-question:hover {
    background: #f8f9fa;
    color: #17a2b8;
}

.sss-question.active {
    background: #f8f9fa;
    color: #17a2b8;
    border-bottom: 1px solid #e9ecef;
}

.sss-question .question-text {
    flex: 1;
    line-height: 1.5;
    padding-right: 20px;
}

.sss-question .toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #6c757d;
}

.sss-question.active .toggle-icon {
    transform: rotate(180deg);
    color: #17a2b8;
}

.sss-answer {
    display: none;
    padding: 0 30px 30px;
    background: white;
}

.sss-answer.show {
    display: block;
    animation: slideDown 0.3s ease;
}

.sss-content {
    color: #495057;
    line-height: 1.7;
    font-size: 1rem;
}

.sss-content p {
    margin-bottom: 1rem;
}

.sss-content p:last-child {
    margin-bottom: 0;
}

/* SSS Faydalı Butonları */
.sss-helpful {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.sss-helpful span {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.helpful-buttons {
    display: flex;
    gap: 10px;
}

.helpful-btn {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #6c757d;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.helpful-btn:hover {
    background: #17a2b8;
    color: white;
    border-color: #17a2b8;
    transform: translateY(-2px);
}

.helpful-btn i {
    font-size: 0.8rem;
}

.helpful-thanks {
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    background: #d4edda;
    border-radius: 20px;
    border: 1px solid #c3e6cb;
}

/* SSS İstatistikleri */
.sss-istatistikler {
    padding: 60px 0;
    background: #f8f9fa;
}

.istatistikler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.istatistik-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.istatistik-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.istatistik-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #17a2b8 0%, #007bff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.istatistik-icon i {
    font-size: 1.5rem;
    color: white;
}

.istatistik-sayi {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.istatistik-baslik {
    font-size: 1.1rem;
    font-weight: 500;
    color: #6c757d;
}

/* SSS İletişim */
.sss-iletisim {
    padding: 80px 0;
    background: white;
}

.iletisim-content {
    text-align: center;
    margin-bottom: 50px;
}

.iletisim-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.iletisim-content p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.iletisim-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.iletisim-method {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.iletisim-method:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: #17a2b8;
}

.iletisim-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #17a2b8 0%, #007bff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.iletisim-method:hover .iletisim-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(23,162,184,0.3);
}

.iletisim-icon i {
    font-size: 2rem;
    color: white;
}

.iletisim-method h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.iletisim-method p {
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.6;
}

.iletisim-link {
    color: #17a2b8;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 12px 24px;
    border: 2px solid #17a2b8;
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
}

.iletisim-link:hover {
    background: #17a2b8;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

/* SSS CTA */
.sss-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #17a2b8 0%, #007bff 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.sss-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-waves" width="50" height="25" patternUnits="userSpaceOnUse"><path d="M0 12.5 Q12.5 0 25 12.5 T50 12.5 V25 H0 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-waves)"/></svg>');
    opacity: 0.3;
}

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

.sss-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.sss-cta p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    background: white;
    color: #17a2b8;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.cta-btn:hover {
    background: rgba(255,255,255,0.9);
    color: #138496;
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255,255,255,0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #17a2b8;
}

/* ========================================
   BLOG DETAY SAYFASI CSS
   ======================================== */

/* Blog Article */
.blog-article {
    padding: 40px 0;
    background: white;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 1271px;
    margin-left: auto;
    margin-right: auto;
	border-radius:15px;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-category {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
    color: white;
    text-decoration: none;
}

.article-meta time {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-excerpt {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.article-author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 30px;
}

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

.author-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 16px;
}

.reading-time {
    color: #64748b;
    font-size: 14px;
    padding: 4px 12px;
    background: #f1f5f9;
    border-radius: 12px;
}

.article-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.view-count {
    color: #64748b;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-count::before {
    content: "👁";
    font-size: 12px;
}

/* Article Featured Image */
.article-featured-image {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Layout */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    align-items: start;
}

.article-content {
    min-width: 0;
}

.content-wrapper {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}

.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
    color: #1e293b;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-wrapper h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.content-wrapper h3 {
    font-size: 1.5rem;
}

.content-wrapper h4 {
    font-size: 1.3rem;
}

.content-wrapper p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.content-wrapper blockquote {
    border-left: 4px solid #4f46e5;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: #f8fafc;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #64748b;
}

.content-wrapper code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9em;
    color: #e11d48;
}

.content-wrapper pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
}

.content-wrapper pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-wrapper th,
.content-wrapper td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.content-wrapper th {
    background: #f8fafc;
    font-weight: 600;
    color: #1e293b;
}

.content-wrapper a {
    color: #4f46e5;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.content-wrapper a:hover {
    color: #3730a3;
}

/* Article Tags */
.article-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.article-tags h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #f1f5f9;
    color: #64748b;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #4f46e5;
    color: white;
    transform: translateY(-2px);
}

/* Article Share */
.article-share {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.article-share h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

/* Article Sidebar */
.article-sidebar {
    min-width: 0;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.sidebar-widget p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
	padding:10px;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
	padding:10px;
}

.newsletter-form input[type="email"] {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    border-color: #4f46e5;
}

.newsletter-form .btn-primary {
    background: #fbcd11;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-widget .btn-primary a{
    background: #fbcd11;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form .btn-primary:hover {
    background: #fccd11;
}

/* Recent Posts */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.recent-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-content {
    flex: 1;
    min-width: 0;
}

.recent-content h4 {
    margin-bottom: 8px;
}

.recent-content h4 a {
    color: #1e293b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-content h4 a:hover {
    color: #4f46e5;
}

.recent-date {
    color: #64748b;
    font-size: 12px;
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    text-align: center;
}

.cta-widget h3 {
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-widget p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-widget .btn-primary {
    background: white;
    color: #4f46e5;
}

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

/* Related Articles */
.related-articles {
    padding: 60px 0;
    background: #f8fafc;
}

.related-articles h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #e2e8f0;
}

.related-image {
    height: 200px;
    overflow: hidden;
}

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

.related-card:hover .related-image img {
    transform: scale(1.05);
}

.related-content {
    padding: 25px;
}

.related-content h3 {
    margin-bottom: 15px;
}

.related-content h3 a {
    color: #1e293b;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.related-content h3 a:hover {
    color: #4f46e5;
}

.related-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #64748b;
}

.related-meta .author {
    font-weight: 500;
}

.related-meta .date {
    color: #94a3b8;
}

/* Blog Article CTA */
.blog-article-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    text-align: center;
    color: white;
}

.blog-article-cta .cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.blog-article-cta .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-article-cta .btn-primary {
    background: white;
    color: #495057;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.blog-article-cta .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    color: #f8fafc;
    text-decoration: none;
}

/* Blog Detay Responsive */
@media (max-width: 991px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .article-sidebar {
        order: -1;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-excerpt {
        font-size: 1.1rem;
    }
    
    .article-author-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .related-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .blog-article {
        padding: 30px 0;
    }
    
    .article-header {
        margin-bottom: 30px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-excerpt {
        font-size: 1rem;
    }
    
    .article-author-info {
        padding: 15px 0;
    }
    
    .author-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .content-wrapper {
        font-size: 15px;
    }
    
    .content-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.3rem;
    }
    
    .share-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .share-btn {
        justify-content: center;
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .sidebar-widget {
        padding: 0px;
        margin-bottom: 20px;
    }
    
    .recent-post {
        gap: 12px;
        padding-bottom: 15px;
    }
    
    .recent-image {
        width: 70px;
        height: 50px;
    }
    
    .recent-content h4 a {
        font-size: 13px;
    }
    
    .related-articles {
        padding: 40px 0;
    }
    
    .related-articles h2 {
        font-size: 1.8rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .related-content {
        padding: 20px;
    }
    
    .blog-article-cta {
        padding: 40px 0;
    }
    
    .blog-article-cta .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 575px) {
    .article-title {
        font-size: 1.6rem;
    }
    
    .article-excerpt {
        font-size: 0.95rem;
    }
    
    .content-wrapper {
        font-size: 14px;
    }
    
    .content-wrapper h2 {
        font-size: 1.3rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.2rem;
    }
    
    .tags-list {
        gap: 8px;
    }
    
    .tag {
        padding: 4px 10px;
        font-size: 12px;
    }
    
    .share-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
    
    .sidebar-widget {
        padding: 0px;
    }
    
    .sidebar-widget h3 {
        font-size: 1.1rem;
    }
    
    .recent-image {
        width: 60px;
        height: 45px;
    }
    
    .recent-content h4 a {
        font-size: 12px;
    }
    
    .recent-date {
        font-size: 11px;
    }
    
    .related-content {
        padding: 15px;
    }
    
    .related-content h3 a {
        font-size: 1.1rem;
    }
    
    .blog-article-cta .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .blog-article-cta .cta-content p {
        font-size: 1rem;
    }
}

/* ========================================
   DESTEK DETAY SAYFASI CSS
   ======================================== */

/* Support Article Specific Styles */
.support-article .article-category {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.support-article .article-category:hover {
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Difficulty Badge */
.difficulty-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.difficulty-kolay {
    background: #d4edda;
    color: #155724;
}

.difficulty-orta {
    background: #fff3cd;
    color: #856404;
}

.difficulty-zor {
    background: #f8d7da;
    color: #721c24;
}

/* Article Helpful Section */
.article-helpful {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.article-helpful h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

.helpful-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.helpful-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.helpful-btn:hover {
    border-color: #28a745;
    color: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2);
}

.helpful-btn.helpful-yes:hover {
    background: #28a745;
    color: white;
}

.helpful-btn.helpful-no:hover {
    border-color: #dc3545;
    color: #dc3545;
}

.helpful-btn.helpful-no:hover {
    background: #dc3545;
    color: white;
}

.helpful-btn i {
    font-size: 16px;
}

.helpful-thanks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: #d4edda;
    color: #155724;
    border-radius: 8px;
    font-weight: 500;
}

.helpful-thanks i {
    font-size: 18px;
    color: #28a745;
}

/* Support Article CTA Widget */
.support-article .cta-widget {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.support-article .cta-widget h3 {
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.support-article .cta-widget p {
    color: rgba(255, 255, 255, 0.9);
}

.support-article .cta-widget .btn-primary {
    background: white;
    color: #28a745;
}

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

/* Support Article Share Buttons */
.support-article .share-btn.copy-link {
    background: #6c757d;
}

.support-article .share-btn.copy-link:hover {
    background: #5a6268;
}

/* Support Article Stats */
.helpful-count {
    color: #64748b;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.helpful-count::before {
    content: "👍";
    font-size: 12px;
}

/* Support Related Articles */
.support-article .related-articles {
    background: #f8fafc;
}

.support-article .related-articles h2 {
    color: #1e293b;
}

.support-article .related-card {
    border-left: 4px solid #28a745;
}

.support-article .related-card:hover {
    border-left-color: #20c997;
}

.support-article .related-meta .difficulty {
    background: #f1f5f9;
    color: #64748b;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
}

/* Support Article Responsive */
@media (max-width: 767px) {
    .difficulty-badge {
        font-size: 11px;
        padding: 3px 10px;
    }
    
    .helpful-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .helpful-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .article-helpful {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .helpful-thanks {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .article-meta {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .difficulty-badge {
        font-size: 10px;
        padding: 2px 8px;
    }
    
    .helpful-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .helpful-btn i {
        font-size: 14px;
    }
}

/* ========================================
   MOBILE RESPONSIVE CSS - FEATURE DETAIL PAGES
   ======================================== */

/* Feature Detail Mobile */
@media (max-width: 768px) {
    /* Feature Hero Mobile */
    .feature-hero {
        padding: 80px 0 60px;
    }
    
    .feature-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .feature-hero-text {
        order: 2;
    }
    
    .feature-hero-image {
        order: 1;
    }
    
    .feature-hero-text h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .feature-hero-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    /* Feature Navigation Mobile */
    .feature-nav-links {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 6px 12px;
        margin: 2px;
    }
    
    /* Feature Capabilities Mobile */
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .capability-card {
        text-align: center;
        padding: 20px;
    }
    
    .capability-image img {
        max-width: 100%;
        height: auto;
    }
    
    /* Feature Advantages Mobile */
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .advantage-item {
        text-align: center;
        padding: 20px;
    }
    
    .advantage-image img {
        max-width: 100%;
        height: auto;
    }
    
    /* Usage Guide Mobile */
    .usage-guide-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .guide-item {
        text-align: center;
    }
    
    .guide-image img {
        max-width: 100%;
        height: auto;
    }
    
    /* Feature Mobile App Mobile */
    .feature-mobile-app .mobile-app-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .feature-mobile-app .mobile-app-text {
        order: 2;
    }
    
    .feature-mobile-app .mobile-app-image {
        order: 1;
    }
    
    .feature-mobile-app .app-download-buttons {
        justify-content: center;
        gap: 15px;
    }
    
    /* Related Features Mobile */
    .related-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .related-feature-item {
        text-align: center;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 15px;
        font-size: 14px;
    }
    
    .faq-content {
        padding: 15px;
    }
    
    /* Blog Grid Mobile */
    .feature-blog .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 575px) {
    .feature-hero {
        padding: 60px 0 40px;
    }
    
    .feature-hero-text h1 {
        font-size: 1.8rem;
    }
    
    .feature-hero-text p {
        font-size: 0.95rem;
    }
    
    .feature-nav-links {
        gap: 6px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .capability-card,
    .advantage-item {
        padding: 15px;
    }
    
    .capability-content h3,
    .advantage-content h3 {
        font-size: 1.1rem;
    }
    
    .guide-content h3 {
        font-size: 1rem;
    }
    
    .guide-meta {
        font-size: 0.85rem;
    }
    
    .app-download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .app-download-buttons img {
        max-width: 180px;
    }
}

/* ========================================
   MOBILE RESPONSIVE CSS - MAIN SECTIONS
   ======================================== */

/* Hero Section Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-quote {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Partners Section Mobile */
    .partner-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .partner-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }
    
    .partner-logo img {
        width: 100%;
        max-width: 280px;
        height: auto;
    }
    
    .partner-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .partner-content p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    /* Features Tabs Mobile */
    .tab-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .tab-btn {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    .feature-showcase {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .feature-image {
        order: 1;
    }
    
    .feature-details {
        order: 2;
    }
    
    /* Rating Section Mobile */
    .rating-stats {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .rating-item {
        text-align: center;
    }
    
    /* Mobile App Section Mobile */
    .mobile-app-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .mobile-app-text {
        order: 2;
    }
    
    .mobile-app-image {
        order: 1;
    }
    
    .app-download-buttons {
        justify-content: center;
        gap: 15px;
    }
    
    /* Contact Methods Mobile */
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Blog Grid Mobile */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Testimonials Mobile */
    .testimonials-slider {
        text-align: center;
    }
    
    .testimonial-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .title-main {
        font-size: 1.8rem;
    }
    
    .title-quote {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .partner-card {
        padding: 20px;
    }
    
    .partner-content h3 {
        font-size: 1.1rem;
    }
    
    .partner-content p {
        font-size: 0.9rem;
    }
    
    .btn-secondary {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .tab-btn {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    
    .feature-details h3 {
        font-size: 1.4rem;
    }
    
    .rating-stats {
        gap: 25px;
    }
    
    .rating-number {
        font-size: 1.8rem;
    }
    
    .app-download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .app-download-buttons img {
        max-width: 180px;
    }
    
    .contact-methods {
        gap: 20px;
    }
    
    .blog-grid {
        gap: 20px;
    }
}

/* ========================================
   RESPONSIVE CSS
   ======================================== */

/* Large Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .title-main {
        font-size: 3.5rem;
    }
    
    .title-quote {
        font-size: 2.5rem;
    }
}

/* Desktop */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* SSS Layout */
    .sss-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sss-sidebar {
        order: -1;
    }
    
    /* İletişim Layout */
    .iletisim-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 15px;
    }
    
    /* Header */
    .header-top {
        display: none;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-height: 80vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-desktop {
        display: none;
    }
    
    .logo-mobile {
        display: block;
    }
    
    /* Hero */
    .hero {
        padding: 100px 0 60px;
        margin-top: 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-quote {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        display: block;
        text-align: center;
        padding: 25px;
    }
    
    .feature-image {
        margin-bottom: 20px;
    }
    
    .feature-image img {
        width: 120px;
        height: 90px;
        margin: 0 auto;
        display: block;
    }
    
    /* SSS Kategori Hero */
    .sss-kategori-hero {
        padding: 60px 0 40px;
    }
    
    .sss-kategori-hero h1 {
        font-size: 2rem;
    }
    
    .sss-kategori-hero p {
        font-size: 1rem;
    }
    
    /* SSS Sayfası Hero */
    .sss-sayfasi-hero {
        padding: 60px 0 40px;
    }
    
    .sss-sayfasi-hero h1 {
        font-size: 2rem;
    }
    
    .sss-sayfasi-hero p {
        font-size: 1rem;
    }
    
    /* İletişim Hero */
    .iletisim-hero {
        padding: 60px 0 40px;
    }
    
    .iletisim-hero h1 {
        font-size: 2rem;
    }
    
    .iletisim-hero p {
        font-size: 1rem;
        color:#fff; 
    }
    
    /* Grid Layouts */
    .kategoriler-grid,
    .iletisim-grid,
    .istatistikler-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    /* Form Row */
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Mobile Large */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
    
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Header */
    .nav-brand .logo img {
        height: 70px;
    }
    
    /* Hero */
    .hero {
        padding: 80px 0 50px;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-quote {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Sections */
    .sss-kategoriler,
    .populer-sss,
    .sss-istatistikler,
    .sss-iletisim,
    .sss-cta,
    .iletisim-content,
    .iletisim-form-section {
        padding: 40px 0;
    }
    
    /* SSS Hero Sections */
    .sss-kategori-hero,
    .sss-sayfasi-hero,
    .iletisim-hero {
        padding: 50px 0 30px;
    }
    
    .sss-kategori-hero h1,
    .sss-sayfasi-hero h1,
    .iletisim-hero h1 {
        font-size: 1.8rem;
    }
    
    .sss-kategori-hero p,
    .sss-sayfasi-hero p,
    .iletisim-hero p {
        font-size: 0.95rem;
    }
    
    /* Cards */
    .kategori-card,
    .iletisim-card,
    .istatistik-card,
    .iletisim-method {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .kategori-icon,
    .iletisim-icon,
    .istatistik-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .kategori-icon i,
    .iletisim-icon i,
    .istatistik-icon i {
        font-size: 1.5rem;
    }
    
    /* SSS Items */
    .sss-question {
        padding: 20px 25px;
        font-size: 1rem;
    }
    
    .sss-answer {
        padding: 0 25px 20px;
    }
    
    /* Forms */
    .form-header,
    .map-header,
    .iletisim-form,
    .ofis-bilgileri {
        padding: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    /* Search */
    .arama-form input {
        padding: 12px 50px 12px 15px;
        font-size: 0.95rem;
    }
    
    .arama-form button {
        width: 40px;
        height: 40px;
    }
    
    /* Grid Layouts */
    .kategoriler-grid,
    .iletisim-grid,
    .istatistikler-grid,
    .iletisim-methods {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 50px;
    }
    
    /* Sidebar */
    .sidebar-widget {
        padding: 0px;
        margin-bottom: 20px;
    }
    
    .widget-header {
        padding: 15px;
    }
    
    .widget-content {
        padding: 15px;
    }
}

/* Mobile Small */
@media (max-width: 575px) {
    .container {
        padding: 0 10px;
    }
    
    /* Typography */
    .title-main {
        font-size: 1.8rem;
    }
    
    .title-quote {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    /* Header */
    .navbar {
        padding: 10px 0;
    }
    
    .nav-brand .logo img {
        height: 30px;
    }
    
    /* Hero */
    .hero {
        padding: 70px 0 40px;
    }
    
    /* Sections */
    .sss-kategoriler,
    .populer-sss,
    .sss-istatistikler,
    .sss-iletisim,
    .sss-cta,
    .iletisim-content,
    .iletisim-form-section {
        padding: 30px 0;
    }
    
    /* SSS Hero Sections */
    .sss-kategori-hero,
    .sss-sayfasi-hero,
    .iletisim-hero {
        padding: 40px 0 25px;
        margin-bottom: 50px;
    }
    
    .sss-kategori-hero h1,
    .sss-sayfasi-hero h1,
    .iletisim-hero h1 {
        font-size: 1.6rem;
    }
    
    .sss-kategori-hero p,
    .sss-sayfasi-hero p,
    .iletisim-hero p {
        font-size: 0.9rem;
    }
    
    /* Cards */
    .kategori-card,
    .iletisim-card,
    .istatistik-card,
    .iletisim-method {
        padding: 15px;
        margin-bottom: 12px;
    }
    
    .kategori-icon,
    .iletisim-icon,
    .istatistik-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .kategori-icon i,
    .iletisim-icon i,
    .istatistik-icon i {
        font-size: 1.2rem;
    }
    
    .kategori-card h3,
    .iletisim-card h3,
    .iletisim-method h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .kategori-card p,
    .iletisim-card p,
    .iletisim-method p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    /* SSS Items */
    .sss-question {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .sss-answer {
        padding: 0 20px 15px;
        font-size: 0.9rem;
    }
    
    /* Forms */
    .form-header,
    .map-header,
    .iletisim-form,
    .ofis-bilgileri {
        padding: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    /* Search */
    .arama-form input {
        padding: 10px 45px 10px 12px;
        font-size: 0.9rem;
    }
    
    .arama-form button {
        width: 35px;
        height: 35px;
    }
    
    /* Buttons */
    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .contact-btn,
    .iletisim-link,
    .cta-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        text-align: center;
        display: inline-block;
    }
    
    /* Statistics */
    .istatistik-sayi {
        font-size: 2rem;
    }
    
    .istatistik-baslik {
        font-size: 1rem;
    }
    
    /* Helpful Buttons */
    .helpful-btn {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    /* Sidebar */
    .sidebar-widget {
        padding: 0px;
        margin-bottom: 15px;
    }
    
    .widget-header {
        padding: 12px;
    }
    
    .widget-content {
        padding: 12px;
    }
    
    .widget-header h3 {
        font-size: 1rem;
    }
    
    /* Popular SSS */
    .popular-sss a {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    /* Category List */
    .category-list a {
        font-size: 0.85rem;
        padding: 8px 0;
    }
    
    .category-count {
        font-size: 0.75rem;
        padding: 1px 6px;
    }
    
    /* Pagination */
    .pagination a,
    .pagination span {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-width: 40px;
    }
    
    /* Map */
    .map-embed {
        height: 250px;
    }
    
    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Mobile Extra Small */
@media (max-width: 375px) {
    .container {
        padding: 0 8px;
    }
    
    .title-main {
        font-size: 1.6rem;
    }
    
    .title-quote {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    /* SSS Hero */
    .sss-kategori-hero h1,
    .sss-sayfasi-hero h1,
    .iletisim-hero h1 {
        font-size: 1.4rem;
    }
    
    /* Cards */
    .kategori-card,
    .iletisim-card,
    .istatistik-card,
    .iletisim-method {
        padding: 12px;
    }
    
    .kategori-icon,
    .iletisim-icon,
    .istatistik-icon {
        width: 45px;
        height: 45px;
    }
    
    .kategori-icon i,
    .iletisim-icon i,
    .istatistik-icon i {
        font-size: 1rem;
    }
    
    /* SSS */
    .sss-question {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .sss-answer {
        padding: 0 15px 12px;
        font-size: 0.85rem;
    }
    
    /* Forms */
    .form-header,
    .map-header,
    .iletisim-form,
    .ofis-bilgileri {
        padding: 12px;
    }
    
    /* Search */
    .arama-form input {
        padding: 8px 40px 8px 10px;
        font-size: 0.85rem;
    }
    
    .arama-form button {
        width: 30px;
        height: 30px;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .sss-kategori-hero,
    .sss-sayfasi-hero,
    .iletisim-hero {
        padding: 40px 0 30px;
    }
    
    .title-main {
        font-size: 1.8rem;
    }
    
    .title-quote {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}

/* Touch Device Optimizations */
@media (any-pointer: coarse) {
    .btn-primary,
    .btn-secondary,
    .contact-btn,
    .iletisim-link,
    .cta-btn,
    .helpful-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .sss-question {
        min-height: 60px;
        padding: 20px 25px;
    }
    
    .kategori-card,
    .iletisim-method {
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .category-list a,
    .popular-sss a {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 8px 0;
    }
    
    .pagination a,
    .pagination span {
        min-height: 44px;
        min-width: 44px;
    }
    
    .arama-form button {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Hover Effects for Desktop */
@media (any-hover: hover) {
    .kategori-card:hover,
    .iletisim-card:hover,
    .iletisim-method:hover,
    .istatistik-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }
    
    .sss-item:hover {
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }
    
    .helpful-btn:hover,
    .contact-btn:hover,
    .iletisim-link:hover {
        transform: translateY(-2px);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .kategori-card,
    .iletisim-card,
    .iletisim-method,
    .istatistik-card,
    .helpful-btn,
    .contact-btn,
    .iletisim-link {
        transition: none;
    }
    
    .kategori-card:hover,
    .iletisim-card:hover,
    .iletisim-method:hover,
    .istatistik-card:hover,
    .helpful-btn:hover,
    .contact-btn:hover,
    .iletisim-link:hover {
        transform: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .sss-kategori-content,
    .sss-arama,
    .sss-kategoriler,
    .populer-sss,
    .sss-istatistikler,
    .sss-iletisim,
    .iletisim-content {
        background: #1a1a1a;
    }
    
    .sss-main,
    .kategori-card,
    .iletisim-card,
    .istatistik-card,
    .iletisim-method,
    .sidebar-widget,
    .form-container,
    .map-container {
        background: #2d2d2d;
        color: #e9ecef;
    }
    
    .sss-header,
    .form-header,
    .map-header,
    .widget-header {
        background: linear-gradient(135deg, #343a40 0%, #495057 100%);
        color: #e9ecef;
    }
    
    .sss-question,
    .kategori-card h3,
    .iletisim-card h3,
    .iletisim-method h3 {
        color: #e9ecef;
    }
    
    .sss-answer,
    .kategori-card p,
    .iletisim-card p,
    .iletisim-method p {
        color: #ced4da;
    }
}

/* Print Styles */
@media print {
    .sss-cta,
    .iletisim-cta,
    .arama-form,
    .helpful-buttons,
    .contact-btn,
    .iletisim-link,
    .cta-buttons {
        display: none;
    }
    
    .sss-kategori-hero,
    .sss-sayfasi-hero,
    .iletisim-hero {
        background: none;
        color: black;
        padding: 20px 0;
    }
    
    .kategori-card,
    .iletisim-card,
    .istatistik-card,
    .iletisim-method,
    .sidebar-widget,
    .form-container,
    .map-container {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
    
    .sss-layout,
    .iletisim-layout {
        grid-template-columns: 1fr;
    }
    
    .map-embed {
        display: none;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .kategori-icon,
    .iletisim-icon,
    .istatistik-icon {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ========================================
   DESTEK SAYFASI CSS
   ======================================== */

/* Destek Header */
.destek-header {
    padding: 30px 0;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.destek-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="support-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23support-pattern)"/></svg>');
    opacity: 0.3;
}

.destek-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.destek-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.destek-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
	color:white;
}

/* Destek Search */
.destek-search {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.destek-search input {
    width: 100%;
    padding: 16px 60px 16px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.destek-search input::placeholder {
    color: rgba(255,255,255,0.7);
}

.destek-search input:focus {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.destek-search button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.destek-search button:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.05);
}

/* Destek Categories */
.destek-categories {
    padding: 80px 0;
    background: white;
}

.destek-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    gap: 12px;
}

.category-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #28a745;
    text-decoration: none;
    color: inherit;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.category-card:hover h3 {
    color: #28a745;
}

.category-card p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
}

.category-count {
    background: #f8f9fa;
    color: #495057;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.category-card:hover .category-count {
    background: #28a745;
    color: white;
}

/* Popüler Makaleler */
.populer-makaleler {
    padding: 80px 0;
    background: #f8f9fa;
}

.populer-makaleler h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

.makaleler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.makale-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e9ecef;
}

.makale-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #28a745;
    text-decoration: none;
    color: inherit;
}

.makale-card-header {
    padding: 20px 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.makale-kategori {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e8f5e8;
    color: #28a745;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.makale-kategori i {
    font-size: 10px;
}

.makale-stats {
    display: flex;
    gap: 15px;
}

.goruntulenme {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #6c757d;
    font-size: 12px;
}

.goruntulenme i {
    font-size: 10px;
}

.makale-card-content {
    padding: 20px;
}

.makale-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.makale-card:hover h3 {
    color: #28a745;
}

.makale-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.makale-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tarih {
    color: #6c757d;
    font-size: 12px;
}

.read-more {
    color: #28a745;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #20c997;
}

.read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.makale-card:hover .read-more i {
    transform: translateX(3px);
}

/* Tüm Makaleler */
.tum-makaleler {
    padding: 80px 0;
    background: white;
}

.makaleler-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.makaleler-main {
    min-width: 0;
}

.makaleler-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.makaleler-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.makaleler-count {
    color: #6c757d;
    font-size: 14px;
}

/* No Content */
.no-content {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed #e9ecef;
}

.no-content-icon {
    width: 80px;
    height: 80px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.no-content-icon i {
    font-size: 2rem;
    color: #6c757d;
}

.no-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.no-content p {
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Sidebar */
.makaleler-sidebar {
    min-width: 0;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 0px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

/* Active Filter */
.active-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #e8f5e8;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #28a745;
}

.filter-label {
    font-size: 12px;
    color: #28a745;
    font-weight: 600;
}

.filter-value {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
    flex: 1;
}

.filter-remove {
    color: #dc3545;
    text-decoration: none;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.filter-remove:hover {
    background: rgba(220, 53, 69, 0.1);
}

/* Kategori List */
.kategori-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kategori-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.kategori-item:hover {
    background: #f8f9fa;
    border-color: #e9ecef;
    text-decoration: none;
    color: inherit;
}

.kategori-item.active {
    background: #e8f5e8;
    border-color: #28a745;
}

.kategori-item-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.kategori-item:hover .kategori-item-icon,
.kategori-item.active .kategori-item-icon {
    background: #28a745;
    color: white;
}

.kategori-item-icon i {
    font-size: 16px;
    color: #6c757d;
    transition: color 0.3s ease;
}

.kategori-item:hover .kategori-item-icon i,
.kategori-item.active .kategori-item-icon i {
    color: white;
}

.kategori-item-content {
    flex: 1;
}

.kategori-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.kategori-item:hover h4,
.kategori-item.active h4 {
    color: #28a745;
}

.kategori-item span {
    font-size: 12px;
    color: #6c757d;
}

/* Help Widget */
.help-widget {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    text-align: center;
}

.help-widget .help-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.help-widget .help-icon i {
    font-size: 1.5rem;
    color: white;
}

.help-widget h3 {
    color: white;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
}

.help-widget p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

.help-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.help-buttons .btn-primary {
    background: white;
    color: #28a745;
    border: none;
}

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

.help-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.help-buttons .btn-secondary:hover {
    background: white;
    color: #28a745;
}

/* Makale List */
.makale-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.makale-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.makale-item:hover {
    background: #f8f9fa;
    border-color: #e9ecef;
    text-decoration: none;
    color: inherit;
    transform: translateX(5px);
}

.makale-item-content {
    flex: 1;
    min-width: 0;
}

.makale-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.makale-item:hover h4 {
    color: #28a745;
}

.makale-item-meta {
    display: flex;
    gap: 10px;
    font-size: 11px;
    color: #6c757d;
}

.makale-item-meta .kategori {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
}

.makale-item i {
    color: #6c757d;
    font-size: 12px;
    transition: all 0.3s ease;
}

.makale-item:hover i {
    color: #28a745;
    transform: translateX(3px);
}

/* Destek CTA */
.destek-cta {
    padding: 30px 0;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.destek-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-support" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M0 20 Q10 10 20 20 T40 20 V40 H0 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-support)"/></svg>');
    opacity: 0.3;
}

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

.destek-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.destek-cta p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: #28a745;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.cta-buttons .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    color: #20c997;
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255,255,255,0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 13px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #28a745;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Destek Sayfası Responsive CSS */
@media (max-width: 991px) {
    /* Destek Header */
    .destek-header {
        padding: 60px 0;
    }
    
    .destek-header h1 {
        font-size: 2rem;
    }
    
    .destek-header p {
        font-size: 1rem;
    }
    
    /* Destek Categories */
    .destek-categories {
        padding: 60px 0;
    }
    
    .destek-categories h2 {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    /* Popüler Makaleler */
    .populer-makaleler {
        padding: 60px 0;
    }
    
    .populer-makaleler h2 {
        font-size: 2rem;
    }
    
    .makaleler-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    /* Tüm Makaleler Layout */
    .makaleler-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .makaleler-sidebar {
        order: -1;
    }
    
    /* Destek CTA */
    .destek-cta {
        padding: 60px 0;
    }
    
    .destek-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    /* Destek Header */
    .destek-header {
        padding: 50px 0;
    }
    
    .destek-header h1 {
        font-size: 1.8rem;
    }
    
    .destek-header p {
        font-size: 0.95rem;
    }
    
    /* Destek Search */
    .destek-search input {
        padding: 14px 55px 14px 18px;
        font-size: 15px;
    }
    
    .destek-search button {
        width: 36px;
        height: 36px;
        right: 7px;
    }
    
    /* Categories */
    .destek-categories {
        padding: 50px 0;
    }
    
    .destek-categories h2 {
        font-size: 1.8rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .category-card {
        padding: 25px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 18px;
    }
    
    .category-icon i {
        font-size: 1.8rem;
    }
    
    .category-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .category-card p {
        font-size: 13px;
        margin-bottom: 18px;
    }
    
    .category-count {
        padding: 6px 14px;
        font-size: 13px;
    }
    
    /* Popüler Makaleler */
    .populer-makaleler {
        padding: 50px 0;
    }
    
    .populer-makaleler h2 {
        font-size: 1.8rem;
    }
    
    .makaleler-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .makale-card-header {
        padding: 18px 18px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .makale-card-content {
        padding: 18px;
    }
    
    .makale-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .makale-card p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    /* Tüm Makaleler */
    .tum-makaleler {
        padding: 50px 0;
    }
    
    .makaleler-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .makaleler-header h2 {
        font-size: 1.6rem;
    }
    
    /* Sidebar */
    .sidebar-widget {
        padding: 0px;
        margin-bottom: 20px;
    }
    
    .sidebar-widget h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .kategori-item {
        padding: 12px;
        gap: 12px;
    }
    
    .kategori-item-icon {
        width: 35px;
        height: 35px;
    }
    
    .kategori-item-icon i {
        font-size: 14px;
    }
    
    .kategori-item h4 {
        font-size: 13px;
    }
    
    .kategori-item span {
        font-size: 11px;
    }
    
    /* Help Widget */
    .help-widget .help-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .help-widget .help-icon i {
        font-size: 1.3rem;
    }
    
    .help-widget h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .help-widget p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .help-buttons .btn-primary,
    .help-buttons .btn-secondary {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    /* Makale List */
    .makale-list {
        gap: 12px;
    }
    
    .makale-item {
        padding: 12px;
        gap: 12px;
    }
    
    .makale-item h4 {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .makale-item-meta {
        font-size: 10px;
        gap: 8px;
    }
    
    /* Destek CTA */
    .destek-cta {
        padding: 50px 0;
    }
    
    .destek-cta h2 {
        font-size: 1.8rem;
    }
    
    .destek-cta p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        padding: 12px 25px;
        font-size: 15px;
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 575px) {
    /* Destek Header */
    .destek-header {
        padding: 40px 0;
    }
    
    .destek-header h1 {
        font-size: 1.6rem;
    }
    
    .destek-header p {
        font-size: 0.9rem;
    }
    
    /* Destek Search */
    .destek-search input {
        padding: 12px 50px 12px 16px;
        font-size: 14px;
    }
    
    .destek-search button {
        width: 32px;
        height: 32px;
        right: 6px;
    }
    
    .destek-search button i {
        font-size: 12px;
    }
    
    /* Categories */
    .destek-categories {
        padding: 40px 0;
    }
    
    .destek-categories h2 {
        font-size: 1.5rem;
    }
    
    .categories-grid {
        gap: 15px;
    }
    
    .category-card {
        padding: 20px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .category-icon i {
        font-size: 1.5rem;
    }
    
    .category-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .category-card p {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .category-count {
        padding: 5px 12px;
        font-size: 12px;
    }
    
    /* Popüler Makaleler */
    .populer-makaleler {
        padding: 40px 0;
    }
    
    .populer-makaleler h2 {
        font-size: 1.5rem;
    }
    
    .makale-card-header {
        padding: 15px 15px 0;
    }
    
    .makale-card-content {
        padding: 15px;
    }
    
    .makale-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .makale-card p {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .makale-kategori {
        padding: 4px 10px;
        font-size: 11px;
    }
    
    .goruntulenme {
        font-size: 11px;
    }
    
    .tarih {
        font-size: 11px;
    }
    
    .read-more {
        font-size: 13px;
    }
    
    /* Tüm Makaleler */
    .tum-makaleler {
        padding: 40px 0;
    }
    
    .makaleler-header h2 {
        font-size: 1.4rem;
    }
    
    .makaleler-count {
        font-size: 13px;
    }
    
    /* No Content */
    .no-content {
        padding: 40px 15px;
    }
    
    .no-content-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .no-content-icon i {
        font-size: 1.5rem;
    }
    
    .no-content h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .no-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    /* Sidebar */
    .sidebar-widget {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .sidebar-widget h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .active-filter {
        padding: 10px 12px;
    }
    
    .filter-label {
        font-size: 11px;
    }
    
    .filter-value {
        font-size: 13px;
    }
    
    .kategori-item {
        padding: 10px;
        gap: 10px;
    }
    
    .kategori-item-icon {
        width: 30px;
        height: 30px;
    }
    
    .kategori-item-icon i {
        font-size: 12px;
    }
    
    .kategori-item h4 {
        font-size: 12px;
    }
    
    .kategori-item span {
        font-size: 10px;
    }
    
    /* Help Widget */
    .help-widget {
        padding: 15px;
    }
    
    .help-widget .help-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .help-widget .help-icon i {
        font-size: 1.1rem;
    }
    
    .help-widget h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .help-widget p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .help-buttons .btn-primary,
    .help-buttons .btn-secondary {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    /* Makale List */
    .makale-list {
        gap: 10px;
    }
    
    .makale-item {
        padding: 10px;
        gap: 10px;
    }
    
    .makale-item h4 {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .makale-item-meta {
        font-size: 9px;
        gap: 6px;
    }
    
    .makale-item i {
        font-size: 10px;
    }
    
    /* Destek CTA */
    .destek-cta {
        padding: 40px 0;
    }
    
    .destek-cta h2 {
        font-size: 1.5rem;
    }
    
    .destek-cta p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .destek-header h1 {
        font-size: 1.4rem;
    }
    
    .destek-categories h2,
    .populer-makaleler h2,
    .destek-cta h2 {
        font-size: 1.3rem;
    }
    
    .category-card {
        padding: 15px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .category-icon i {
        font-size: 1.2rem;
    }
    
    .makale-card-header {
        padding: 12px 12px 0;
    }
    
    .makale-card-content {
        padding: 12px;
    }
    
    .sidebar-widget {
        padding: 12px;
    }
}

/* Touch Optimizations for Destek */
@media (any-pointer: coarse) {
    .category-card {
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 25px;
    }
    
    .makale-card {
        min-height: 250px;
    }
    
    .kategori-item {
        min-height: 60px;
        padding: 15px;
    }
    
    .makale-item {
        min-height: 60px;
        padding: 12px;
    }
    
    .help-buttons .btn-primary,
    .help-buttons .btn-secondary {
        min-height: 44px;
        min-width: 44px;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        min-height: 44px;
        min-width: 44px;
    }
    
    .destek-search button {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Hover Effects for Desktop */
@media (any-hover: hover) {
    .category-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .makale-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .kategori-item:hover {
        transform: translateX(5px);
    }
    
    .makale-item:hover {
        transform: translateX(5px);
    }
}

/* ========================================
   DESTEK SAYFASI CSS EKLEMELERİ
   ======================================== */

/* Destek Search Stilleri */
.destek-search {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.destek-search input {
    width: 100%;
    padding: 15px 60px 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 16px;
    background: #fff;
    transition: all 0.3s ease;
}

.destek-search input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.destek-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #fcce11;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.destek-search button:hover {
    background: #cba509;
    transform: translateY(-50%) scale(1.05);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 99999 !important;
    margin-top: 5px;
}

.search-result-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f1f3f4;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-result-item:hover {
    background: #f8f9fa;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.search-result-excerpt {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
}

.search-result-category {
    font-size: 12px;
    color: #667eea;
    margin-top: 4px;
}

/* Sidebar Widget - Basit liste tasarımı */
.sidebar-widget {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
}

.sidebar-widget h3 {
    background: #28a745;
    color: white;
    margin: 0;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.kategori-tree {
    padding: 0;
}

/* Tüm Makaleler */
.kategori-item {
    display: block;
    padding: 15px 20px;
    background: #28a745;
    text-decoration: none;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.kategori-item:hover {
    background: #5b5bd6;
    text-decoration: none;
    color: white;
}

.kategori-item.active {
    background: #4f46e5;
    color: white;
}

.kategori-item-content h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: white;
    display: inline;
}

.kategori-item-content span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 8px;
}

/* Kategori Grupları - Basit liste */
.kategori-group {
    border-bottom: 1px solid #e5e7eb;
}

.kategori-group:last-child {
    border-bottom: none;
}

.kategori-header-item {
    display: block;
}

.kategori-header-link {
    display: block;
    padding: 10px 0px;
    background: white;
    text-decoration: none;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s ease;
}

.kategori-header-link:hover {
    background: #f9fafb;
    text-decoration: none;
    color: #374151;
}

.kategori-header-link.active {
    background: #eff6ff;
    color: #2563eb;
}

.kategori-name {
    font-size: 14px;
    font-weight: 500;
    display: inline;
}

.kategori-count {
    font-size: 13px;
    color: #6b7280;
    margin-left: 8px;
}

.kategori-header-link.active .kategori-count {
    color: #2563eb;
}

/* Alt kategoriler - Basit girinti */
.alt-kategoriler {
    background: #f9fafb;
    display: none;
}

.alt-kategori-item {
    border-bottom: 1px solid #f3f4f6;
}

.alt-kategori-item:last-child {
    border-bottom: none;
}

.alt-kategori-link {
    display: block;
    padding: 12px 20px 12px 40px;
    text-decoration: none;
    color: #6b7280;
    font-size: 13px;
    background: #f9fafb;
    transition: background 0.2s ease;
}

.alt-kategori-link:hover {
    background: #f3f4f6;
    text-decoration: none;
    color: #374151;
}

.alt-kategori-link.active {
    background: #dbeafe;
    color: #2563eb;
}

.alt-kategori-count {
    font-size: 12px;
    color: #9ca3af;
    margin-left: 8px;
}

.alt-kategori-link.active .alt-kategori-count {
    color: #2563eb;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .destek-search {
        margin: 20px 0;
    }
    
    .destek-search input {
        padding: 12px 50px 12px 15px;
        font-size: 14px;
    }
    
    .destek-search button {
        width: 40px;
        height: 40px;
    }
    
    .sidebar-widget {
        margin-bottom: 30px;
    }
    
    .sidebar-widget h3 {
        padding: 15px;
        font-size: 16px;
    }
    
    .kategori-tree {
        padding: 15px;
    }
    
    .kategori-item {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .kategori-item-content h4 {
        font-size: 14px;
    }
    
    .kategori-item-content span {
        font-size: 12px;
    }
    
    .kategori-header-item {
        padding: 10px 12px;
    }
    
    .kategori-name {
        font-size: 13px;
    }
    
    .alt-kategoriler {
        margin-left: 15px;
        padding-left: 8px;
    }
    
    .alt-kategori-link {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .makaleler-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .makale-card {
        margin-bottom: 15px;
    }
    
    .makale-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .makale-card-content h3 {
        font-size: 16px;
        line-height: 1.4;
    }
    
    .makale-card-content p {
        font-size: 14px;
    }
    
    .search-results {
        margin-top: 10px;
        border-radius: 6px;
    }
    
    .search-result-item {
        padding: 10px 12px;
    }
    
    .search-result-title {
        font-size: 14px;
    }
    
    .search-result-excerpt {
        font-size: 13px;
    }
    
    .populer-makaleler .makaleler-grid {
        grid-template-columns: 1fr;
    }
    
    .tum-makaleler .row {
        flex-direction: column;
    }
    
    .tum-makaleler .col-lg-3,
    .tum-makaleler .col-lg-9 {
        width: 100%;
        max-width: 100%;
        flex: none;
    }
}

@media (max-width: 480px) {
    .destek-header-content h1 {
        font-size: 24px;
    }
    
    .destek-header-content p {
        font-size: 14px;
    }
    
    .kategori-item {
        padding: 10px;
    }
    
    .kategori-item-icon {
        font-size: 16px;
        margin-right: 8px;
    }
    
    .kategori-item-content h4 {
        font-size: 13px;
    }
    
    .makale-card-content h3 {
        font-size: 15px;
    }
    
    .makale-card-content p {
        font-size: 13px;
    }
    
    .search-result-title {
        font-size: 13px;
    }
    
    .search-result-excerpt {
        font-size: 12px;
    }
}

/* ========================================
   MANUEL GRID SİSTEMİ
   ======================================== */

/* Container */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Row */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/* Columns */
[class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Base columns */
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
    .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
    .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
    .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
    .col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
    .col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-xl-9 { flex: 0 0 75%; max-width: 75%; }
    .col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Extra extra large devices (extra large desktops, 1400px and up) */
@media (min-width: 1400px) {
    .col-xxl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-xxl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-xxl-3 { flex: 0 0 25%; max-width: 25%; }
    .col-xxl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-xxl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-xxl-6 { flex: 0 0 50%; max-width: 50%; }
    .col-xxl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-xxl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-xxl-9 { flex: 0 0 75%; max-width: 75%; }
    .col-xxl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-xxl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-xxl-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Auto columns */
.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

@media (min-width: 576px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
}

@media (min-width: 1400px) {
    .col-xxl {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
}

/* Offset classes */
.offset-1 { margin-left: 8.333333%; }
.offset-2 { margin-left: 16.666667%; }
.offset-3 { margin-left: 25%; }
.offset-4 { margin-left: 33.333333%; }
.offset-5 { margin-left: 41.666667%; }
.offset-6 { margin-left: 50%; }
.offset-7 { margin-left: 58.333333%; }
.offset-8 { margin-left: 66.666667%; }
.offset-9 { margin-left: 75%; }
.offset-10 { margin-left: 83.333333%; }
.offset-11 { margin-left: 91.666667%; }

@media (min-width: 576px) {
    .offset-sm-0 { margin-left: 0; }
    .offset-sm-1 { margin-left: 8.333333%; }
    .offset-sm-2 { margin-left: 16.666667%; }
    .offset-sm-3 { margin-left: 25%; }
    .offset-sm-4 { margin-left: 33.333333%; }
    .offset-sm-5 { margin-left: 41.666667%; }
    .offset-sm-6 { margin-left: 50%; }
    .offset-sm-7 { margin-left: 58.333333%; }
    .offset-sm-8 { margin-left: 66.666667%; }
    .offset-sm-9 { margin-left: 75%; }
    .offset-sm-10 { margin-left: 83.333333%; }
    .offset-sm-11 { margin-left: 91.666667%; }
}

@media (min-width: 768px) {
    .offset-md-0 { margin-left: 0; }
    .offset-md-1 { margin-left: 8.333333%; }
    .offset-md-2 { margin-left: 16.666667%; }
    .offset-md-3 { margin-left: 25%; }
    .offset-md-4 { margin-left: 33.333333%; }
    .offset-md-5 { margin-left: 41.666667%; }
    .offset-md-6 { margin-left: 50%; }
    .offset-md-7 { margin-left: 58.333333%; }
    .offset-md-8 { margin-left: 66.666667%; }
    .offset-md-9 { margin-left: 75%; }
    .offset-md-10 { margin-left: 83.333333%; }
    .offset-md-11 { margin-left: 91.666667%; }
}

@media (min-width: 992px) {
    .offset-lg-0 { margin-left: 0; }
    .offset-lg-1 { margin-left: 8.333333%; }
    .offset-lg-2 { margin-left: 16.666667%; }
    .offset-lg-3 { margin-left: 25%; }
    .offset-lg-4 { margin-left: 33.333333%; }
    .offset-lg-5 { margin-left: 41.666667%; }
    .offset-lg-6 { margin-left: 50%; }
    .offset-lg-7 { margin-left: 58.333333%; }
    .offset-lg-8 { margin-left: 66.666667%; }
    .offset-lg-9 { margin-left: 75%; }
    .offset-lg-10 { margin-left: 83.333333%; }
    .offset-lg-11 { margin-left: 91.666667%; }
}

@media (min-width: 1200px) {
    .offset-xl-0 { margin-left: 0; }
    .offset-xl-1 { margin-left: 8.333333%; }
    .offset-xl-2 { margin-left: 16.666667%; }
    .offset-xl-3 { margin-left: 25%; }
    .offset-xl-4 { margin-left: 33.333333%; }
    .offset-xl-5 { margin-left: 41.666667%; }
    .offset-xl-6 { margin-left: 50%; }
    .offset-xl-7 { margin-left: 58.333333%; }
    .offset-xl-8 { margin-left: 66.666667%; }
    .offset-xl-9 { margin-left: 75%; }
    .offset-xl-10 { margin-left: 83.333333%; }
    .offset-xl-11 { margin-left: 91.666667%; }
}

@media (min-width: 1400px) {
    .offset-xxl-0 { margin-left: 0; }
    .offset-xxl-1 { margin-left: 8.333333%; }
    .offset-xxl-2 { margin-left: 16.666667%; }
    .offset-xxl-3 { margin-left: 25%; }
    .offset-xxl-4 { margin-left: 33.333333%; }
    .offset-xxl-5 { margin-left: 41.666667%; }
    .offset-xxl-6 { margin-left: 50%; }
    .offset-xxl-7 { margin-left: 58.333333%; }
    .offset-xxl-8 { margin-left: 66.666667%; }
    .offset-xxl-9 { margin-left: 75%; }
    .offset-xxl-10 { margin-left: 83.333333%; }
    .offset-xxl-11 { margin-left: 91.666667%; }
}

/* Utility classes */
.d-none { display: none !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }

@media (min-width: 576px) {
    .d-sm-none { display: none !important; }
    .d-sm-inline { display: inline !important; }
    .d-sm-inline-block { display: inline-block !important; }
    .d-sm-block { display: block !important; }
    .d-sm-flex { display: flex !important; }
}

@media (min-width: 768px) {
    .d-md-none { display: none !important; }
    .d-md-inline { display: inline !important; }
    .d-md-inline-block { display: inline-block !important; }
    .d-md-block { display: block !important; }
    .d-md-flex { display: flex !important; }
}

@media (min-width: 992px) {
    .d-lg-none { display: none !important; }
    .d-lg-inline { display: inline !important; }
    .d-lg-inline-block { display: inline-block !important; }
    .d-lg-block { display: block !important; }
    .d-lg-flex { display: flex !important; }
}

@media (min-width: 1200px) {
    .d-xl-none { display: none !important; }
    .d-xl-inline { display: inline !important; }
    .d-xl-inline-block { display: inline-block !important; }
    .d-xl-block { display: block !important; }
    .d-xl-flex { display: flex !important; }
}

@media (min-width: 1400px) {
    .d-xxl-none { display: none !important; }
    .d-xxl-inline { display: inline !important; }
    .d-xxl-inline-block { display: inline-block !important; }
    .d-xxl-block { display: block !important; }
    .d-xxl-flex { display: flex !important; }
}

/* ========================================
   FİYATLANDIRMA SAYFASI CSS
   ======================================== */

/* Hero Section */
.fiyat-hero {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9ff 100%);
    padding: 80px 0;
    text-align: center;
}

.fiyat-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.fiyat-hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Toggle */
.fiyat-toggle {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fiyat-toggle-buttons {
    display: inline-flex;
    background: #f8f9fa;
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.fiyat-toggle-btn {
    padding: 12px 30px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.fiyat-toggle-btn.active {
    background: #fff;
    color: #2563eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Pricing Plans */
.fiyat-plans {
    padding: 80px 0;
    background: #fff;
}

.fiyat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.fiyat-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.fiyat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.fiyat-card.featured {
    border-color: #10b981;
    transform: scale(1.05);
}

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

/* Plan Badge */
.fiyat-plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.fiyat-popular-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Plan Icon */
.fiyat-plan-icon {
    text-align: center;
    margin-bottom: 20px;
}

.fiyat-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
}

.fiyat-icon-circle.basic {
    background: linear-gradient(135deg, #e0f2fe, #b3e5fc);
    color: #0277bd;
}

.fiyat-icon-circle.premium {
    background: linear-gradient(135deg, #fef3c7, #fbbf24);
    color: #d97706;
}

/* Plan Header */
.fiyat-plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.fiyat-plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.fiyat-plan-subtitle {
    color: #666;
    font-size: 0.95rem;
}

/* Plan Price */
.fiyat-plan-price {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.fiyat-price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    display: block;
    line-height: 1;
}

.fiyat-price-period {
    font-size: 1rem;
    color: #666;
    margin-top: 5px;
    display: block;
}

.fiyat-price-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
    line-height: 1.4;
}

/* Plan Features */
.fiyat-plan-features {
    margin-bottom: 40px;
}

.fiyat-plan-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.fiyat-plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fiyat-plan-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.fiyat-plan-features li i {
    color: #10b981;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Plan Action */
.fiyat-plan-action {
    text-align: center;
}

.fiyat-btn-plan {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.fiyat-btn-plan:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

.fiyat-basic-plan .fiyat-btn-plan {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.fiyat-basic-plan .fiyat-btn-plan:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Features Section */
.fiyat-features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.fiyat-features-section .fiyat-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.fiyat-features-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* Features Accordion */
.fiyat-features-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.fiyat-accordion-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.fiyat-accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.fiyat-accordion-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: background-color 0.3s ease;
}

.fiyat-accordion-header:hover {
    background: #f8f9fa;
}

.fiyat-accordion-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.fiyat-accordion-header i {
    color: #666;
    transition: transform 0.3s ease;
}

.fiyat-accordion-content {
    padding: 0 30px 25px;
    display: none;
    color: #666;
    line-height: 1.6;
}

.fiyat-accordion-item.active .fiyat-accordion-content {
    display: block;
}

/* Free Trial Section */
.fiyat-free-trial-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    text-align: center;
}

.fiyat-trial-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.fiyat-trial-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fiyat-hero {
        padding: 60px 0;
    }
    
    .fiyat-hero h1 {
        font-size: 2rem;
    }
    
    .fiyat-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .fiyat-card {
        padding: 30px 20px;
    }
    
    .fiyat-card.featured {
        transform: none;
    }
    
    .fiyat-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .fiyat-price-amount {
        font-size: 2.5rem;
    }
    
    .fiyat-plan-features li {
        font-size: 0.9rem;
    }
    
    .fiyat-features-section {
        padding: 60px 0;
    }
    
    .fiyat-features-section h2 {
        font-size: 1.8rem;
    }
    
    .fiyat-accordion-header {
        padding: 20px;
    }
    
    .fiyat-accordion-header h3 {
        font-size: 1.1rem;
    }
    
    .fiyat-accordion-content {
        padding: 0 20px 20px;
    }
    
    .fiyat-free-trial-section {
        padding: 60px 0;
    }
    
    .fiyat-trial-content h2 {
        font-size: 1.8rem;
    }
    
    .fiyat-btn-trial {
        padding: 15px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .fiyat-grid {
        padding: 0 15px;
    }
    
    .fiyat-toggle-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .fiyat-card {
        padding: 25px 15px;
    }
    
    .fiyat-price-amount {
        font-size: 2.2rem;
    }
    
    .fiyat-plan-features li {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .fiyat-btn-plan {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

/* ========================================
   İLETİŞİM SAYFASI CSS
   ======================================== */

/* Hero Section */
.iletisim-hero {
    background: linear-gradient(135deg, #17a2b8 0%, #007bff 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.iletisim-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="40" height="20" patternUnits="userSpaceOnUse"><path d="M0 10 Q10 0 20 10 T40 10 V20 H0 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    opacity: 0.3;
}

.iletisim-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.iletisim-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.iletisim-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    color:#fff;
}

/* Ana İçerik */
.iletisim-content {
    padding: 60px 0;
    background: #f8f9fa;
}

/* İletişim Bilgileri Grid */
.iletisim-bilgileri {
    margin-bottom: 60px;
}

.iletisim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.iletisim-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.iletisim-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #17a2b8 0%, #007bff 100%);
}

.iletisim-card:hover {
    transform: translateY(-5px);
    border-color: #17a2b8;
    box-shadow: 0 8px 30px rgba(23,162,184,0.15);
}

.iletisim-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #17a2b8 0%, #007bff 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(23,162,184,0.3);
}

.iletisim-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.iletisim-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.iletisim-link {
    color: #17a2b8;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.iletisim-link:hover {
    color: #007bff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Form ve Harita Layout */
.iletisim-form-section {
    margin-bottom: 60px;
}

.iletisim-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Form Container */
.form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-bottom: 1px solid #e9ecef;
}

.form-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.form-header p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Form Styles */
.iletisim-form {
    padding: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #17a2b8;
    outline: none;
    box-shadow: 0 0 0 3px rgba(23,162,184,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Group */
.checkbox-group {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #17a2b8;
    border-color: #17a2b8;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.alert i {
    font-size: 1.2rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form Success State */
.form-success {
    text-align: center;
    padding: 40px 30px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.form-success p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #17a2b8 0%, #007bff 100%);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
	margin:5px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(23,162,184,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23,162,184,0.4);
    color: #28a745;
    text-decoration: none;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Harita Container */
.map-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.map-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-bottom: 1px solid #e9ecef;
}

.map-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.map-header p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.map-embed {
    position: relative;
    height: 300px;
    background: #e9ecef;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Ofis Bilgileri */
.ofis-bilgileri {
    padding: 30px;
}

.ofis-item {
    margin-bottom: 25px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9ecef;
}

.ofis-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.ofis-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.ofis-detay {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    color: #495057;
    line-height: 1.5;
}

.ofis-detay:last-child {
    margin-bottom: 0;
}

.ofis-detay i {
    color: #17a2b8;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.ofis-detay a {
    color: #17a2b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ofis-detay a:hover {
    color: #007bff;
    text-decoration: none;
}

/* SSS Bölümü */
.iletisim-sss {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 40px;
    margin-bottom: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.sss-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.sss-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sss-item:hover {
    border-color: #17a2b8;
    box-shadow: 0 4px 15px rgba(23,162,184,0.1);
}

.sss-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 500;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.sss-question:hover {
    background: #f8f9fa;
    color: #17a2b8;
}

.sss-question.active {
    background: #f8f9fa;
    color: #17a2b8;
}

.sss-question i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #6c757d;
}

.sss-question.active i {
    transform: rotate(180deg);
    color: #17a2b8;
}

.sss-answer {
    display: none;
    padding: 0 20px 20px;
    color: #495057;
    line-height: 1.7;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.sss-answer.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sss-cta {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.sss-cta p {
    color: #fff;
    margin-bottom: 15px;
}

/* CTA Section */
.iletisim-cta {
    background: linear-gradient(135deg, #17a2b8 0%, #007bff 100%);
    color: white;
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.iletisim-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-waves" width="50" height="25" patternUnits="userSpaceOnUse"><path d="M0 12.5 Q12.5 0 25 12.5 T50 12.5 V25 H0 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-waves)"/></svg>');
    opacity: 0.3;
}

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

.iletisim-cta h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.iletisim-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: #17a2b8;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.cta-buttons .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    color: #007bff;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #17a2b8;
}

/* Responsive Design */
@media (max-width: 991px) {
    .iletisim-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .iletisim-hero h1 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .iletisim-hero {
        padding: 60px 0 40px;
    }
    
    .iletisim-hero h1 {
        font-size: 1.8rem;
    }
    
    .iletisim-hero p {
        font-size: 1rem;
    }
    
    .iletisim-content {
        padding: 40px 0;
    }
    
    .iletisim-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .iletisim-card {
        padding: 25px 20px;
    }
    
    .form-header,
    .map-header {
        padding: 20px;
    }
    
    .iletisim-form,
    .ofis-bilgileri {
        padding: 20px;
    }
    
    .iletisim-sss {
        padding: 25px 20px;
    }
    
    .iletisim-cta {
        padding: 35px 25px;
    }
    
    .section-header h2,
    .iletisim-cta h2 {
        font-size: 1.7rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .map-header h3 {
        font-size: 1.3rem;
    }
    
    .sss-question {
        padding: 15px;
        font-size: 1rem;
    }
    
    .sss-answer {
        padding: 0 15px 15px;
    }
}

@media (max-width: 575px) {
    .iletisim-hero h1 {
        font-size: 1.6rem;
    }
    
    .iletisim-card {
        padding: 20px 15px;
    }
    
    .iletisim-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .iletisim-card h3 {
        font-size: 1.2rem;
    }
    
    .form-header,
    .map-header,
    .iletisim-form,
    .ofis-bilgileri {
        padding: 15px;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
    }
}
